/* ============================================
   Contract Compliance Partners — Premium Visual Design
   ============================================ */

:root {
    --navy: #0a1628;
    --navy-light: #0f2140;
    --navy-mid: #162d50;
    --accent: #d4a843;
    --accent-light: #e8c36a;
    --accent-dark: #b8912e;
    --text: #1a1a2e;
    --text-secondary: #5a6577;
    --text-muted: #8896a6;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6eb;
    --gray-300: #cdd3dc;
    --border: #e2e6eb;
    --success: #22c55e;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--navy);
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}
.btn-accent:hover {
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-300);
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(226,230,235,0.6);
    transition: all var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; max-width: 200px; }
.footer-logo .logo-img { height: 36px; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-weight: 500; font-size: 15px; color: var(--text-secondary); }
.nav a:hover { color: var(--navy); }
.nav .btn-accent { color: var(--navy); }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* ============================================
   Hero — Decorative Design
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy) 0%, #0d1f3c 35%, var(--navy-light) 70%, var(--navy-mid) 100%);
}

/* Grid background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

/* Floating shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.shape-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -15%; right: -10%;
    animation: float1 20s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    bottom: 10%; left: -5%;
    animation: float2 15s ease-in-out infinite;
}
.shape-3 {
    width: 200px; height: 200px;
    border: 2px solid var(--accent);
    top: 20%; left: 15%;
    animation: float3 25s ease-in-out infinite;
    opacity: 0.12;
}
.shape-4 {
    width: 120px; height: 120px;
    background: var(--accent);
    border-radius: 20px;
    top: 60%; right: 35%;
    animation: float4 18s ease-in-out infinite;
    opacity: 0.06;
    transform: rotate(45deg);
}
.shape-5 {
    width: 80px; height: 80px;
    border: 2px solid rgba(255,255,255,0.1);
    bottom: 25%; right: 20%;
    border-radius: 12px;
    animation: float1 22s ease-in-out infinite reverse;
}

@keyframes float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -40px); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-25px, 30px); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(20px, -20px) rotate(180deg); } }
@keyframes float4 { 0%, 100% { transform: rotate(45deg) scale(1); } 50% { transform: rotate(225deg) scale(1.1); } }

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 64px;
    align-items: center;
}

.hero-content { color: var(--white); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.25);
    color: var(--accent-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    position: relative;
    display: inline;
}
.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 3px;
}
.text-accent { color: var(--accent); }

.hero-sub {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 32px;
}

/* Hero proof box */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 22px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.proof-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.proof-text { display: flex; flex-direction: column; }
.proof-number { font-size: 24px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; line-height: 1.1; }
.proof-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Form */
.hero-form-wrap { position: relative; }

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(212, 168, 67, 0.08);
    overflow: hidden;
    position: relative;
}

.form-card-glow {
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-header { padding: 32px 32px 0; text-align: center; }

.form-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.12) 0%, rgba(212, 168, 67, 0.04) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    margin: 0 auto 16px;
}

.form-header h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-header p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

.lead-form { padding: 24px 32px 32px; }

.form-field { margin-bottom: 14px; }

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
}
.form-field input::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}
.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238896a6' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.btn-submit { margin-top: 6px; padding: 16px 24px; font-size: 16px; }

.form-trust-row { display: flex; justify-content: center; gap: 20px; margin-top: 16px; }
.form-trust-row span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.form-trust-row svg { color: var(--success); }

/* ============================================
   Trust Strip
   ============================================ */
.trust-strip {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}
.trust-strip-label { text-align: center; font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.trust-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.trust-tag:hover { border-color: var(--accent); color: var(--navy); box-shadow: var(--shadow-sm); }
.trust-tag svg { opacity: 0.5; }

/* ============================================
   Section Headers
   ============================================ */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
    margin-bottom: 14px;
}
.section-label::before, .section-label::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.section-header h2 { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; color: var(--navy); margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-secondary); line-height: 1.6; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }
.section-header.light .section-label { color: var(--accent); }
.section-header.light .section-label::before,
.section-header.light .section-label::after { background: rgba(255,255,255,0.3); }

/* ============================================
   Services
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.services-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}
.bg-circle-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -200px; }
.bg-circle-2 { width: 400px; height: 400px; background: var(--navy); bottom: -100px; left: -100px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gray-200);
    transition: all var(--transition);
}
.service-card:hover .service-card-accent { background: var(--accent); }
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.service-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.04) 0%, var(--white) 40%);
}
.service-card.featured .service-card-accent { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }

.featured-badge {
    position: absolute;
    top: -1px; right: 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 0 0 10px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 20px;
    color: var(--navy);
    margin-bottom: 24px;
    transition: all var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.05); }
.service-card.featured .service-icon {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.15) 0%, rgba(212, 168, 67, 0.05) 100%);
    color: var(--accent-dark);
}
.service-icon.icon-gold {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.15) 0%, rgba(212, 168, 67, 0.05) 100%);
    color: var(--accent-dark);
}

.service-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

.service-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -2px;
    margin-bottom: 8px;
    line-height: 1;
}
.price-period { font-size: 18px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }

.service-features { list-style: none; text-align: left; margin: 20px 0 32px; }
.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}
.check::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -2px;
}

/* ============================================
   Process / How It Works
   ============================================ */
.process {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}
.process-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.3;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 32px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.process-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.process-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.12;
    position: absolute;
    top: 12px; right: 20px;
    letter-spacing: -3px;
    line-height: 1;
}

.process-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.12) 0%, rgba(212, 168, 67, 0.04) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; position: relative; z-index: 1; }
.process-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; position: relative; z-index: 1; }

.process-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.process-card:hover .process-line { opacity: 1; }

/* ============================================
   Results / Testimonials
   ============================================ */
.results {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.results-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
}
.results-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(212, 168, 67, 0.06) 1px, transparent 0);
    background-size: 48px 48px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.result-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    transition: all var(--transition);
}
.result-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-4px);
}

.result-stars { display: flex; gap: 2px; margin-bottom: 18px; color: var(--accent); }
.result-card p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.result-author { display: flex; align-items: center; gap: 12px; }
.result-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.result-author strong { display: block; font-size: 15px; color: var(--white); }
.result-author span { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.faq-bg-accent {
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(212, 168, 67, 0.3); }
.faq-item.active { border-color: var(--accent); box-shadow: 0 4px 20px rgba(212, 168, 67, 0.1); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}
.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    transition: all var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-mid) 100%);
}
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.cta-shape-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; left: -100px; animation: float1 18s ease-in-out infinite; }
.cta-shape-2 { width: 250px; height: 250px; background: var(--accent-light); bottom: -80px; right: -50px; animation: float2 14s ease-in-out infinite; }
.cta-shape-3 { width: 150px; height: 150px; border: 2px solid var(--accent); top: 30%; right: 20%; animation: float3 20s ease-in-out infinite; opacity: 0.1; }

.cta-container { position: relative; z-index: 1; }

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 28px;
}

.cta-container h2 { font-size: 44px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; color: var(--white); margin-bottom: 20px; }
.cta-container > p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.cta-note { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--navy); color: var(--white); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 15px; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-links h4, .footer-contact h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links a, .footer-contact a { display: block; color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 12px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 14px; margin-bottom: 8px; }
.footer-bottom .disclaimer { font-size: 12px; max-width: 800px; margin: 0 auto; color: rgba(255,255,255,0.25); }

/* ============================================
   Blog Pages
   ============================================ */
.blog-list { max-width: 900px; margin: 0 auto; padding: 120px 24px 80px; }
.blog-list h1 { font-size: 42px; font-weight: 800; letter-spacing: -1px; margin-bottom: 40px; color: var(--navy); }
.blog-card {
    display: block;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    margin-bottom: 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gray-200); transition: background var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); transform: translateY(-2px); }
.blog-card:hover::before { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.blog-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.blog-card p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.blog-card .read-more { color: var(--accent-dark); font-weight: 600; }

.blog-post { max-width: 800px; margin: 0 auto; padding: 100px 24px 80px; }
.blog-post h1 { font-size: 42px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.2; color: var(--navy); }
.blog-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.blog-post h2 { font-size: 28px; font-weight: 700; margin-top: 48px; margin-bottom: 16px; color: var(--navy); }
.blog-post h3 { font-size: 22px; font-weight: 600; margin-top: 32px; margin-bottom: 12px; color: var(--navy); }
.blog-post p { margin-bottom: 16px; line-height: 1.8; color: var(--text-secondary); }
.blog-post ul, .blog-post ol { margin-bottom: 20px; padding-left: 24px; }
.blog-post li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.7; }
.blog-post a { color: var(--accent-dark); text-decoration: underline; }
.blog-breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.blog-breadcrumb a { color: var(--text-muted); }
.blog-breadcrumb a:hover { color: var(--accent-dark); }
.blog-cta { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px; margin: 48px 0; border-left: 4px solid var(--accent); }
.blog-cta h3 { margin-top: 0; margin-bottom: 12px; color: var(--navy); }
.blog-cta p { margin-bottom: 20px; }

/* ============================================
   Lead Magnet Pages
   ============================================ */
.lead-magnet-hero { padding: 120px 0 80px; background: var(--gray-100); }
.lead-magnet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lead-magnet-content h1 { font-size: 44px; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; color: var(--navy); line-height: 1.2; }
.lead-magnet-content p { font-size: 18px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.lead-magnet-benefits { list-style: none; margin-bottom: 32px; }
.lead-magnet-benefits li { padding: 10px 0; color: var(--text-secondary); font-size: 16px; display: flex; align-items: center; gap: 10px; }
.lead-magnet-benefits li::before { content: ''; width: 22px; height: 22px; background: linear-gradient(135deg, #22c55e, #16a34a); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.lead-form { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }

/* ============================================
   Checklist Page
   ============================================ */
.checklist-page { max-width: 800px; margin: 0 auto; padding: 100px 24px 80px; }
.checklist-header { text-align: center; margin-bottom: 48px; }
.checklist-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; color: var(--navy); }
.checklist-header p { color: var(--text-secondary); margin-bottom: 24px; }
.print-button { display: inline-flex; align-items: center; gap: 8px; }
.checklist-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow); }
.checklist-box h2 { font-size: 24px; margin-top: 0; margin-bottom: 8px; color: var(--navy); }
.checklist-box .subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.checklist-section { margin-bottom: 32px; }
.checklist-section h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; border-bottom: 2px solid var(--accent); padding-bottom: 8px; }
.checklist-section ul { list-style: none; padding: 0; }
.checklist-section li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); color: var(--text-secondary); display: flex; align-items: flex-start; gap: 12px; }
.checklist-section li::before { content: '☐'; color: var(--accent); font-size: 20px; line-height: 1; }
.checklist-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); text-align: center; }
.checklist-footer p { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }

@media print { .header, .footer, .print-button, .final-cta { display: none !important; } .checklist-page { padding: 0; } .checklist-box { box-shadow: none; border: none; } body { background: white; } }

/* ============================================
   Animations
   ============================================ */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="fade-left"] { transform: translateX(50px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero { min-height: auto; padding: 140px 0 80px; }
    .hero-form-wrap { max-width: 480px; margin: 0 auto; }
    .services-grid, .results-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .process-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; box-shadow: var(--shadow-lg); gap: 16px; border-top: 1px solid var(--border); }
    .nav.active { display: flex; }
    .mobile-menu-toggle { display: flex; }
    .hero h1 { font-size: 36px; letter-spacing: -0.5px; }
    .hero-sub { font-size: 17px; }
    .hero-proof { flex-direction: column; gap: 16px; padding: 20px; }
    .proof-divider { width: 40px; height: 1px; }
    .hero-ctas { flex-direction: column; }
    .section-header h2, .cta-container h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-header, .lead-form { padding-left: 24px; padding-right: 24px; }
    .form-trust-row { flex-direction: column; align-items: center; gap: 8px; }
}
@media (max-width: 480px) {
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 30px; }
    .services, .process, .results, .faq, .final-cta { padding: 80px 0; }
    .btn-lg { padding: 14px 24px; width: 100%; }
    .service-card, .process-card, .result-card { padding: 28px 24px; }
    .blog-list, .blog-post, .checklist-page { padding: 80px 20px 60px; }
    .blog-list h1, .blog-post h1 { font-size: 30px; }
    .blog-post h2 { font-size: 24px; }
    .lead-magnet-grid { grid-template-columns: 1fr; gap: 40px; }
    .lead-magnet-content h1 { font-size: 32px; }
    .lead-form, .checklist-box { padding: 28px; }
    .checklist-header h1 { font-size: 28px; }
}
