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

:root {
    --ink:        #0B0F19;
    --ink-soft:   #1A2236;
    --ink-border: #1E2A42;
    --paper:      #F5F2EB;
    --paper-soft: #EDEAE2;
    --surface:    #FFFFFF;
    --amber:      #F59E0B;
    --amber-dark: #B45309;
    --amber-glow: rgba(245, 158, 11, 0.15);
    --text:       #0B0F19;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
.display { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.headline { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.subheadline { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; color: var(--text-muted); }
.overline { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── Layout ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--amber);
    color: var(--ink);
}
.btn-primary:hover { background: var(--amber-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-ghost-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--paper-soft);
}
.btn-ghost-dark:hover { border-color: var(--ink); background: var(--paper-soft); }
.btn-disabled {
    background: var(--paper-soft);
    color: var(--text-muted);
    cursor: default;
    border-color: transparent;
    pointer-events: none;
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    padding: 12px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo img {
    height: 34px;
    width: auto;
}
.nav-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lang-toggle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}
.lang-toggle:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.nav-signin {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}
.nav-signin:hover { color: #fff; }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    background: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-text { }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    color: var(--amber);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 24px;
}
.hero-headline .accent { color: var(--amber); }
.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    gap: 32px;
}
.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

/* Schedule mockup */
.hero-visual {
    position: relative;
}
.mockup-window {
    background: #0E1B2E;
    border: 1px solid var(--ink-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}
.mockup-titlebar {
    background: #0A1424;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--ink-border);
}
.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.mockup-dot-red    { background: #FF5F57; }
.mockup-dot-yellow { background: #FEBC2E; }
.mockup-dot-green  { background: #28C840; }
.mockup-url {
    margin-left: 12px;
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    font-family: monospace;
}
.mockup-body {
    padding: 16px;
    min-height: 320px;
}
.mockup-header-row {
    display: grid;
    grid-template-columns: 110px repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}
.mockup-day-label {
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
    padding: 4px 0;
    text-transform: uppercase;
}
.mockup-emp-col { }
.mockup-row {
    display: grid;
    grid-template-columns: 110px repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}
.mockup-emp-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    padding: 8px 6px;
    display: flex;
    align-items: center;
}
.mockup-cell {
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mockup-shift {
    border-radius: 4px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    padding: 2px 4px;
    text-align: center;
    line-height: 1.2;
}
.mockup-shift-amber  { background: rgba(245,158,11,0.25); color: #FCD34D; }
.mockup-shift-blue   { background: rgba(59,130,246,0.25); color: #93C5FD; }
.mockup-shift-teal   { background: rgba(20,184,166,0.25); color: #5EEAD4; }
.mockup-shift-violet { background: rgba(139,92,246,0.25); color: #C4B5FD; }
.mockup-shift-rose   { background: rgba(244,63,94,0.22);  color: #FDA4AF; }
.mockup-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(11,15,25,0.6);
    backdrop-filter: blur(4px);
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: var(--radius-md);
}
.mockup-float-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--amber);
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    max-width: 160px;
    line-height: 1.4;
}
.mockup-float-badge-num {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    letter-spacing: -0.02em;
}
.mockup-float-badge-2 {
    position: absolute;
    top: -18px;
    left: -24px;
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
    border: 1px solid var(--paper-soft);
}
.float-icon {
    font-size: 1.2rem;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
    background: var(--paper);
    padding: 48px 0;
    border-top: 1px solid var(--paper-soft);
    border-bottom: 1px solid var(--paper-soft);
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.trust-item-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
}
.trust-item-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--paper-soft);
}

/* ─── FEATURES ───────────────────────────────────────────── */
.features {
    background: var(--surface);
    padding: 100px 0;
}
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    background: var(--amber-glow);
    color: var(--amber-dark);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-intro .headline {
    color: var(--ink);
    margin-bottom: 16px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--paper-soft);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--ink);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--amber);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.feature-body {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.steps {
    background: var(--ink);
    padding: 100px 0;
}
.steps .section-tag { background: var(--amber-glow); color: var(--amber); }
.steps .headline { color: #fff; }
.steps .subheadline { color: rgba(255,255,255,0.5); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--amber) 0%, rgba(245,158,11,0.3) 100%);
    z-index: 0;
}
.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
}
.step-num-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(245,158,11,0.12), 0 0 0 12px rgba(245,158,11,0.06);
}
.step-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.step-body {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* ─── SCREENSHOT PLACEHOLDER ────────────────────────────── */
.screenshot-section {
    background: var(--paper);
    padding: 100px 0;
}
.screenshot-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.screenshot-text .section-tag { margin-bottom: 16px; }
.screenshot-text .headline { color: var(--ink); margin-bottom: 16px; }
.screenshot-text .subheadline { margin-bottom: 32px; }
.screenshot-placeholder {
    background: var(--paper-soft);
    border: 2px dashed var(--paper-soft);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}
.screenshot-placeholder-icon { font-size: 2.5rem; opacity: 0.4; }

/* ─── PRICING ────────────────────────────────────────────── */
.pricing {
    background: var(--surface);
    padding: 100px 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: start;
}
.pricing-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 2px solid transparent;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.popular {
    background: var(--ink);
    border-color: var(--amber);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-plan-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}
.pricing-card.popular .pricing-plan-name { color: #fff; }
.pricing-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--amber-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pricing-tagline-light { color: var(--amber); }
.pricing-best-for {
    background: var(--paper-soft);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.pricing-best-for-light {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
}
.pricing-best-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 3px;
}
.pricing-best-for-light .pricing-best-label { color: var(--amber); }
.pricing-plan-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}
.pricing-card.popular .pricing-plan-desc { color: rgba(255,255,255,0.5); }
.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}
.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}
.pricing-card.popular .pricing-currency { color: #fff; }
.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
}
.pricing-card.popular .pricing-amount { color: #fff; }
.pricing-period {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.pricing-card.popular .pricing-period { color: rgba(255,255,255,0.4); }
.pricing-divider {
    height: 1px;
    background: var(--paper-soft);
    margin-bottom: 24px;
}
.pricing-card.popular .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text);
}
.pricing-card.popular .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(245,158,11,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.pricing-check svg { width: 10px; height: 10px; color: var(--amber); }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #1F2A42 0%, var(--ink) 60%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.cta-banner-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-banner .headline { color: #fff; margin-bottom: 16px; }
.cta-banner .subheadline { color: rgba(255,255,255,0.5); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: var(--ink);
    padding: 64px 0 32px;
    border-top: 1px solid var(--ink-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 16px; }
.footer-brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}
.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-col-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--ink-border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}
.footer-made {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content { gap: 48px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; }
    .mockup-float-badge-2 { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .screenshot-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .trust-divider { display: none; }
    .trust-inner { gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .mockup-row .mockup-emp-name { display: none; }
    .mockup-header-row, .mockup-row { grid-template-columns: repeat(7, 1fr); }
}
