/* Custom CSS for B2B Landing Page */
:root {
    /* Brand Colors */
    --color-primary: #FFDC09;
    /* Signature Yellow */
    --color-secondary: #DD37D0;
    /* Pop Magenta */
    --color-dark: #1A1A1A;
    /* Text Dark */
    --color-darker: #0D0D0D;
    --color-light: #FFFFFF;
    --color-gray: #F5F5F7;
    --color-gray-dark: #8E8E93;

    /* Layout */
    --container-width: 1000px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Hebrew', system-ui, -apple-system, sans-serif;
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight {
    background-color: var(--color-primary);
    color: var(--color-dark);
    padding: 0 0.5rem;
    display: inline-block;
    border-radius: 4px;
    transform: skew(-5deg);
}

.highlight.text-dark {
    color: var(--color-dark);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(90deg, var(--color-light), #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}

.hero-title:hover .gradient-text {
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 10px 15px rgba(221, 55, 208, 0.4));
}

/* Blurred Background Shapes */
.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 220, 9, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

/* Interactive Card Effects */
.pricing-card,
.feature-card,
.video-placeholder {
    transform-style: preserve-3d;
    will-change: transform;
}

.pricing-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.2) 25%, transparent 30%);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s;
}

.pricing-card:hover::before,
.feature-card:hover::before {
    opacity: 1;
}

/* Ensure content stays above the glow */
.container,
header,
section {
    position: relative;
    z-index: 1;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
}

.shape-2 {
    top: 40%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
    box-shadow: 0 10px 20px rgba(255, 220, 9, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 220, 9, 0.4);
    background-color: #ffe433;
}

.btn-primary:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 5px 10px rgba(255, 220, 9, 0.3);
    transition: transform 0.1s;
}

.btn-secondary {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.1s;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-content {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 3rem;
}

.hero-content p {
    margin-bottom: 1rem;
}

.cta-text {
    font-weight: 700;
    color: var(--color-light);
    font-size: 1.3rem;
    margin-top: 2rem;
}

/* Video Section */
.video-section {
    padding: 2rem 0 6rem;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-placeholder:hover {
    border-color: rgba(255, 220, 9, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 0 rgba(255, 220, 9, 0.4);
    animation: pulse 2s infinite;
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 5px;
}

/* Offer Section */
.offer-section {
    padding: 6rem 0;
    background: var(--color-light);
    color: var(--color-dark);
    border-radius: 40px 40px 0 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-gray);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card .icon-img img {
    margin-bottom: 1.5rem;
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.pricing-banner {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.pricing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--color-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 220, 9, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    color: var(--color-gray-dark);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    direction: ltr;
    display: inline-block;
    unicode-bidi: isolate;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-dark);
    white-space: nowrap;
    direction: ltr;
    display: inline-block;
    unicode-bidi: isolate;
}

/* Add-on Section */
.addon-section {
    padding: 6rem 0;
    background: var(--color-light);
}

.addon-card {
    background: linear-gradient(135deg, var(--color-gray) 0%, #ffffff 100%);
    border: 1px solid #eaeaea;
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.addon-content {
    max-width: 700px;
}

.addon-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.addon-content p {
    font-size: 1.2rem;
    color: var(--color-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.addon-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-right: 4px solid var(--color-secondary);
}

.addon-price span {
    font-size: 1.1rem;
}

.addon-price strong {
    font-size: 2rem;
    color: var(--color-dark);
}

.addon-price small {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    text-align: center;
    background: var(--color-darker);
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.signature {
    margin-top: 4rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    background: var(--color-darker);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 220, 9, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 220, 9, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 220, 9, 0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        /* Increase breathing room for text on mobile */
        line-height: 1.7;
    }

    .container {
        padding: 0 24px;
    }

    p {
        margin-bottom: 20px;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    /* Optimize touch interactions */
    .btn {
        width: 100%;
        padding: 1.2rem;
    }

    .addon-card {
        padding: 2rem;
    }

    .addon-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}