:root {
    /* Colors - Світла тема */
    --clr-bg: #f8fafc; /* Дуже світлий сіро-блакитний (Slate 50) */
    --clr-bg-alt: #ffffff; /* Чисто білий для секцій та карток */
    --clr-accent: #f59e0b; /* Енергійний жовтогарячий (Amber 500) */
    --clr-accent-hover: #d97706; /* Темніший жовтогарячий (Amber 600) */
    --clr-text-main: #0f172a; /* Майже чорний (Slate 900) */
    --clr-text-muted: #64748b; /* Темно-сірий (Slate 500) */
    --clr-glass: rgba(255, 255, 255, 0.85);
    --clr-glass-border: rgba(226, 232, 240, 0.8);
    --clr-border: #e2e8f0; /* Світлий бордер (Slate 200) */

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    
    /* Variables */
    --radius: 12px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--clr-bg-alt);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--clr-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--clr-accent-hover);
}

/* Animations & Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.pulse-glow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}


/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-glass-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-text-main);
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-brand span {
    color: var(--clr-accent);
    opacity: 0.8;
}

.desktop-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-right: 48px;
}

.desktop-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.desktop-nav a:hover {
    background: var(--clr-accent);
    color: #fff;
    border-color: var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    background: var(--clr-accent);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.burger-menu:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--clr-bg);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.close-menu {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--clr-text-main);
    transition: var(--transition);
}

.close-menu:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fecaca;
    transform: rotate(90deg);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav a {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--clr-text-main);
    text-transform: uppercase;
    transition: var(--transition);
    display: block;
}

.mobile-nav li {
    overflow: hidden;
}

.mobile-nav a:hover {
    color: var(--clr-accent);
    transform: translateX(12px);
}

.mobile-overlay-footer {
    margin-top: auto;
    padding-top: 40px;
}

.mobile-overlay-footer .cta-btn {
    width: 100%;
}

@media (max-width: 992px) {
    .navbar {
        padding: 16px 0;
    }
    .nav-brand {
        font-size: 1.25rem;
    }
    .desktop-nav {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .mobile-nav a {
        font-size: 1.75rem;
    }
}

@media (min-width: 993px) {
    .burger-menu {
        display: none;
    }
}


/* --- 1. HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('./assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.85) 45%, rgba(248, 250, 252, 0.15) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 900px;
}

.hero-h1 {
    font-size:clamp(3rem, 5vw, 4.5rem);
    text-transform: uppercase;
    color: var(--clr-text-main);
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--clr-accent-hover);
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
}

.price-container {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    margin: 1rem 0;
}

.old-price {
    font-size: 1.5rem;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.8;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.cta-btn {
    display: inline-block;
    background: var(--clr-accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.cta-btn:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.hero-text-bottom {
    margin-top: 2rem;
    background: var(--clr-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--clr-accent);
    color: var(--clr-text-muted);
    box-shadow: var(--shadow-md);
}

.hero-text-bottom ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.hero-text-bottom ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.hero-text-bottom ul li::before {
    content: "•";
    color: var(--clr-accent);
    position: absolute;
    left: -1.2rem;
    font-weight: bold;
}


/* --- 3. MARQUEE BANNER --- */
.marquee-section {
    background: var(--clr-accent);
    color: #fff; /* Білий текст на помаранчевому фоні */
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


/* --- 2. BENEFITS BLOCK --- */
.benefits {
    background: var(--clr-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--clr-bg-alt);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #fef3c7; /* Світло-жовтий */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-hover);
    font-size: 2.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--clr-text-main);
}

.benefit-card p {
    color: var(--clr-text-muted);
}


/* --- TRUST TRIGGERS --- */
.trust-triggers {
    padding: 2rem 0;
    background: var(--clr-bg);
}

.trigger-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trigger-badge {
    flex: 1;
    min-width: 320px;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--clr-text-main);
    background: #fffbeb;
    border: 2px solid #fde68a;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trigger-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: #fef3c7;
    border-color: var(--clr-accent);
}

.trigger-badge i {
    color: var(--clr-accent);
    font-size: 2rem;
}


/* --- 4. TURNKEY BLOCK --- */
.turnkey {
    background: linear-gradient(to right, #f1f5f9 0%, #e2e8f0 100%);
}

.turnkey-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.turnkey-content {
    flex: 1;
    min-width: 320px;
}

.check-list {
    margin: 2rem 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--clr-text-main);
}

.check-list i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.secondary-text {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.strong-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text-main);
    padding-left: 1rem;
    border-left: 3px solid var(--clr-accent);
}

.turnkey-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 300px;
}

.t-badge {
    background: var(--clr-bg-alt);
    padding: 1.25rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--clr-accent);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--clr-text-main);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.t-badge:hover {
    background: #f8fafc;
    transform: translateX(-10px);
}

.t-badge i {
    font-size: 1.8rem;
    color: var(--clr-accent);
}


/* --- 5. AUDIENCE SECTION --- */
.target-audience {
    background: var(--clr-bg-alt);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.audience-card:hover {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-hover);
}

.card-hero-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--clr-bg) 0%, transparent 80%);
}

.house-bg {
    background-image: url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.business-bg {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.card-content {
    padding: 2.5rem;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--clr-accent-hover);
}

.card-base {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.bullet-points li {
    margin-bottom: 0.8rem;
    color: var(--clr-text-main);
    position: relative;
    padding-left: 1.8rem;
}

.bullet-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}


/* --- 6. TECH ADVANTAGES --- */
.tech-adv {
    background: var(--clr-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tech-card {
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
}

.tech-card i {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.tech-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--clr-text-main);
}

.tech-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.tech-bottom-list {
    background: var(--clr-bg-alt);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.tech-bottom-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-bottom-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--clr-text-main);
}

.tech-bottom-list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}


/* --- 7. VIDEO --- */
.video-section {
    background: var(--clr-bg-alt);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--clr-border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* --- 8. FAQ --- */
.faq {
    background: var(--clr-bg);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    background: var(--clr-bg-alt);
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #fde68a;
}

.accordion-header {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    color: var(--clr-text-main);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--clr-accent-hover);
}

.accordion-header i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, color 0.3s;
    color: var(--clr-text-muted);
}

.accordion-item.active {
    border-color: var(--clr-accent);
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.15);
}

.accordion-item.active .accordion-header {
    color: var(--clr-accent-hover);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    background: var(--clr-accent);
    color: #fff;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content {
    padding: 0 2rem 2rem;
    color: var(--clr-text-muted);
    font-size: 1.05rem;
}


/* --- 9. FORM --- */
.lead-capture {
    /* Робимо фон із зображенням і темним оверлеєм для контрасту */
    background: url('https://images.unsplash.com/photo-1541888086925-920a061f4fa0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover fixed;
    position: relative;
    padding: 100px 0;
}

.lead-capture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8); /* Темне затемнення, щоб біла картка виділялася */
}

.contact-card {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border-top: 6px solid var(--clr-accent); /* Акцентна смуга зверху */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.input-group input,
.input-group textarea {
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    color: var(--clr-text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}


/* --- 10. FOOTER --- */
.footer {
    background: #0f172a; /* Залишаємо нижню частину темною для контрасту, це стильно навіть у світлих темах */
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    color: #ffffff !important;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-icon.web { background: #0078FF; }
.social-icon.tg { background: #2AABEE; }
.social-icon.wa { background: #25D366; }
.social-icon.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-icon.fb { background: #3B5998; }
.social-icon.tt { background: #000000; }

.social-icon:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.footer-subscribe {
    max-width: 400px;
}

.subscribe-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.sub-input-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sub-input-row input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    border: 1px solid #334155;
    background: #1e293b;
    color: #fff;
}

.sub-btn {
    padding: 0.8rem 1.5rem;
    background: var(--clr-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.sub-btn:hover {
    background: var(--clr-accent-hover);
}

.sub-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .cta-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .turnkey-wrapper {
        gap: 2rem;
    }

    .audience-card {
        margin-bottom: 1rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }

    .accordion-content {
        padding: 0 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .sub-input-row {
        flex-direction: column;
    }

    .tech-bottom-list ul {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 2rem;
        flex-direction: column;
    }
}
