/* ==============================================
   İK İşleri — Corporate Landing Page
   Design: Navy + Cream + Crimson
   Fonts: Cormorant Garamond + DM Sans
   ============================================== */

:root {
    --navy:        #0d1b2a;
    --navy-mid:    #162032;
    --navy-light:  #1e2d42;
    --cream:       #f7f4ef;
    --cream-dark:  #ede9e0;
    --white:       #ffffff;
    --crimson:     #c0392b;
    --crimson-dk:  #96281b;
    --gold:        #c9943a;
    --text-navy:   #0d1b2a;
    --text-mid:    #3a4d63;
    --text-muted:  #6b7f96;
    --border:      #ddd9d0;
    --border-lt:   #ede9e0;
    --success:     #2d7d5a;
    --warn:        #c9943a;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-navy);
    background: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.1;
}

em { font-style: italic; font-weight: 400; }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 var(--border);
    backdrop-filter: blur(12px);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link { color: var(--text-navy); }

.navbar.scrolled .nav-divider { background: var(--border); }

.navbar.scrolled .mobile-menu-toggle span { background: var(--text-navy); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.25);
    margin: 0 12px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: white; background: rgba(255,255,255,0.08); }

.navbar.scrolled .nav-link:hover { background: var(--cream); color: var(--navy); }

.nav-cta-ghost {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
}

.nav-cta-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); }

.navbar.scrolled .nav-cta-ghost { color: var(--text-navy); border-color: var(--border); }

.navbar.scrolled .nav-cta-ghost:hover { background: var(--cream); }

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 6px;
    background: var(--crimson);
    margin-left: 4px;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--crimson-dk); }

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 72% 18%, rgba(192,57,43,0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 8% 82%, rgba(201,148,58,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero .container {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--crimson);
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(1.5); }
}

.hero-title {
    font-size: 68px;
    color: white;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-title em { color: var(--gold); }

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 64px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--crimson);
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--crimson);
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--crimson-dk); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: white; border-bottom-color: rgba(255,255,255,0.6); }

.hero-stats {
    display: flex;
    align-items: center;
}

.stat-item { padding: 0 32px 0 0; }
.stat-item:first-child { padding-left: 0; }

.stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    margin-right: 32px;
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}

/* App Mockup */
.hero-visual { position: relative; }

.app-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.07),
        0 40px 100px rgba(0,0,0,0.55),
        0 8px 20px rgba(0,0,0,0.25);
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.5s ease;
}

.mockup-titlebar {
    height: 36px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    border-bottom: 1px solid #ddd;
}

.titlebar-dots { display: flex; gap: 5px; }

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.titlebar-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #999;
    background: white;
    border-radius: 4px;
    padding: 2px 8px;
    border: 1px solid #ddd;
}

.mockup-body {
    display: flex;
    height: 360px;
}

.mockup-sidebar {
    width: 52px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    gap: 4px;
}

.sidebar-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.sidebar-item {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item.active  { background: rgba(192,57,43,0.25); color: #e87e73; }
.sidebar-item:hover:not(.active) { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65); }

.mockup-main {
    flex: 1;
    padding: 16px;
    background: #f8f9fb;
    overflow: hidden;
}

.mockup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.mockup-page-title { font-size: 13px; font-weight: 600; color: var(--navy); }
.mockup-page-sub   { font-size: 11px; color: #999; margin-top: 2px; }

.mockup-add-btn {
    font-size: 10px;
    font-weight: 600;
    color: white;
    background: var(--crimson);
    padding: 5px 10px;
    border-radius: 4px;
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.mockup-stat-card {
    background: white;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #eee;
}

.msc-label { font-size: 9px; color: #aaa; margin-bottom: 3px; }
.msc-value { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1; }
.msc-trend { font-size: 9px; color: #aaa; margin-top: 3px; }
.trend-up   { color: var(--success) !important; }
.trend-warn { color: var(--warn)    !important; }

.mockup-table {
    background: white;
    border-radius: 6px;
    border: 1px solid #eee;
    overflow: hidden;
}

.mt-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 7px 12px;
    font-size: 9px;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid #f2f2f2;
}

.mt-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 8px 12px;
    align-items: center;
    border-bottom: 1px solid #f8f8f8;
}

.mt-row:last-child { border-bottom: none; }

.mt-person { display: flex; align-items: center; gap: 8px; }

.mt-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.mt-name { font-size: 10px; font-weight: 600; color: var(--navy); }
.mt-role { font-size: 9px; color: #bbb; }
.mt-dept { font-size: 9px; color: #777; }

.mt-badge {
    font-size: 8px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
}

.badge-active { background: #d4f5e5; color: var(--success); }
.badge-leave  { background: #fef3e0; color: var(--warn); }

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.1);
}

.card-1 { bottom: -16px; left: -44px; animation: float 4s ease-in-out infinite; }
.card-2 { top: 36px; right: -48px; animation: float 4s ease-in-out 2s infinite; }

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

.fc-icon { font-size: 22px; }
.fc-title { font-size: 12px; font-weight: 600; color: var(--navy); }
.fc-sub   { font-size: 11px; color: #aaa; margin-top: 2px; }

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.25);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
    animation: scroll-anim 2.2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.trust-text {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.trust-logo {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    opacity: 0.45;
}

/* ---- SECTION COMMONS ---- */
.section-intro { max-width: 560px; margin-bottom: 72px; }

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--crimson);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag-gold { color: var(--gold); }

.section-title {
    font-size: 52px;
    color: var(--text-navy);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-sub {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ---- FEATURES ---- */
.features {
    padding: 120px 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.feature-card {
    background: white;
    padding: 40px 36px;
    transition: background 0.25s;
    position: relative;
}

.feature-card:hover { background: #fdf9f5; }

.feature-card-dark              { background: var(--navy); }
.feature-card-dark:hover        { background: var(--navy-mid); }
.feature-card-dark .feature-num { color: rgba(255,255,255,0.12); }
.feature-card-dark .feature-icon-wrap {
    color: var(--gold);
    border-color: rgba(201,148,58,0.2);
    background: rgba(201,148,58,0.08);
}
.feature-card-dark .feature-title { color: white; }
.feature-card-dark .feature-desc  { color: rgba(255,255,255,0.5); }
.feature-card-dark .feature-tag   {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.08);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
}

.feature-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 20px;
}

.feature-footer { display: flex; flex-wrap: wrap; gap: 6px; }

.feature-tag {
    font-size: 11px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 8px;
}

/* ---- PRICING ---- */
.pricing {
    padding: 120px 0;
    background: white;
}

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

.pricing-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    background: white;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
    border-color: #aab;
    box-shadow: 0 8px 32px rgba(13,27,42,0.07);
}

.pricing-card-featured {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.02);
}

.pricing-card-featured:hover { box-shadow: 0 16px 48px rgba(13,27,42,0.25); }

.pc-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crimson);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.pc-plan {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 16px;
}

.pricing-card-featured .pc-plan { color: rgba(255,255,255,0.55); }

.pc-amount {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--text-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card-featured .pc-amount { color: white; }

.pc-period { font-size: 13px; color: var(--text-muted); }
.pricing-card-featured .pc-period { color: rgba(255,255,255,0.4); }

.pc-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0 24px;
}

.pricing-card-featured .pc-divider { background: rgba(255,255,255,0.1); }

.pc-features { list-style: none; margin-bottom: 32px; }

.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border-lt);
}

.pc-features li:last-child { border-bottom: none; }
.pricing-card-featured .pc-features li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.06); }

.pc-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pc-btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.pc-btn-outline:hover { background: var(--navy); color: white; }

.pc-btn-white { background: white; color: var(--navy); }
.pc-btn-white:hover { background: var(--cream); }

/* ---- CTA ---- */
.cta-section {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-title { font-size: 52px; color: white; margin-bottom: 16px; }
.cta-title em { color: var(--gold); }

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.cta-ghost {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color 0.2s, border-color 0.2s;
}

.cta-ghost:hover { color: white; border-bottom-color: rgba(255,255,255,0.5); }

.cta-orbs { position: relative; width: 180px; height: 180px; flex-shrink: 0; }

.orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}

.orb-1 { width: 180px; height: 180px; top: 0; left: 0; }
.orb-2 {
    width: 120px; height: 120px; top: 30px; left: 30px;
    border-color: rgba(192,57,43,0.25);
    background: rgba(192,57,43,0.04);
}
.orb-3 {
    width: 60px; height: 60px; top: 60px; left: 60px;
    background: rgba(192,57,43,0.1);
    border-color: rgba(192,57,43,0.35);
}

/* ---- FOOTER ---- */
.footer {
    background: #07111d;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
    margin-bottom: 28px;
}

.footer-social { display: flex; gap: 8px; }

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover { background: var(--crimson); border-color: var(--crimson); color: white; }

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    justify-self: end;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

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

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.22); }

/* ---- SCROLL ANIMATIONS ---- */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .hero-title { font-size: 52px; }
    .hero-description { max-width: 100%; }
    .app-mockup { transform: none; max-width: 560px; margin: 0 auto; }
    .card-1, .card-2 { display: none; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card-featured { transform: none; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-orbs { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .footer-links-grid { justify-self: start; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 6px;
        border-top: 1px solid rgba(255,255,255,0.07);
    }
    .nav-menu.open { display: flex; }
    .mobile-menu-toggle { display: flex; }
    .nav-divider { display: none; }
    .nav-cta, .nav-cta-ghost { text-align: center; padding: 12px; }
    .hero-title { font-size: 40px; }
    .trust-bar .container { flex-direction: column; gap: 16px; }
    .trust-logos { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 36px; }
    .cta-title { font-size: 36px; }
    .footer-links-grid { grid-template-columns: repeat(2,1fr); }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .stat-sep { display: none; }
    .stat-item { padding: 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 32px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .section-title { font-size: 30px; }
    .footer-links-grid { grid-template-columns: 1fr; }
}
