/* ═══════════════════════════════════════════════════════════════
   CVEJob.com — Landing Page Styles
   Premium hero, features, templates, how-it-works, and CTA
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero Section ─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-32) 0 var(--space-16);
    background: var(--bg-primary);
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 60%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    animation: heroGradientShift 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroGradientShift {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) translateY(-20px);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05) translateY(10px);
        opacity: 1;
    }
}

/* Grid overlay for depth */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black, transparent);
    z-index: 0;
}

/* Floating shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-600), transparent 70%);
    top: -10%;
    right: -5%;
    animation: shapeFloat1 18s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-600), transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: shapeFloat2 22s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--cyan-400), transparent 70%);
    top: 40%;
    right: 15%;
    animation: shapeFloat3 15s ease-in-out infinite;
    opacity: 0.2;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--emerald-400), transparent 70%);
    top: 20%;
    left: 10%;
    animation: shapeFloat4 20s ease-in-out infinite;
    opacity: 0.15;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--amber-400), transparent 70%);
    bottom: 30%;
    right: 30%;
    animation: shapeFloat5 16s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 60px) rotate(5deg); }
    66% { transform: translate(30px, -30px) rotate(-3deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -40px) rotate(-5deg); }
    66% { transform: translate(-30px, 50px) rotate(3deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 35px); }
}

@keyframes shapeFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -25px); }
}

@keyframes shapeFloat5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary-300);
    margin-bottom: var(--space-8);
    backdrop-filter: blur(12px);
    letter-spacing: 0.03em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, var(--text-7xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    max-width: 800px;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: var(--space-10);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn-primary {
    position: relative;
    box-shadow:
        0 4px 15px rgba(99, 102, 241, 0.3),
        0 0 60px rgba(99, 102, 241, 0.1);
}

.hero-btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-primary);
    z-index: -1;
    filter: blur(16px);
    opacity: 0.4;
    transition: opacity var(--duration-normal) var(--ease-default);
}

.hero-btn-primary:hover::after {
    opacity: 0.6;
}

/* Hero fade */
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 1;
    pointer-events: none;
}

/* ─── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-6) var(--space-10);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    position: relative;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 0;
    right: -1.2em;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-glass), transparent);
}


/* ─── Shared Section Styles ────────────────────────────────────── */
.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary-300);
    margin-bottom: var(--space-6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, var(--text-5xl));
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ─── Features Grid ────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.feature-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-default);
    position: relative;
    overflow: hidden;
}

/* Gradient shimmer on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(99, 102, 241, 0.05) 50%, transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-default);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.05);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--icon-color, var(--primary-400));
    margin-bottom: var(--space-5);
    transition: all var(--duration-normal) var(--ease-default);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.feature-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.feature-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}


/* ─── Templates Grid ───────────────────────────────────────────── */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.templates-grid-12 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.template-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-default);
    background: var(--bg-card);
    transition: all var(--duration-normal) var(--ease-default);
}

.template-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-500);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(99, 102, 241, 0.08);
}

/* Template preview area */
.template-preview {
    position: relative;
    padding: var(--space-6);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.templates-grid-12 .template-preview {
    min-height: 220px;
    padding: var(--space-4);
}

.template-preview .badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    z-index: 2;
}

/* ─── CV Mock-up Styles (pure CSS mini-CV) ─────────────────────── */
.cv-mock {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 210 / 297;
    background: #fff;
    border-radius: 4px;
    padding: 14px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--duration-normal) var(--ease-default);
}

.template-card:hover .cv-mock {
    transform: scale(1.05);
}

/* CV mock lines */
.cv-line {
    border-radius: 2px;
    height: 4px;
}

.cv-line-name {
    width: 60%;
    height: 6px;
    background: #2d3748;
}

.cv-line-title {
    width: 45%;
    height: 4px;
    background: #a0aec0;
}

.cv-line-heading {
    width: 35%;
    height: 5px;
    background: #4f46e5;
    margin-bottom: 2px;
}

.cv-line-full {
    width: 100%;
    background: #e2e8f0;
}

.cv-line-long {
    width: 85%;
    background: #e2e8f0;
}

.cv-line-medium {
    width: 65%;
    background: #e2e8f0;
}

.cv-line-short {
    width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
}

.cv-line-tiny {
    width: 50%;
    height: 3px;
    background: #a0aec0;
}

/* CV Avatar */
.cv-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
    flex-shrink: 0;
}

.cv-avatar-sm {
    width: 22px;
    height: 22px;
    margin: 0 auto var(--space-2);
}

/* CV header block */
.cv-header-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.cv-name-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cv-divider-line {
    height: 1px;
    background: #e2e8f0;
}

.cv-section-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cv-spacer {
    height: 4px;
}

/* ─── Template: Classic ────────────────────────────────────────── */
.template-classic {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* ─── Template: Modern (sidebar layout) ────────────────────────── */
.template-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.cv-mock-sidebar {
    flex-direction: row;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.cv-sidebar {
    width: 35%;
    background: #2d3748;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cv-dots {
    display: flex;
    gap: 3px;
    margin: 4px 0;
}

.cv-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.cv-dots span:nth-child(-n+3) {
    background: var(--primary-400);
}

.cv-main {
    flex: 1;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ─── Template: Creative Bold ──────────────────────────────────── */
.template-creative {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
}

.cv-mock-creative {
    padding: 0;
    overflow: hidden;
}

.cv-accent-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500), var(--cyan-400));
}

.cv-header-creative {
    padding: 10px 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cv-color-strip {
    display: flex;
    height: 3px;
    margin: 0 14px 4px;
}

.cv-color-strip span {
    flex: 1;
}

.cv-color-strip span:nth-child(1) { background: var(--primary-500); }
.cv-color-strip span:nth-child(2) { background: var(--accent-500); }
.cv-color-strip span:nth-child(3) { background: var(--cyan-400); }

.cv-mock-creative .cv-section-block {
    padding: 0 14px;
    margin-bottom: 4px;
}

/* ─── Template: Executive ──────────────────────────────────────── */
.template-executive {
    background: linear-gradient(135deg, #1a1a2e 0%, #1a3a2e 100%);
}

.cv-mock-executive {
    padding: 10px 14px;
}

.cv-exec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.cv-exec-contacts {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
}

.cv-exec-divider {
    height: 2px;
    background: linear-gradient(90deg, #2d3748, #4f46e5, #2d3748);
    margin-bottom: 8px;
}

.cv-exec-columns {
    display: flex;
    gap: 10px;
}

.cv-exec-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Template info area */
.template-info {
    padding: var(--space-5);
    border-top: 1px solid var(--border-default);
}

.template-info h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.template-info p {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.templates-cta {
    text-align: center;
    margin-top: var(--space-12);
}


/* ─── How It Works ─────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: var(--space-8) var(--space-4);
}

/* Step number */
.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-lg);
    border-radius: 50%;
    margin: 0 auto var(--space-6);
    position: relative;
    z-index: 2;
    box-shadow:
        0 4px 15px rgba(99, 102, 241, 0.3),
        0 0 30px rgba(99, 102, 241, 0.1);
}

/* Connecting line between steps */
.step-connector {
    position: absolute;
    top: calc(var(--space-8) + 20px);
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    z-index: 1;
    opacity: 0.4;
}

/* Remove connector on last step — handled in HTML (no connector div) */

.step-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    color: var(--primary-400);
    margin: 0 auto var(--space-5);
    transition: all var(--duration-normal) var(--ease-default);
}

.step-item:hover .step-icon-wrap {
    background: var(--bg-glass-strong);
    border-color: var(--primary-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.step-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ─── Final CTA Section ────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: var(--space-24) 0;
    margin: var(--space-12) 0 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(6, 182, 212, 0.03) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, var(--text-5xl));
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 480px;
}

.cta-btn {
    margin-bottom: var(--space-4);
}

.cta-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
}


/* ─── Scroll Reveal Animation ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in grids */
.features-grid .reveal:nth-child(1) { transition-delay: 0.0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.templates-grid .reveal:nth-child(1) { transition-delay: 0.0s; }
.templates-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.templates-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.templates-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.templates-grid .reveal:nth-child(5) { transition-delay: 0.05s; }
.templates-grid .reveal:nth-child(6) { transition-delay: 0.1s; }
.templates-grid .reveal:nth-child(7) { transition-delay: 0.15s; }
.templates-grid .reveal:nth-child(8) { transition-delay: 0.2s; }
.templates-grid .reveal:nth-child(9) { transition-delay: 0.1s; }
.templates-grid .reveal:nth-child(10) { transition-delay: 0.15s; }
.templates-grid .reveal:nth-child(11) { transition-delay: 0.2s; }
.templates-grid .reveal:nth-child(12) { transition-delay: 0.25s; }

.steps-grid .reveal:nth-child(1) { transition-delay: 0.0s; }
.steps-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.steps-grid .reveal:nth-child(3) { transition-delay: 0.30s; }


/* ─── Responsive ───────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .templates-grid,
    .templates-grid-12 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: var(--space-24) 0 var(--space-12);
        min-height: auto;
    }
    .hero-title {
        font-size: var(--text-4xl);
    }
    .hero-subtitle {
        font-size: var(--text-base);
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }
    .stats-bar {
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-5) var(--space-6);
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    .stat-suffix {
        position: static;
        display: inline;
    }
    .stat-item {
        flex-direction: row;
        gap: var(--space-2);
        flex-wrap: wrap;
        justify-content: center;
    }
    .section {
        padding: var(--space-16) 0;
    }
    .section-header {
        margin-bottom: var(--space-10);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .templates-grid,
    .templates-grid-12 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }
    .template-preview {
        min-height: 240px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        max-width: 400px;
        margin: 0 auto;
    }
    .step-connector {
        display: none;
    }
    .cta-section {
        padding: var(--space-16) 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }
    .hero-badge {
        font-size: 0.65rem;
    }
    .cv-mock {
        max-width: 150px;
    }
}
