/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #ffffff;
    --color-surface: #f4f4f5;
    --color-surface-2: #e4e4e7;
    --color-border: #d4d4d8;
    --color-text: #18181b;
    --color-text-muted: #71717a;
    --color-primary: #004ed8;
    --color-primary-light: #3072e8;
    --color-accent: #38a8f5;
    --color-gradient-start: #004ed8;
    --color-gradient-end: #38a8f5;
    --radius: 12px;
    --radius-sm: 8px;
    --container: 1120px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ========== Utilities ========== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: #fff;
    font-family: inherit;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    background: rgba(0, 78, 216, 0.05);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ========== Navigation ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: var(--color-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 120px;
    height: 40px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color 0.2s;
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--color-text);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.mobile-menu a {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.mobile-menu .btn {
    text-align: center;
}

/* ========== Hero ========== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 78, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-light);
    border: 1px solid rgba(0, 78, 216, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* Timeline Comparison Visual */
.hero-visual {
    padding: 48px;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.timeline-comparison {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-bar {
    width: 100%;
    height: 12px;
    background: var(--color-surface-2);
    border-radius: 100px;
    overflow: hidden;
}

.timeline-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0;
}

.timeline-fill.animate {
    width: var(--target-width);
}

.traditional-fill {
    background: linear-gradient(90deg, #f87171, #dc2626);
    opacity: 0.7;
    --target-width: 100%;
}

.pact-fill {
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
    --target-width: 25%;
}

.timeline-duration {
    font-size: 1.25rem;
    font-weight: 700;
}

.pact-timeline .timeline-label {
    color: var(--color-primary-light);
}

.pact-timeline .timeline-duration {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* ========== Services ========== */
.services {
    padding: 120px 0;
}

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

.service-card {
    padding: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--color-primary);
}

.service-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(0, 78, 216, 0.06) 0%, var(--color-surface) 100%);
}

.service-icon {
    color: var(--color-primary-light);
    margin-bottom: 24px;
}

.service-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card > p {
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
}

/* ========== PactMD Demo Animation ========== */
.pactmd-demo {
    padding: 120px 0;
    background: var(--color-surface);
}

.orch {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 700 / 440;
    margin: 0 auto;
    background: #0f172a;
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
}

/* SVG lines */
.orch-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.orch-line {
    fill: none;
    stroke: rgba(148, 163, 184, 0.15);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke 0.6s, stroke-dashoffset 1.2s ease-out;
}

.orch.phase-2 .orch-line,
.orch.phase-3 .orch-line,
.orch.phase-4 .orch-line,
.orch.phase-5 .orch-line {
    stroke-dashoffset: 0;
    stroke: rgba(59, 130, 246, 0.35);
}

.orch.phase-4 .orch-l3,
.orch.phase-4 .orch-l4 {
    stroke: rgba(220, 38, 38, 0.6);
}

.orch.phase-5 .orch-line {
    stroke: rgba(5, 150, 105, 0.5);
}

/* Particle flow animation on lines */
.orch.phase-3 .orch-line {
    stroke-dasharray: 6 14;
    stroke-dashoffset: 0;
    animation: orchParticleFlow 1.2s linear infinite;
}

.orch.phase-4 .orch-line {
    stroke-dasharray: 6 14;
    stroke-dashoffset: 0;
    animation: orchParticleFlow 0.8s linear infinite;
}

.orch.phase-5 .orch-line {
    stroke-dasharray: none;
    animation: none;
}

@keyframes orchParticleFlow {
    to { stroke-dashoffset: -20; }
}

/* Conflict cross-line between David and Alex */
.orch-conflict-line {
    fill: none;
    stroke: transparent;
    stroke-width: 2;
    stroke-dasharray: 6 4;
    transition: stroke 0.4s;
}

.orch.phase-4 .orch-conflict-line {
    stroke: rgba(220, 38, 38, 0.6);
    animation: orchParticleFlow 0.6s linear infinite;
}

/* Center hub */
.orch-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.6s;
}

.orch.phase-1 .orch-hub,
.orch.phase-2 .orch-hub,
.orch.phase-3 .orch-hub,
.orch.phase-4 .orch-hub,
.orch.phase-5 .orch-hub {
    opacity: 1;
}

.orch-hub-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    transition: background 0.6s;
}

.orch.phase-5 .orch-hub-glow {
    background: radial-gradient(circle, rgba(5, 150, 105, 0.35) 0%, transparent 70%);
}

.orch-hub-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background 0.6s, box-shadow 0.6s;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.orch-hub-svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.orch.phase-5 .orch-hub-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 0 24px rgba(5, 150, 105, 0.4);
}

.orch-hub-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Goal text */
.orch-goal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 36px);
    font-size: 11px;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.5);
    white-space: nowrap;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s;
}

.orch.phase-1 .orch-goal {
    opacity: 1;
}

.orch.phase-2 .orch-goal,
.orch.phase-3 .orch-goal,
.orch.phase-4 .orch-goal,
.orch.phase-5 .orch-goal {
    opacity: 0;
}

/* Team nodes */
.orch-node {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s, transform 0.5s;
}

.orch.phase-2 .orch-node,
.orch.phase-3 .orch-node,
.orch.phase-4 .orch-node,
.orch.phase-5 .orch-node {
    opacity: 1;
    transform: scale(1);
}

/* Node positions (matching SVG viewBox 700x440) */
.orch-n1 { top: 18.2%; left: 20%; transform-origin: center; }
.orch-n2 { top: 18.2%; left: 80%; transform-origin: center; }
.orch-n3 { top: 81.8%; left: 20%; transform-origin: center; }
.orch-n4 { top: 81.8%; left: 80%; transform-origin: center; }

/* Translate nodes to center on their SVG endpoint */
.orch-n1 { transform: translate(-50%, -50%) scale(0.8); }
.orch-n2 { transform: translate(-50%, -50%) scale(0.8); }
.orch-n3 { transform: translate(-50%, -50%) scale(0.8); }
.orch-n4 { transform: translate(-50%, -50%) scale(0.8); }

.orch.phase-2 .orch-n1,
.orch.phase-2 .orch-n2,
.orch.phase-2 .orch-n3,
.orch.phase-2 .orch-n4,
.orch.phase-3 .orch-n1,
.orch.phase-3 .orch-n2,
.orch.phase-3 .orch-n3,
.orch.phase-3 .orch-n4,
.orch.phase-4 .orch-n1,
.orch.phase-4 .orch-n2,
.orch.phase-4 .orch-n3,
.orch.phase-4 .orch-n4,
.orch.phase-5 .orch-n1,
.orch.phase-5 .orch-n2,
.orch.phase-5 .orch-n3,
.orch.phase-5 .orch-n4 {
    transform: translate(-50%, -50%) scale(1);
}

/* Stagger node entrance */
.orch.phase-2 .orch-n1 { transition-delay: 0s; }
.orch.phase-2 .orch-n2 { transition-delay: 0.15s; }
.orch.phase-2 .orch-n3 { transition-delay: 0.3s; }
.orch.phase-2 .orch-n4 { transition-delay: 0.45s; }

/* Status dot */
.orch-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.8);
    flex-shrink: 0;
    transition: background 0.4s, box-shadow 0.4s;
    box-shadow: 0 0 6px rgba(217, 119, 6, 0.4);
}

.orch.phase-3 .orch-dot {
    background: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.orch.phase-4 .orch-n3 .orch-dot,
.orch.phase-4 .orch-n4 .orch-dot {
    background: rgba(220, 38, 38, 0.9);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
    animation: orchConflictPulse 0.6s infinite;
}

.orch.phase-4 .orch-n1 .orch-dot,
.orch.phase-4 .orch-n2 .orch-dot {
    background: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.orch.phase-5 .orch-dot {
    background: rgba(5, 150, 105, 0.9);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.5);
    animation: none;
}

@keyframes orchConflictPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Person info */
.orch-info {
    display: flex;
    flex-direction: column;
}

.orch-name {
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
}

.orch-role {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 500;
}

/* Agent badge */
.orch-agent-badge {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--agent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s 0.6s, transform 0.3s 0.6s;
}

.orch.phase-2 .orch-agent-badge,
.orch.phase-3 .orch-agent-badge,
.orch.phase-4 .orch-agent-badge,
.orch.phase-5 .orch-agent-badge {
    opacity: 1;
    transform: scale(1);
}

/* Lock badge */
.orch-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -72px);
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.4);
    color: #10b981;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.orch.phase-locked .orch-lock {
    opacity: 1;
}

/* Phase label */
.orch-phase {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    z-index: 4;
    transition: opacity 0.4s;
}

/* Fade transition */
.orch.phase-out {
    opacity: 0;
    transition: opacity 0.8s;
}

.orch {
    transition: opacity 0.8s;
}

/* ========== PactMD Demo Responsive ========== */
@media (max-width: 768px) {
    .pactmd-demo {
        padding: 80px 0;
    }

    .orch-name {
        font-size: 10px;
    }

    .orch-role {
        font-size: 8px;
    }

    .orch-hub-icon {
        width: 36px;
        height: 36px;
    }

    .orch-hub-svg {
        width: 20px;
        height: 20px;
    }

    .orch-agent-badge {
        width: 16px;
        height: 16px;
        font-size: 7px;
    }

    .orch-dot {
        width: 8px;
        height: 8px;
    }

    .orch-phase {
        font-size: 10px;
    }

    .orch-lock {
        font-size: 11px;
        padding: 4px 14px;
        transform: translate(-50%, -60px);
    }
}

@media (max-width: 480px) {
    .orch-info {
        display: none;
    }

    .orch-hub-label {
        font-size: 8px;
    }

    .orch-goal {
        font-size: 9px;
    }
}

/* ========== How It Works ========== */
.how-it-works {
    padding: 120px 0;
    background: var(--color-surface);
}

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

.step {
    padding: 32px;
    background: var(--color-bg);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.step:hover {
    border-color: var(--color-primary);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== Stats ========== */
.stats {
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

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

/* ========== Contact ========== */
.contact {
    padding: 120px 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a1a1aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: var(--color-text-muted);
}

.contact-form select:valid {
    color: var(--color-text);
}

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

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

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu.open {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-visual {
        padding: 32px;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 32px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px;
    }
}
