:root {
    /* Healthcare Tech Light Theme (Apple-style) */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    
    /* Clean Blue Health Accents */
    --tech-primary: #0ea5e9; /* Sky blue */
    --tech-light: #38bdf8;
    --tech-dark: #0284c7;
    --tech-glow: rgba(14, 165, 233, 0.12);
    
    --border-color: rgba(0, 0, 0, 0.05);
    
    /* Apple-style layered shadow for buttery smooth depth */
    --shadow-soft: 
        0 2px 4px rgba(0, 0, 0, 0.02), 
        0 8px 16px rgba(0, 0, 0, 0.03), 
        0 24px 48px rgba(0, 0, 0, 0.05);
    
    /* Clean, Geometric Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother easing */
}

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6); /* Subtle top highlight */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
}

@media (max-width: 767px) {
    .header-content {
        height: 64px;
    }
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--tech-primary);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-outline-tech {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.btn-outline-tech:hover {
    background: #ffffff;
    border-color: rgba(14, 165, 233, 0.3);
    color: var(--tech-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.btn-primary-tech {
    background: linear-gradient(180deg, var(--tech-light) 0%, var(--tech-primary) 100%);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04); /* Subtle edge definition */
    font-size: 1.15rem;
    padding: 18px 40px;
    border-radius: 100px; /* Pill shape for premium feel */
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.4), /* Inner top highlight */
        0 8px 20px var(--tech-glow),
        0 2px 4px rgba(14, 165, 233, 0.15);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1); /* Crisp text */
}

.btn-primary-tech::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-tech:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        0 12px 28px rgba(14, 165, 233, 0.2),
        0 4px 8px rgba(14, 165, 233, 0.15);
    background: linear-gradient(180deg, #51c6f8 0%, #0ea5e9 100%);
}

.btn-primary-tech:hover::after {
    left: 100%;
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: var(--transition);
}

.btn-primary-tech:hover .arrow-icon {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.04) 0%, transparent 50%);
}

/* Subtle background tech grid (Light) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    z-index: -2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    color: var(--tech-dark);
    border-radius: 100px;
    font-size: 0.875rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tech-primary);
    margin-right: 8px;
    box-shadow: 0 0 8px var(--tech-glow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f172a;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.2rem; /* Slightly larger for impact */
    }
}

.accent-text {
    background: linear-gradient(135deg, var(--tech-light), var(--tech-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.benefits-list {
    list-style: none;
    margin-bottom: 48px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--tech-primary);
    margin-right: 16px;
    flex-shrink: 0;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    padding: 4px;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 576px) {
    .cta-wrapper {
        align-items: flex-start;
    }
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stars {
    color: #fbbf24; 
    letter-spacing: 2px;
    font-size: 1.1rem;
}

/* Image Section */
.hero-image-content {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    border-radius: 28px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 
        var(--shadow-soft),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 22px;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* very soft inner drop */
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--tech-primary);
    filter: blur(100px);
    opacity: 0.08;
    z-index: -1;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.04),
        0 4px 10px rgba(0, 0, 0, 0.02),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 767px) {
    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: max-content;
        animation: none;
    }
}

.badge-icon {
    color: var(--tech-primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.5);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.badge-text span {
    font-size: 0.875rem;
    color: var(--tech-dark);
    font-weight: 500;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* Trusted By Section */
.trusted-by {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
}

.trusted-by p {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    font-weight: 600;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%) contrast(120%);
}

.logos:hover {
    opacity: 0.8;
    filter: grayscale(20%) contrast(100%);
}

@media (min-width: 768px) {
    .logos {
        gap: 60px;
    }
}

.trust-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* Utilities */
@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--bg-main);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    background: #ffffff;
    border-color: rgba(14, 165, 233, 0.1);
}

.premium-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.premium-card:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.15) 100%);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), 0 6px 16px rgba(14, 165, 233, 0.15);
}

.card-icon svg {
    color: #ffffff;
}

/* Harmonious Premium Healthcare Palette */
.blue-gradient { background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%); }
.teal-gradient { background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%); }
.purple-gradient { background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%); }
.orange-gradient { background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%); }
.solid-blue { background: linear-gradient(135deg, var(--tech-light) 0%, var(--tech-dark) 100%); box-shadow: 0 8px 24px var(--tech-glow), inset 0 1px 1px rgba(255,255,255,0.5); }

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Comparison Redesign (Bright Apple Style) */
.comparison-redesign {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .comparison-cards {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.comparison-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.gkv-card {
    background: rgba(248, 250, 252, 0.5);
}

.premium-highlight-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 20px 48px -12px rgba(14, 165, 233, 0.08);
    transform: scale(1.02);
    z-index: 2;
}

@media (max-width: 991px) {
    .premium-highlight-card {
        transform: scale(1);
        margin-top: 16px;
    }
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--tech-primary);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.comparison-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
}

.comparison-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.4;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-icon.minus {
    color: #94a3b8;
}

.feature-icon.check {
    color: var(--tech-primary);
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    padding: 4px;
}

.comparison-cta {
    display: flex;
    justify-content: center;
}

/* Process & Trust Section */
.process-trust-section {
    padding: 100px 0;
    background: var(--bg-main);
    position: relative;
    border-top: 1px solid var(--border-color);
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .process-grid {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 320px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(14, 165, 233, 0.05);
    z-index: 0;
    line-height: 1;
    letter-spacing: -0.05em;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    color: var(--tech-primary);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.step-connector {
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: block;
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(14, 165, 233, 0.0) 0%, rgba(14, 165, 233, 0.15) 50%, rgba(14, 165, 233, 0.0) 100%);
        margin-top: 36px;
        max-width: 100px;
    }
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

/* Reviews Section */
.reviews-wrapper {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px) saturate(180%);
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 20px 40px -10px rgba(0,0,0,0.04), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.reviews-header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.justify-center {
    justify-content: center;
}

.mb-4 {
    margin-bottom: 16px;
}

.trust-score {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tech-light), var(--tech-primary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.4);
}

.avatar-blue { background: linear-gradient(135deg, var(--tech-primary), var(--tech-dark)); }
.avatar-teal { background: linear-gradient(135deg, #2dd4bf, #0f766e); }

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.author-info span {
    color: var(--tech-primary);
    font-size: 0.8rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-main);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(14, 165, 233, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: var(--tech-primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    padding: 0 30px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding-bottom: 24px;
}

.faq-answer strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Active FAQ State */
.faq-item.active {
    background: #ffffff;
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
}

.faq-item.active .faq-question {
    color: var(--tech-dark);
}

.faq-item.active .faq-icon {
    background: var(--tech-primary);
    color: #ffffff;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--bg-main);
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%); /* Lighter premium dark */
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    color: #ffffff;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .cta-box h2 {
        font-size: 3.5rem;
    }
}

.cta-box p {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.btn-lg {
    font-size: 1.25rem;
    padding: 22px 48px;
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.trust-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-features svg {
    width: 20px;
    height: 20px;
    color: var(--tech-light);
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--tech-primary);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 16px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-icon {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
    opacity: 0.8;
}

.contact-link:hover {
    color: var(--tech-primary);
}

.availability {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Legal Pages */
.legal-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-main);
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.legal-content p, .legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content a {
    color: var(--tech-primary);
    text-decoration: none;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--tech-dark);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .legal-content {
        padding: 40px 24px;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--tech-bg);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.premium-form .form-group {
    margin-bottom: 24px;
}

.premium-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fdfdfd;
}

.form-input:focus {
    outline: none;
    border-color: var(--tech-primary);
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.1);
    background: #ffffff;
}

.form-input::placeholder {
    color: #a0a0a0;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.form-status {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    background-color: rgba(52, 199, 89, 0.1);
    color: #28a745;
    text-align: center;
    font-weight: 500;
}

.form-status.hidden {
    display: none;
}

.form-status.error {
    background-color: rgba(255, 59, 48, 0.1);
    color: #dc3545;
}
/* Mobile Refinements & Global Optimizations */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-section, 
    .process-trust-section, 
    .faq-section, 
    .contact-section,
    .final-cta {
        padding: 60px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-primary-tech {
        padding: 16px 32px;
        font-size: 1.05rem;
    }

    .benefit-card {
        padding: 24px;
    }

    .comparison-redesign {
        margin-top: 40px;
    }

    .comparison-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .comparison-card h3 {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }

    .comparison-features {
        gap: 16px;
    }

    .comparison-features li {
        font-size: 1rem;
        gap: 12px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .benefits-list li {
        align-items: flex-start;
        font-size: 1rem;
    }

    .check-icon {
        margin-top: 2px;
    }

    .cta-wrapper {
        gap: 16px;
    }

    .process-grid {
        gap: 30px;
    }

    .cta-box {
        padding: 40px 24px;
        border-radius: 24px;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }

    .cta-box h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .cta-box p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .cta-box .btn-lg {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 280px;
    }

    .trust-features {
        flex-direction: column;
        align-items: flex-start;
        display: inline-flex;
        gap: 12px;
        margin: 30px auto 0 auto;
        text-align: left;
    }

    .trust-features span {
        font-size: 0.85rem;
    }

    .reviews-wrapper {
        padding: 40px 20px;
    }

    .footer-grid {
        gap: 40px;
    }
}
