:root {
    --primary: #16A34A;
    --primary-dark: #15803D;
    --secondary: #16A34A;
    --secondary-dark: #15803D;
    --trust-green: #065F46;
    --action-green: #16A34A;
    --text-main: #111827;
    --text-muted: #6B7280;
    --bg-light: #F8FAF9;
    --bg-alt: #FFF;
    --white: #FFF;
    --border: #E5E7EB;
    --shadow-sm: 0 2px 4px rgb(0 0 0 / 5%);
    --shadow-md: 0 10px 20px rgb(0 0 0 / 8%);
    --shadow-lg: 0 20px 40px rgb(0 0 0 / 12%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: clamp(80px, 10vw, 120px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (width <= 1024px) {
    html { font-size: 15px; }
}

@media (width <= 768px) {
    html { font-size: 14px; }
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-main);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgb(255 255 255 / 85%);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: 65px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    flex: 1 0 0;
}

nav {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(10px, 1.5vw, 24px);
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    justify-content: flex-end;
    border-left: 1px solid rgb(0 0 0 / 5%);
    padding-left: 20px;
}

.header-cta {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    line-height: 1;
}

.header-cta .cta-label {
    font-weight: 700;
    opacity: 0.8;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-cta .phone-number {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

.header-cta:hover {
    color: var(--primary-dark);
}

.header-cta:hover .phone-number {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, var(--bg-light), var(--bg-alt));
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--text-main);
    animation: slide-up 0.8s ease-out;
    line-height: 1.1;
}

.hero-content .subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 24px;
    max-width: 550px;
    animation: slide-up 0.8s ease-out 0.1s backwards;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 32px;
    animation: slide-up 0.8s ease-out 0.2s backwards;
}

.hero-bullets li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.2rem;
    top: -2px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    animation: slide-up 0.8s ease-out 0.3s backwards;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgb(40 167 69 / 20%);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgb(40 167 69 / 30%);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 10px;
    margin-top: 20px;
}


.trust-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slide-up 0.8s ease-out 0.4s backwards;
}

/* Hero Form Card */
.form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: fade-in 1s ease-out 0.5s backwards;
    max-width: 450px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-align: center;
}

.form-card p.form-sub {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgb(22 163 74 / 10%);
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    box-shadow: 0 4px 14px rgb(40 167 69 / 20%);
}

.btn-submit:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgb(40 167 69 / 30%);
}

.form-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.privacy-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--secondary);
    font-weight: 700;
}

/* Sections General */
section {
    padding: var(--section-padding) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

section:nth-of-type(even) {
    background-color: var(--bg-light);
}

section:nth-of-type(odd) {
    background-color: var(--bg-alt);
}

.service-content section {
    display: block;
    min-height: auto;
    padding: 0;
    margin-bottom: 40px;
    background-color: transparent !important;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(48px, 8vw, 80px);
    width: 100%;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 40px);
    max-width: 1100px;
    margin: 0 auto;
}

@media (width <= 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width <= 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.card {
    background: var(--white);
    padding: clamp(30px, 5vw, 40px);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.card p {
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* Services */
.services {
    background-color: var(--bg-light);
}

/* Target Users */
.user-segments {
    background-color: var(--white);
}

.user-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.user-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.user-card .icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 6px rgb(0 0 0 / 10%));
}

.user-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

/* Trust Section */
.trust {
    background-color: var(--primary);
    color: var(--white);
}

.trust h2 {
    color: var(--white);
}

.trust p {
    color: rgb(255 255 255 / 85%);
}

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

@media (width <= 500px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.trust-item .check {
    background: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}

.trust-item h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* How It Works */
.steps-section {
    background-color: var(--bg-alt);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (width <= 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgb(22 163 74 / 20%);
}

.step-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: var(--text-main);
}

.steps-subtext {
    text-align: center;
    margin-top: 64px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

/* Coverage */
.coverage {
    text-align: center;
    background: var(--bg-light);
}

.state-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.state-tag {
    background: var(--white);
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-main);
    display: inline-block;
}

.state-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.seo-paragraph {
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.micro-cta {
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    color: var(--primary);
}

.micro-cta a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Responsive Optimization Fixes */
@media (width <= 768px) {
    section {
        padding: 60px 0;
        min-height: auto;
    }

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

    .container {
        padding: 0 20px;
    }

    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.4rem !important; }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .form-card {
        padding: 20px;
        border-radius: 16px;
    }

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

    .footer-grid {
        gap: 30px;
    }

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

    .footer-info-item {
        justify-content: center;
    }
}

@media (width <= 480px) {
    html { font-size: 14px; }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Fixes */
@media (width <= 1100px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

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

    .hero-content .subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-bullets {
        display: inline-block;
        text-align: left;
    }

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

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

    .form-card {
        margin: 0 auto;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (width <= 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .header-right {
        display: none;
    }
    
    .hero {
        padding-top: 60px;
    }
    header { height: 60px; }
    
    .logo { flex: none; }
}

/* State Pages */
.state-hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, var(--bg-light), var(--bg-alt));
    text-align: center;
}

.state-hero h1 {
    margin-bottom: 24px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.services-box, .cities-box {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: left;
}

.services-box h3, .cities-box h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.services-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.services-box li {
    padding-left: 24px;
    position: relative;
    font-weight: 500;
}

.services-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.cta-container {
    margin-top: 60px;
}

@media (width <= 600px) {
    .services-box ul {
        grid-template-columns: 1fr;
    }
}

/* CTA Card Horizontal */
.cta-card-horizontal {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0;
}

.cta-card-horizontal h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.cta-card-horizontal p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.cta-options {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-card-horizontal .cta-options {
    justify-content: center;
}

.cta-card-centered .cta-options {
    justify-content: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (width <= 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-hook h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.about-hook p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-values-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.name-meaning-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

.name-meaning-box h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.meaning-flex {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.meaning-item {
    font-size: 1.05rem;
}

.meaning-item strong {
    color: var(--primary);
}

.meaning-summary {
    font-size: 0.95rem;
    font-style: italic;
}

.final-trust-line {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.trust-badge-large {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.badge-header {
    text-align: center;
    margin-bottom: 24px;
}

.micro-icon {
    color: var(--primary);
    margin-bottom: 12px;
}

.badge-header span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.badge-header p {
    font-weight: 600;
    color: var(--text-main);
    margin-top: 8px;
}

.badge-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.badge-points {
    list-style: none;
    margin-bottom: 24px;
}

.badge-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.badge-points .check {
    color: var(--primary);
    font-weight: 800;
}

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

.footer-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.micro-trust {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Related Services (SEO) */
.related-services {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.related-services h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.related-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (width <= 600px) {
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

.related-service-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: block;
}

.related-service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.related-service-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.related-service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (width <= 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (width <= 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.decision-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.trust-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.trust-bullets li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.05rem;
}

.trust-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.contact-details-secondary {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1rem;
    margin: 0;
}

.micro-trust-line {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Legal Sections */
.legal-section {
    padding: 80px 0;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

.legal-content li strong {
    color: var(--text-main);
}

.scam-box {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    padding: 40px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.scam-box h2 {
    color: #B45309;
    margin-bottom: 20px;
}

.scam-box a {
    color: #B45309;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #0F172A;
    color: #F3F4F6;
    padding: 80px 0 40px;
}

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

@media (width <= 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (width <= 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #FFF;
}

.footer-brand p {
    color: #D1D5DB;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #FFF;
}

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

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

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary);
}

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

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #9CA3AF;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.conversion-block {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    margin-top: 60px;
    text-align: center;
}

.conversion-block h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: var(--text-main);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Footer */
.disclaimer-bar {
    background: var(--bg-light);
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* cta-card-centered */
.cta-card-centered {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    margin-top: 60px;
}

.cta-card-centered h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta-card-centered p {
    margin-bottom: 30px;
}

.cta-trust-micro {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.cta-trust-micro span {
    position: relative;
    padding-left: 20px;
}

.cta-trust-micro span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Pricing */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary);
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
    width: 100%;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: var(--text-main);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
}

.conversion-block .trust-line {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0;
}

.conversion-block .trust-line li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.conversion-block .trust-line li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

@media (width <= 768px) {
    nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--white);
        overflow: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 40px 24px;
        gap: 20px;
        text-align: center;
    }

    nav a {
        font-size: 1.1rem;
        display: block;
    }
}
