/* Jobs Portal Landing — v2 UI */
:root {
    --violet: #7c3aed;
    --violet-dark: #5b21b6;
    --violet-light: #a78bfa;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --rose: #f43f5e;
    --amber: #fbbf24;
    --ink: #0f0d1a;
    --ink-soft: #1a1628;
    --slate: #64748b;
    --muted: #94a3b8;
    --line: rgba(15, 13, 26, 0.08);
    --surface: #ffffff;
    --surface-2: #f4f2ff;
    --surface-3: #eef2ff;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --shadow: 0 4px 24px rgba(15, 13, 26, 0.06);
    --shadow-lg: 0 24px 64px rgba(15, 13, 26, 0.12);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; }

/* ── Announcement ── */
.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--ink);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0;
    text-align: center;
}

.announce-bar a {
    color: var(--cyan);
    font-weight: 700;
}

.announce-bar .tag {
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    margin-right: 0.5rem;
    letter-spacing: 0.04em;
}

/* ── Navbar ── */
.site-nav {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
}

.site-nav.is-scrolled {
    padding: 0.55rem 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.site-nav .brand img { height: 38px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: all 0.25s var(--ease);
}

.nav-links a:hover {
    color: var(--violet);
    background: var(--surface-2);
}

.nav-links a.active {
    color: var(--violet);
    background: rgba(124, 58, 237, 0.1);
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--violet) 0%, #4f46e5 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}

.btn-ghost:hover {
    border-color: var(--violet);
    color: var(--violet);
    background: var(--surface-2);
}

.btn-white {
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--ink);
}

.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }

.site-nav .nav-inner { position: relative; }

.nav-toggle {
    display: none;
    background: var(--surface-2);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--ink);
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* ── Hero v2 ── */
.hero-v2 {
    position: relative;
    padding: 8.5rem 0 0;
    overflow: hidden;
}

.hero-v2__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 5% 60%, rgba(244, 63, 94, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #faf8ff 0%, #fff 70%);
    pointer-events: none;
}

.hero-v2__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, black 0%, transparent 85%);
    pointer-events: none;
}

.hero-v2__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 2.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 0.4rem 1rem 0.4rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.hero-pill .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-v2 h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--ink);
}

.hero-v2 h1 .grad {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 50%, var(--rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2__lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--slate);
    max-width: 770px;
    margin: 0 auto 2rem;
}

.hero-v2__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.hero-metric {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
    min-width: 120px;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease);
}

.hero-metric:hover { transform: translateY(-3px); }

.hero-metric .val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.hero-metric .lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 0.25rem;
}

.hero-v2__visual {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
}

.hero-v2__image-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 0;
}

.hero-v2__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ── Stats marquee strip ── */
.stats-strip {
    background: var(--ink);
    padding: 1.25rem 0;
    overflow: hidden;
}

.stats-strip__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.stats-strip__item {
    text-align: center;
    color: #fff;
}

.stats-strip__item .num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cyan);
}

.stats-strip__item .lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ── Sections common ── */
.section { padding: 5.5rem 0; }

.section--alt { background: var(--surface-2); }

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.85rem;
    color: var(--ink);
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate);
}

/* ── Bento modules ── */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.2);
}

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

.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-8 { grid-column: span 8; }

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.bento-icon.violet { background: rgba(124, 58, 237, 0.12); color: var(--violet); }
.bento-icon.cyan { background: rgba(6, 182, 212, 0.12); color: var(--cyan-dark); }
.bento-icon.rose { background: rgba(244, 63, 94, 0.12); color: var(--rose); }
.bento-icon.amber { background: rgba(251, 191, 36, 0.15); color: #d97706; }
.bento-icon.indigo { background: rgba(79, 70, 229, 0.12); color: #4f46e5; }
.bento-icon.emerald { background: rgba(16, 185, 129, 0.12); color: #059669; }

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-list li {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    background: var(--surface-2);
    border-radius: 999px;
    color: var(--ink);
}

/* ── Split feature ── */
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-feature.reverse { direction: rtl; }
.split-feature.reverse > * { direction: ltr; }

.feature-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
}

.feature-point:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--shadow);
}

.feature-point .ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--surface-2);
    color: var(--violet);
    font-size: 1rem;
}

.feature-point h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.feature-point p {
    font-size: 0.85rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
}

.media-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    background: var(--surface-3);
}

.media-frame .bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1rem;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
    font-size: 0.75rem;
    color: var(--muted);
}

.media-frame .bar .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.media-frame img {
    width: 100%;
    padding: 1rem;
    background: #f1f2f6;
}

/* ── Integration cards ── */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.int-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.35s var(--ease);
}

.int-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.25);
}

.int-card .ico-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--surface-2);
    color: var(--violet);
}

.int-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.int-card p {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.55;
    margin: 0;
}

/* ── Admin grid ── */
.admin-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.admin-tile {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    transition: all 0.3s var(--ease);
}

.admin-tile:hover {
    background: var(--surface-2);
    border-color: rgba(124, 58, 237, 0.2);
}

.admin-tile i {
    color: var(--violet);
    font-size: 1.1rem;
    margin-top: 2px;
}

.admin-tile h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.admin-tile p {
    font-size: 0.8rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.45;
}

.admin-showcase {
    margin-top: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.admin-showcase .bar {
    background: var(--ink-soft);
    color: rgba(255,255,255,0.7);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.admin-showcase img { width: 100%; background: #f1f2f6; padding: 1rem; }

/* ── Gateways ── */
.gateway-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.gateway-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    transition: all 0.3s var(--ease);
}

.gateway-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--violet-light);
}

.gateway-item img {
    max-height: 32px;
    max-width: 100px;
    object-fit: contain;
}

/* ── Demo cards ── */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.demo-box {
    border-radius: var(--radius);
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.demo-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 100%);
    pointer-events: none;
}

.demo-box.admin { background: linear-gradient(145deg, #1e1b4b, #4f46e5); }
.demo-box.seeker { background: linear-gradient(145deg, #0e7490, #06b6d4); }
.demo-box.employer { background: linear-gradient(145deg, #156a43, #17d27c); }

.demo-box h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.demo-box .sub {
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.cred-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.cred-box a {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    word-break: break-all;
}

.cred-box code {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--amber);
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.price-card {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.35s var(--ease);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--violet);
    background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);
}

.price-card .badge-pop {
    display: inline-block;
    background: linear-gradient(135deg, var(--violet), #4f46e5);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.price-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.price-card .sub { font-size: 0.82rem; color: var(--slate); }

.price-card .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0 0.25rem;
}

.price-card .amount sup { font-size: 1.25rem; top: -0.5em; }

.price-card .period { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.price-list li {
    font-size: 0.88rem;
    padding: 0.4rem 0;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.45;
    color: var(--ink);
}

.price-list li i { color: var(--violet); margin-top: 3px; font-size: 0.75rem; }

.price-card .btn { width: 100%; }

/* ── Steps ── */
.steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(124, 58, 237, 0.2);
}

.step-card .num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--violet);
    letter-spacing: 0.08em;
}

.step-card .ico {
    width: 48px;
    height: 48px;
    margin: 0.75rem auto;
    border-radius: 50%;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    font-size: 1.1rem;
}

.step-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.step-card p {
    font-size: 0.78rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

/* ── CTA ── */
.cta-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #312e81 50%, var(--violet-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-banner .actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
}

.cta-banner .btn-ghost {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.cta-banner .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ── Mobile App Section ── */
.app-section {
    background: #34354a;
    padding: 5rem 0 0;
    color: #fff;
    overflow: hidden;
}

.app-section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.app-section__head .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(6, 182, 212, 0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.app-section__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: #fff;
}

.app-section__head p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.app-section__visual {
    width: 100%;
    line-height: 0;
    margin-bottom: 3rem;
}

.app-section__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.app-section__footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem 1rem;
}

.app-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.app-chip {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
}

.app-chip i { color: var(--cyan); margin-right: 0.35rem; }

.app-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.app-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-stats .item .val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}

.app-stats .item .lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.25rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--ink-soft);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
}

.site-footer .brand img {
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    display: inline-block;
}

.footer-pay-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1rem;
    text-align: center;
}

.footer-pay-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-pay-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    height: 48px;
    display: flex;
    align-items: center;
}

.footer-pay-item img {
    max-height: 28px;
    max-width: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-copy {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── WhatsApp ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 1040;
    transition: transform 0.3s var(--ease);
}

.wa-float:hover {
    color: #fff;
    transform: scale(1.08);
}

/* ── Counter ── */
.counter { display: inline; }

/* ── Responsive ── */
@media (max-width: 1199px) {
    .bento-card.span-6,
    .bento-card.span-8 { grid-column: span 12; }
    .bento-card.span-4 { grid-column: span 6; }
    .integrations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .site-nav { top: 34px; }

    .nav-links-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links-wrap.open { display: block; }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links a { padding: 0.75rem 1rem; }

    .nav-actions {
        flex-direction: column;
        margin-top: 0.75rem;
    }

    .nav-toggle { display: flex; align-items: center; justify-content: center; }

    .split-feature { grid-template-columns: 1fr; }
    .split-feature.reverse { direction: ltr; }

    .admin-bento { grid-template-columns: repeat(2, 1fr); }
    .demo-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .integrations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .hero-v2 { padding-top: 6.5rem; }
    .hero-v2__visual { padding: 0 0.5rem 2rem; }
    .hero-v2__image-wrap { border-radius: var(--radius); }
    .bento-card.span-4 { grid-column: span 12; }
    .admin-bento { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
}
