@import 'modules/variables.css';
@import 'modules/hero-animation.css';
@import 'modules/scroll-reveal.css';

/* Reset & Base */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #1e293b);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
    padding: 0;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent, #49c3b3);
}

.logo img {
    height: 32px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #64748b;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent, #49c3b3);
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.btn:focus {
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid rgba(73, 195, 179, 0.45);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--accent, #49c3b3);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-dark, #3aa89a);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: var(--text-color, #1e293b);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.btn-text {
    color: #64748b;
    padding: 8px 16px;
}

.btn-text:hover {
    color: var(--text-color, #1e293b);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1e293b;
    transition: 0.3s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    opacity: 0.5;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px;
    z-index: 1001;
    border: 1px solid #e2e8f0;
    margin-top: 0;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #475569;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #f1f5f9;
    color: var(--accent, #49c3b3);
    padding-left: 20px;
}

/* ─── Hero Section ─────────────────────────────────────────────────────────── */
.hero-section {
    --site-header-height: 80px;
    background: #ffffff;
    background-image: radial-gradient(ellipse 55% 45% at 90% 5%, rgba(73, 195, 179, 0.1) 0%, transparent 55%);
}

.hero-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(48px, 5vw, 72px);
    min-height: calc(100vh - var(--site-header-height));
    min-height: calc(100svh - var(--site-header-height));
    padding: clamp(32px, 4.5vh, 48px) 0 clamp(20px, 3.5vh, 32px);
    box-sizing: border-box;
    text-align: left;
}

/* ─── Left: Text ─────────────────────────────────────────────────────────── */
.hero-text {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f0fdfa;
    border: 1px solid #b2f0e8;
    color: #0f766e;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 3.4vw, 3.75rem);
    font-weight: 800;
    color: #080f1e;
    letter-spacing: -0.04em;
    line-height: 1.06;
    margin: 0 0 24px 0;
    text-align: left;
}

/* Bullet list */
.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.55;
}

.hero-bullets li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* CTAs */
.hero-cta {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.hero-cta .btn {
    padding: 14px 28px;
    font-size: 0.975rem;
    border-radius: 10px;
}

/* Secondary: text-link with sliding arrow */
.hero-cta .btn-secondary {
    background: transparent;
    border: none;
    color: #374151;
    padding: 14px 4px;
    font-weight: 600;
}

.hero-cta .btn-secondary::after {
    content: ' →';
    display: inline-block;
    margin-left: 2px;
    transition: transform 0.2s;
}

.hero-cta .btn-secondary:hover {
    background: transparent;
    color: #080f1e;
    transform: none;
}

.hero-cta .btn-secondary:hover::after {
    transform: translateX(4px);
}

/* Testimonial card */
.hero-testimonial {
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    padding: 18px 22px;
    margin-top: 24px;
}

.hero-testimonial-quote {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.65;
    font-style: italic;
}

.hero-testimonial-author {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.hero-testimonial-name {
    color: #49c3b3;
    font-weight: 700;
}

.hero-testimonial-role {
    color: #94a3b8;
}

/* Social proof pills */
.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    width: 100%;
}

.proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
    white-space: nowrap;
}

.proof-pill svg {
    color: #49c3b3;
    flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .hero-split {
        flex-direction: column;
        min-height: unset;
        gap: 48px;
        padding: 72px 0 64px;
        text-align: center;
    }

    .hero-text {
        flex: unset;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-text h1,
    .hero-bullets {
        text-align: center;
    }

    .hero-bullets li {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero-split {
        padding: 56px 0 48px;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.1rem;
        margin-bottom: 24px;
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .hero-bullets {
        margin-bottom: 36px;
        gap: 14px;
    }

}

.hero-image {
    margin-top: 60px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-title p {
    color: #64748b;
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 32px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent, #49c3b3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
}

.demo-video-placeholder {
    position: relative;
    min-height: clamp(320px, 56vw, 720px);
    border-radius: 24px;
    border: 1px dashed #cbd5e1;
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, 0.12), transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(73, 195, 179, 0.2), transparent 45%),
        linear-gradient(140deg, #0f172a 0%, #1e293b 52%, #0b1220 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

.demo-video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 0%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.demo-video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    color: #e2e8f0;
}

.demo-video-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #bbf7d0;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(110, 231, 183, 0.4);
    margin-bottom: 18px;
}

.demo-video-content h3 {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: #f8fafc;
}

.demo-video-content p {
    margin: 0 auto;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: #cbd5e1;
    max-width: 680px;
}

.demo-video-hint {
    margin-top: 18px !important;
    font-size: 0.95rem !important;
    color: #94a3b8 !important;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--accent, #49c3b3);
    box-shadow: 0 20px 40px -10px rgba(73, 195, 179, 0.15);
    transform: translateY(-6px) scale(1.02);
    z-index: 10;
}

.pricing-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #e2e8f0;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card__badge.is-accent {
    background: #0f766e;
    color: #fff;
}

.pricing-card h3 {
    color: #64748b;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.pricing-card__helper {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-features {
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__cta {
    width: 100%;
    box-sizing: border-box;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10b981;
}

.check-icon .icon {
    width: 14px;
    height: 14px;
}

/* Footer */
.site-footer {
    background: white;
    padding: 80px 0 40px;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #64748b;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--accent, #49c3b3);
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

/* Voorwaarden Page */
.voorwaarden-hero {
    padding: 72px 0 24px;
    background: radial-gradient(circle at top left, rgba(73, 195, 179, 0.14), transparent 62%);
}

.voorwaarden-hero .container {
    max-width: 920px;
    text-align: center;
}

.voorwaarden-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: #0f172a;
}

.voorwaarden-hero-subtitle {
    margin: 10px auto 0;
    max-width: 760px;
    color: var(--accent, #49c3b3);
    font-size: 1.15rem;
    font-weight: 700;
}

.voorwaarden-hero-body {
    margin: 14px auto 0;
    max-width: 760px;
    color: #475569;
    font-size: 1.1rem;
}

.voorwaarden-hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.voorwaarden-anchor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe4ee;
    border-radius: 999px;
    padding: 10px 18px;
    background: #ffffff;
    color: #1e293b;
    font-weight: 600;
    transition: border-color 0.2s, transform 0.2s, color 0.2s;
}

.voorwaarden-anchor-btn:hover {
    color: var(--accent, #49c3b3);
    border-color: #a8d5ce;
    transform: translateY(-1px);
}

.voorwaarden-anchor-btn:focus-visible,
.voorwaarden-download-btn:focus-visible,
.voorwaarden-toc-link:focus-visible,
.voorwaarden-toc-toggle:focus-visible {
    outline: 2px solid rgba(73, 195, 179, 0.45);
    outline-offset: 2px;
}

.voorwaarden-explainer {
    padding: 12px 0 28px;
}

.voorwaarden-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 25px -20px rgba(15, 23, 42, 0.35);
}

.voorwaarden-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 1.375rem;
}

.voorwaarden-card p {
    color: #475569;
    margin: 0 0 14px;
}

.voorwaarden-card ul {
    margin: 0 0 16px;
    padding-left: 20px;
    list-style: disc;
    color: #334155;
}

.voorwaarden-card li {
    margin-bottom: 8px;
}

.voorwaarden-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent, #49c3b3);
    border-radius: 10px;
    padding: 11px 16px;
    color: #ffffff;
    background: var(--accent, #49c3b3);
    font-weight: 600;
}

.voorwaarden-download-btn:hover {
    background: var(--accent-dark, #3aa89a);
}

.voorwaarden-content {
    padding: 12px 0 96px;
}

.voorwaarden-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.voorwaarden-main {
    min-width: 0;
}

.voorwaarden-sidebar {
    position: sticky;
    top: 108px;
}

.voorwaarden-sidebar .voorwaarden-toc {
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.voorwaarden-toc-mobile-wrap {
    display: none;
    margin-bottom: 16px;
}

.voorwaarden-toc-toggle {
    width: 100%;
    border: 1px solid #dbe4ee;
    border-radius: 10px;
    padding: 11px 14px;
    background: #ffffff;
    color: #1e293b;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.voorwaarden-toc {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.voorwaarden-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.voorwaarden-toc-item {
    margin-bottom: 8px;
}

.voorwaarden-toc-item:last-child {
    margin-bottom: 0;
}

.voorwaarden-toc-item.is-sub {
    padding-left: 12px;
}

.voorwaarden-toc-link {
    display: block;
    color: #475569;
    font-size: 0.95rem;
    padding: 4px 0;
    border-radius: 6px;
}

.voorwaarden-toc-link:hover {
    color: var(--accent, #49c3b3);
}

.voorwaarden-toc-link.active {
    color: #0f766e;
    font-weight: 700;
}

.voorwaarden-documents {
    display: grid;
    gap: 28px;
}

.voorwaarden-doc-section {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 28px;
}

.voorwaarden-doc-section h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.5rem;
}

.voorwaarden-last-updated {
    margin: 8px 0 18px;
    color: #64748b;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.voorwaarden-doc-meta {
    margin-bottom: 12px;
}

.voorwaarden-doc-meta p {
    margin: 0 0 6px;
    color: #334155;
}

.voorwaarden-doc-body h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #0f172a;
}

.voorwaarden-doc-body h4 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 1.07rem;
    color: #1e293b;
}

.voorwaarden-doc-body h5 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #1e293b;
}

.voorwaarden-doc-body p {
    color: #334155;
    line-height: 1.7;
}

.voorwaarden-doc-body hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 22px 0;
}

.voorwaarden-doc-body ul,
.voorwaarden-doc-body ol {
    margin: 8px 0 16px;
    padding-left: 22px;
}

.voorwaarden-doc-body li {
    margin-bottom: 8px;
    color: #334155;
}

.voorwaarden-doc-body blockquote {
    margin: 22px 0;
    border-left: 4px solid var(--accent, #49c3b3);
    background: #effcf8;
    border-radius: 8px;
    padding: 12px 14px;
}

.voorwaarden-doc-body blockquote p {
    margin: 0;
    color: #0f172a;
}

.voorwaarden-doc-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 22px;
    font-size: 0.93rem;
}

.voorwaarden-doc-body th,
.voorwaarden-doc-body td {
    border: 1px solid #dbe4ee;
    text-align: left;
    vertical-align: top;
    padding: 8px 10px;
}

.voorwaarden-doc-body th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
}

.voorwaarden-contact {
    margin-top: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    padding: 18px 22px;
}

.voorwaarden-contact p {
    margin: 0;
    color: #334155;
}

.voorwaarden-contact a {
    color: var(--accent, #49c3b3);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .voorwaarden-layout {
        grid-template-columns: 1fr;
    }

    .voorwaarden-sidebar {
        display: none;
    }

    .voorwaarden-toc-mobile-wrap {
        display: block;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .demo-video-placeholder {
        min-height: 260px;
        padding: 26px;
        border-radius: 18px;
    }

    .voorwaarden-hero {
        padding-top: 56px;
    }

    .voorwaarden-hero-actions {
        flex-direction: column;
    }

    .voorwaarden-anchor-btn {
        width: 100%;
    }

    .voorwaarden-card,
    .voorwaarden-doc-section {
        padding: 22px;
    }

    .voorwaarden-doc-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card.popular {
        transform: none;
    }

    /* Mobile Dropdown */
    .dropdown {
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 16px;
        width: 100%;
        min-width: auto;
        opacity: 1;
        transform: none;
        animation: none;
        margin-top: 0;
    }

    .dropdown-item {
        padding: 8px 0;
        color: #64748b;
    }

    .dropdown-toggle {
        padding: 0;
        margin-bottom: 8px;
    }

    .dropdown-toggle::after {
        display: none;
    }
}

/* Mouse Follow Glow */
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(73, 195, 179, 0.15) 0%, rgba(37, 99, 235, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    will-change: transform;
}
