:root {
    --primary: #18bc9c;
    --primary-dark: #0f9b7e;
    --primary-light: rgba(24, 188, 156, 0.12);
    --primary-glow: rgba(24, 188, 156, 0.25);
    --secondary: #1a252f;
    --secondary-light: #2c3e50;
    --accent: #3498db;
    --success: #18bc9c;
    --warning: #f39c12;
    --danger: #e74c3c;
    --light: #f8f9fb;
    --dark: #0f171e;
    --body-bg: #ffffff;
    --body-color: #2d3436;
    --heading-color: #1a252f;
    --text-muted: #7f8c9b;
    --text-muted-light: #b0b9c5;
    --border-color: #eef1f5;
    --card-bg: #ffffff;
    --card-border: #eef1f5;
    --section-alt: #f5f6f8;
    --pricing-bg: #e6e9ed;
    --pricing-card-bg: #ffffff;
    --pricing-header-bg: #f8f9fb;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(26, 37, 47, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 37, 47, 0.08);
    --shadow-lg: 0 20px 60px rgba(26, 37, 47, 0.12);
    --shadow-glow: 0 8px 32px rgba(24, 188, 156, 0.25);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --secondary: #1a252f;
    --secondary-light: #2c3e50;
    --light: #0f141a;
    --dark: #0a0f14;
    --body-bg: #0f171e;
    --body-color: #d1d8e0;
    --heading-color: #e8edf0;
    --text-muted: #7f8c9b;
    --text-muted-light: #5a6a7a;
    --border-color: #1e2a33;
    --card-bg: #162028;
    --card-border: #1e2a33;
    --section-alt: #0b1217;
    --pricing-bg: #131e28;
    --pricing-card-bg: #1c2936;
    --pricing-header-bg: #192430;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--body-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background: var(--body-bg);
    transition: background var(--transition), color var(--transition);
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    padding: 0;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(26, 37, 47, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar:not(.scrolled) {
    background: transparent;
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand img { height: 48px; width: auto; display: block; }
.navbar-brand:hover { transform: none; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-links { display: flex; align-items: center; gap: 0.5rem; list-style: none; }
.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    transition: all var(--transition);
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.nav-links .btn {
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-left: 0.25rem;
}
.nav-links .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.nav-links .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}
.nav-links .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(24, 188, 156, 0.3);
}
.nav-links .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(24, 188, 156, 0.4);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
    .navbar-inner { padding: 0.5rem 1rem; }
    .navbar-brand img { height: 40px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0.5rem; right: 0.5rem;
        background: rgba(26, 37, 47, 0.97);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.6rem 0.9rem; width: 100%; }
    .nav-links .btn { margin-left: 0; text-align: center; width: 100%; }
    .nav-toggle { display: flex; }
    .theme-toggle { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* ─── Sections ─── */
section { padding: 6rem 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.25;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
}

/* ─── Hero ─── */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.hero-bg .blob-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -15%; right: -10%;
    animation: blobFloat 20s ease-in-out infinite;
}
.hero-bg .blob-2 {
    width: 450px; height: 450px;
    background: #3498db;
    bottom: -20%; left: -8%;
    animation: blobFloat 25s ease-in-out infinite reverse;
}
.hero-bg .blob-3 {
    width: 300px; height: 300px;
    background: var(--primary);
    top: 40%; left: 50%;
    transform: translateX(-50%);
    animation: blobFloat 18s ease-in-out infinite 3s;
}
.hero-bg .grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero .container {
    position: relative;
    z-index: 1;
    padding: 7rem 1.5rem 5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    background: rgba(24, 188, 156, 0.15);
    border: 1px solid rgba(24, 188, 156, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #48d9c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 280px;
    text-align: left;
    position: relative;
}
.hero h1 .typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: var(--primary);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin: 0 auto 2.25rem;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-actions .btn {
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-actions .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 28px rgba(24, 188, 156, 0.3);
}
.hero-actions .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 36px rgba(24, 188, 156, 0.45);
    transform: translateY(-2px);
}
.hero-actions .btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.hero-actions .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat { text-align: center; }
.hero-stat .num {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #48d9c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat .label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); margin-top: 0.15rem; }

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero h1 .highlight { min-width: 200px; }
    .hero .container { padding: 6rem 1.25rem 3rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .section-title { font-size: 1.75rem; }
}

/* ─── Features ─── */
#features {
    background: var(--section-alt);
    transition: background var(--transition);
    position: relative;
}
#features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #48d9c0);
    opacity: 0;
    transition: opacity var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--heading-color); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }

.feature-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.feature-tags .tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* ─── Pricing Toggle ─── */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
    user-select: none;
}
.toggle-label.active { color: var(--heading-color); font-weight: 600; }
.toggle-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.25rem;
    vertical-align: middle;
}
.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--border-color);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}
.toggle-switch.active { background: var(--primary); }
.toggle-thumb {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    transition: transform var(--transition);
}
.toggle-switch.active .toggle-thumb { transform: translateX(22px); }

/* ─── Pricing ─── */
#pricing {
    background: var(--pricing-bg);
    transition: background var(--transition);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--pricing-card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--card-border);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 20px 60px rgba(24, 188, 156, 0.12);
    transform: scale(1.03);
}
.pricing-card.featured:hover {
    box-shadow: 0 0 0 1px var(--primary), 0 25px 70px rgba(24, 188, 156, 0.18);
    transform: scale(1.03) translateY(-3px);
}
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #48d9c0);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 1.25rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 14px rgba(24, 188, 156, 0.3);
    white-space: nowrap;
}

.pricing-header {
    margin: -2rem -1.75rem 1.25rem;
    padding: 1.75rem 1.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    background: var(--pricing-header-bg);
}
.pricing-header h3 { font-size: 1.15rem; font-weight: 700; color: var(--heading-color); margin-bottom: 0.5rem; }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 0.15rem; }
.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    letter-spacing: -1px;
    line-height: 1;
}
.pricing-amount .price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.yearly-save {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.4rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}
.pricing-features li {
    padding: 0.55rem 0;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--body-color);
    border-bottom: 1px solid var(--border-color);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}
.pricing-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid var(--primary);
    cursor: pointer;
    transition: all var(--transition);
    margin-top: auto;
}
.pricing-card .btn-outline { background: transparent; color: var(--primary); }
.pricing-card .btn-outline:hover { background: var(--primary); color: #fff; }
.pricing-card .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(24, 188, 156, 0.25); }
.pricing-card .btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(24, 188, 156, 0.35); }

/* ─── Testimonials / Social Proof ─── */
#testimonials {
    background: var(--light);
    transition: background var(--transition);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-sm);
}
.testimonial-stars {
    color: #f1c40f;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #48d9c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}
.testimonial-author .name { font-size: 0.85rem; font-weight: 600; color: var(--heading-color); }
.testimonial-author .role { font-size: 0.75rem; color: var(--text-muted); }

/* ─── CTA ─── */
.cta-section {
    background: var(--secondary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(24, 188, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}
.cta-section p {
    font-size: 1.05rem;
    opacity: 0.65;
    max-width: 480px;
    margin: 0 auto 2rem;
}
.cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    color: var(--secondary);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #f8f9fb;
}

/* ─── Footer ─── */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.55);
    padding: 4rem 0 0;
    position: relative;
    transition: background var(--transition);
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 188, 156, 0.3), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col p, .footer-col a { font-size: 0.85rem; line-height: 1.8; color: rgba(255, 255, 255, 0.5); }
.footer-col a { display: block; transition: all var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 48px; width: auto; display: block; }
.footer-col p { font-size: 0.85rem; line-height: 1.7; }
.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── Newsletter ─── */
.footer-newsletter p {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.82rem;
    outline: none;
    transition: all var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.3); }
.newsletter-form input:focus { border-color: var(--primary); background: rgba(255, 255, 255, 0.08); }
.newsletter-form .btn {
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.newsletter-form .btn:hover { background: var(--primary-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-logo img { height: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1.02); }
    .pricing-card.featured:hover { transform: scale(1.02) translateY(-3px); }
    section { padding: 4rem 0; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { max-width: 380px; margin: 0 auto; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Page Header ─── */
.page-header-section {
    padding: 8rem 0 3.5rem;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-section::before {
    content: '';
    position: absolute;
    top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(24, 188, 156, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header-section .container { position: relative; z-index: 1; }
.page-header-section h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.5px; }
.page-header-section p { color: rgba(255, 255, 255, 0.5); margin-top: 0.5rem; font-size: 1rem; }

/* ─── Page Content ─── */
.page-content {
    padding: 4rem 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--body-color);
}
.page-content h2 { color: var(--heading-color); font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; }
.page-content h3 { color: var(--heading-color); font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.75rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }

/* ─── Animations ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
