:root {
    --dark: #0a0a0a;
    --cream: #faf9f6;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --success: #059669;
    --warning: #dc2626;
    --muted: #64748b;
    --border: #e2e8f0;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #1e40af);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, .3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 249, 246, .97) 0%, rgba(250, 249, 246, .85) 50%, rgba(250, 249, 246, .7) 100%);
}

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

.hero-content {
    animation: fadeInUp .8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: .85rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent);
    font-style: italic;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 520px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp .8s ease-out .3s both;
}

.hero-image-panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}

.hero-image-panel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.hero-image-caption {
    color: #fff;
}

.hero-image-caption h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hero-image-caption p {
    font-size: .9rem;
    opacity: .9;
}

.hero-stats-row {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
}

.hero-stat-pill {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    animation: float 3s ease-in-out infinite;
}

.hero-stat-pill:nth-child(2) { animation-delay: 1s; }
.hero-stat-pill:nth-child(3) { animation-delay: 2s; }

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

.hero-stat-pill .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-pill .icon.green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.hero-stat-pill .icon.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.hero-stat-pill .icon.purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }

.hero-stat-pill .icon svg {
    width: 16px;
    height: 16px;
}

.hero-stat-pill .text {
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
}

.hero-stat-pill .value {
    color: var(--success);
    font-weight: 700;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--warning);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-label.green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: var(--success);
}

.section-label.blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
}

/* Problems Section */
.problems {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

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

.problem-card {
    background: linear-gradient(135deg, #fef2f2, #fff);
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, .1);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, .1);
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--warning);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, .1);
    border-color: var(--success);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--success);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

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

/* Transformation Section */
.transformation {
    padding: 120px 0;
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(37, 99, 235, .2) 0%, transparent 60%);
}

.transformation .section-label {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.transformation .section-title {
    color: #fff;
}

.transformation .section-subtitle {
    color: rgba(255, 255, 255, .7);
}

.transform-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.transform-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.transform-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.transform-box.before .transform-label {
    background: rgba(220, 38, 38, .2);
    color: #fca5a5;
}

.transform-box.after .transform-label {
    background: rgba(5, 150, 105, .2);
    color: #6ee7b7;
}

.old-website {
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
}

.old-header {
    background: linear-gradient(180deg, #2d2d4a, #1a1a2e);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #444;
}

.old-logo {
    font-size: .8rem;
    color: #888;
    font-family: 'Times New Roman', serif;
}

.old-nav {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.old-nav span {
    font-size: .65rem;
    color: #666;
    text-decoration: underline;
}

.old-content {
    padding: 16px;
    min-height: 180px;
}

.old-banner {
    background: linear-gradient(90deg, #4a0080, #800040);
    padding: 8px;
    text-align: center;
    margin-bottom: 12px;
    font-size: .7rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .6; }
}

.old-table {
    width: 100%;
    border-collapse: collapse;
}

.old-table td {
    border: 1px solid #444;
    padding: 8px;
    font-size: .65rem;
    color: #888;
    vertical-align: top;
}

.old-counter {
    text-align: center;
    margin-top: 12px;
    font-size: .6rem;
    color: #666;
}

.new-website {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.new-header {
    background: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.new-logo {
    font-weight: 700;
    font-size: .85rem;
    color: var(--accent);
}

.new-nav {
    display: flex;
    gap: 12px;
}

.new-nav span {
    width: 30px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.new-hero {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.new-hero-text {
    flex: 1;
}

.new-hero-title {
    width: 90%;
    height: 12px;
    background: var(--dark);
    border-radius: 3px;
    margin-bottom: 6px;
}

.new-hero-sub {
    width: 70%;
    height: 8px;
    background: #64748b;
    border-radius: 3px;
    margin-bottom: 12px;
}

.new-hero-btn {
    width: 60px;
    height: 24px;
    background: var(--accent);
    border-radius: 4px;
}

.new-hero-img {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    border-radius: 8px;
}

.new-features {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
}

.new-feature {
    flex: 1;
    background: #f8fafc;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #e2e8f0;
}

.new-feature-icon {
    width: 16px;
    height: 16px;
    background: var(--success);
    border-radius: 4px;
    margin-bottom: 6px;
}

.new-feature-line {
    width: 80%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.arrow-circle {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, .4); }
    50% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
}

.arrow-circle svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.arrow-text {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    text-align: center;
}

/* Focus Section */
.focus {
    padding: 120px 0;
    background: var(--cream);
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.focus-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.focus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.focus-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.focus-list li:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(37, 99, 235, .1);
}

.focus-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.focus-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
}

.focus-list h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.focus-list p {
    font-size: .9rem;
    color: var(--muted);
}

.focus-visual {
    position: relative;
}

.focus-mockup {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.mockup-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.mockup-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.mockup-subtitle {
    font-size: .85rem;
    color: var(--muted);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mockup-stat {
    background: var(--cream);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.mockup-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--success);
}

.mockup-stat-label {
    font-size: .8rem;
    color: var(--muted);
}

/* Who We Help Section */
.who-we-help {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff, var(--cream));
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.checklist-item:hover {
    border-color: var(--success);
    transform: translateX(4px);
}

.checklist-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--success);
    fill: none;
    stroke-width: 3;
}

.checklist-item span {
    font-size: .95rem;
    color: var(--dark);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: #fff;
    color: var(--dark);
    padding: 18px 36px;
    font-size: 1.05rem;
}

.cta .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

.cta .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    padding: 18px 36px;
    font-size: 1.05rem;
}

.cta .btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    fill: none;
    stroke-width: 2;
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-size: .9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, .4);
    font-size: .85rem;
}

/* Page Header (for interior pages) */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, .1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: var(--cream);
}

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

.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.mission-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--dark);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-family: var(--font-display);
    color: var(--accent-light);
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
}

/* Process Page Styles */
.page-header.dark {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: #fff;
}

.page-header.dark::before {
    background: radial-gradient(ellipse at center top, rgba(37, 99, 235, .3) 0%, transparent 60%);
}

.page-header.dark p {
    color: rgba(255, 255, 255, .8);
}

.process {
    padding: 100px 0;
    background: #fff;
}

.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.process-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.process-intro p {
    color: var(--muted);
    font-size: 1.1rem;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--success));
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: 0 10px 30px rgba(37, 99, 235, .3);
    z-index: 1;
}

.process-step:nth-child(even) .step-content {
    order: 2;
}

.process-step:nth-child(even) .step-image {
    order: 1;
}

.step-content {
    padding-top: 20px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--muted);
    margin-bottom: 16px;
}

.step-features {
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: .95rem;
}

.step-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

.step-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Timeline Overview */
.timeline-overview {
    padding: 100px 0;
    background: var(--cream);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.timeline-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--border);
}

.timeline-card:last-child::before {
    display: none;
}

.timeline-week {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-card p {
    color: var(--muted);
    font-size: .9rem;
}

/* Guarantee Section */
.guarantee {
    padding: 100px 0;
    background: #fff;
}

.guarantee-box {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--success);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(5, 150, 105, .2);
}

.guarantee-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--success);
    fill: none;
    stroke-width: 1.5;
}

.guarantee-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--success);
}

.guarantee-content p {
    color: var(--muted);
    font-size: 1.1rem;
}

/* FAQ Page Styles */
.page-header.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.page-header.green::before {
    background: radial-gradient(ellipse at center, rgba(5, 150, 105, .1) 0%, transparent 70%);
}

.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-categories {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.faq-categories h3 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    margin-bottom: 16px;
}

.faq-category-list {
    list-style: none;
}

.faq-category-list li {
    margin-bottom: 8px;
}

.faq-category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.faq-category-list a:hover,
.faq-category-list a.active {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--accent);
}

.faq-category-list a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.faq-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.faq-group {
    margin-bottom: 48px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.open {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(37, 99, 235, .1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-item.open .faq-question {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--accent);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--dark);
    stroke-width: 2;
    transition: var(--transition);
}

.faq-item.open .faq-icon svg {
    stroke: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-contact {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--dark), #1e293b);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    color: #fff;
}

.faq-contact h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.faq-contact p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px;
}

.faq-contact .btn-primary {
    background: #fff;
    color: var(--dark);
}

.faq-contact .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-panel img {
        height: 400px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transform-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .transform-arrow {
        transform: rotate(90deg);
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image {
        order: -1;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-step::before {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .step-content {
        padding-left: 80px;
        order: 2 !important;
    }
    
    .step-image {
        order: 1 !important;
        margin-left: 80px;
    }
    
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-card::before {
        display: none;
    }
    
    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantee-icon {
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-categories {
        position: relative;
        top: 0;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .faq-categories h3 {
        display: none;
    }
    
    .faq-category-list {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .faq-category-list li {
        margin: 0;
    }
    
    .faq-category-list a {
        padding: 8px 16px;
        font-size: .9rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .hero-stat-pill {
        padding: 8px 12px;
        font-size: .7rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .checklist {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
