/* ShalaConnect — Public site design system */

:root {
    --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --brand: #4f46e5;
    --brand-light: #6366f1;
    --brand-dark: #3730a3;
    --accent: #06b6d4;
    --accent-2: #8b5cf6;
    --success: #059669;
    --success-bg: #d1fae5;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --surface-3: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --dark: #0b1120;
    --dark-2: #131c31;
    --dark-3: #1e293b;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-brand: 0 12px 32px rgba(79, 70, 229, 0.28);
    --header-h: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--surface-2);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.125rem; }

.lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 56ch;
    line-height: 1.7;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    margin-bottom: 12px;
}

.kicker::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--brand), var(--accent-2));
}

/* ── Layout ── */
.container {
    width: min(var(--max-w), 92%);
    margin-inline: auto;
}

.section-pad { padding: 80px 0; }

.section-pad--sm { padding: 56px 0; }

/* ── Header ── */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    height: var(--header-h);
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent-2) 100%);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-brand);
    flex-shrink: 0;
}

.brand__mark svg { width: 20px; height: 20px; color: #fff; }

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

.nav-desktop a {
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
    color: var(--brand-dark);
    background: #eef2ff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
    border-top: 1px solid var(--border);
    overflow-y: auto;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
    text-decoration: none;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.nav-mobile a.is-active,
.nav-mobile a:hover { background: #eef2ff; color: var(--brand-dark); }

.nav-mobile .btn { margin-top: 12px; justify-content: center; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: linear-gradient(135deg, var(--brand-light), var(--accent-2));
    color: #fff;
    box-shadow: var(--shadow-brand);
}

.btn--primary:hover { box-shadow: 0 16px 40px rgba(79, 70, 229, 0.35); }

.btn--ghost {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
}

.btn--ghost:hover { background: var(--surface-3); border-color: #cbd5e1; }

.btn--dark-ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #e2e8f0;
}

.btn--dark-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn--lg { padding: 14px 28px; font-size: 0.9375rem; }

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 64px) 0 80px;
    background: var(--dark);
    color: #fff;
    overflow: hidden;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 70% -10%, rgba(99, 102, 241, 0.45), transparent),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(ellipse 40% 40% at 90% 60%, rgba(6, 182, 212, 0.2), transparent);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c7d2fe;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #a5b4fc, #c4b5fd, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__lead {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 48ch;
    line-height: 1.75;
}

.hero__visual {
    position: relative;
}

.hero__dashboard {
    background: rgba(19, 28, 49, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.hero__dash-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
}

.hero__dash-dot--r { background: #f87171; }
.hero__dash-dot--y { background: #fbbf24; }
.hero__dash-dot--g { background: #34d399; }

.hero__dash-title {
    margin-left: 8px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.hero__stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.hero__stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.hero__stat--accent .hero__stat-val { color: #a5b4fc; }

.hero__bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 64px;
    padding: 0 4px;
}

.hero__bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--brand-light), rgba(99, 102, 241, 0.3));
    animation: bar-grow 1.2s var(--ease) both;
}

.hero__bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.hero__bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.hero__bar:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.hero__bar:nth-child(4) { height: 85%; animation-delay: 0.4s; }
.hero__bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
.hero__bar:nth-child(6) { height: 95%; animation-delay: 0.6s; background: linear-gradient(180deg, #34d399, rgba(52, 211, 153, 0.3)); }
.hero__bar:nth-child(7) { height: 75%; animation-delay: 0.7s; }

@keyframes bar-grow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); }
}

/* ── Logo strip ── */
.logo-strip {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.logo-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.logo-strip__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.logo-strip__items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    align-items: center;
}

.logo-strip__item {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: -0.01em;
}

/* ── Section blocks ── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header .lead { margin-inline: auto; }

/* ── Feature cards ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #c7d2fe;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.feature-card__icon--indigo { background: #eef2ff; color: var(--brand); }
.feature-card__icon--violet { background: #f5f3ff; color: #7c3aed; }
.feature-card__icon--cyan { background: #ecfeff; color: #0891b2; }
.feature-card__icon--emerald { background: #ecfdf5; color: #059669; }
.feature-card__icon--amber { background: #fffbeb; color: #d97706; }
.feature-card__icon--rose { background: #fff1f2; color: #e11d48; }

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9375rem; color: var(--text-secondary); }

/* ── Steps ── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px 28px;
}

.step-card::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #e0e7ff;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: 0.9375rem; color: var(--text-secondary); }

.step-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 24px;
    height: 2px;
    background: var(--border);
    display: none;
}

/* ── Role cards ── */
.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.role-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent-2));
}

.role-card h3 { margin-bottom: 16px; }

.check-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 99px;
    background: #eef2ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2.5-2.5a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    pointer-events: none;
}

.pricing-card h2 { color: #fff; margin-bottom: 12px; }
.pricing-card p { color: #94a3b8; }

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 24px 0;
}

.price-tag__amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
}

.price-tag__unit {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #6ee7b7;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ── CTA banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent-2) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.cta-banner__inner { position: relative; }

.cta-banner h2 {
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
    margin-inline: auto;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 28px;
    font-size: 1.0625rem;
}

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

.cta-banner .btn--ghost:hover { background: rgba(255, 255, 255, 0.25); }

.cta-banner .btn-row { justify-content: center; margin-top: 0; }

/* ── Page hero (inner pages) ── */
.page-hero {
    padding: calc(var(--header-h) + 48px) 0 56px;
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero__mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% -20%, rgba(99, 102, 241, 0.35), transparent);
    pointer-events: none;
}

.page-hero__inner { position: relative; max-width: 680px; }

.page-hero h1 { color: #fff; margin-bottom: 16px; }

.page-hero .lead { color: #94a3b8; }

/* ── Content cards (inner pages) ── */
.content-section { padding: 64px 0; }

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.info-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.info-card--highlight {
    background: linear-gradient(145deg, #f8faff, #eef2ff);
    border-color: #c7d2fe;
}

.info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eef2ff;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--brand);
}

.info-card h3 { margin-bottom: 8px; }
.info-card p { font-size: 0.9375rem; color: var(--text-secondary); }

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.values-list {
    list-style: none;
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.values-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.values-list__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eef2ff;
    color: var(--brand);
    font-weight: 800;
    font-size: 0.875rem;
    display: grid;
    place-items: center;
}

.values-list h4 { font-size: 1rem; margin-bottom: 4px; }
.values-list p { font-size: 0.875rem; color: var(--text-secondary); }

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: var(--brand);
}

.contact-card h3 { margin-bottom: 12px; }
.contact-card p { font-size: 0.9375rem; color: var(--text-secondary); }
.contact-card a { color: var(--brand); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

/* ── Policies ── */
.policy-list {
    display: grid;
    gap: 16px;
    max-width: 800px;
}

.policy-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
}

.policy-item h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-item h3::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--brand), var(--accent-2));
    flex-shrink: 0;
}

.policy-item p { font-size: 0.9375rem; color: var(--text-secondary); }

.policy-item--highlight {
    background: linear-gradient(145deg, #f0fdf4, #ecfdf5);
    border-color: #a7f3d0;
}

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .brand {
    color: #fff;
}

.footer-brand p {
    font-size: 0.875rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-col h4 {
    color: #e2e8f0;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-col a {
    text-decoration: none;
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-col a:hover { color: #e2e8f0; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
}

.footer-bottom a { color: #94a3b8; text-decoration: none; }
.footer-bottom a:hover { color: #e2e8f0; }

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* ── Quick nav pills ── */
.pill-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.pill-nav a {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c7d2fe;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s, border-color 0.2s;
}

.pill-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { max-width: 480px; }
    .feature-grid,
    .role-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-desktop,
    .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .feature-grid,
    .role-grid,
    .pricing-grid,
    .contact-grid,
    .card-grid--2,
    .card-grid--3,
    .split-section { grid-template-columns: 1fr; }
    .section-pad { padding: 56px 0; }
    .cta-banner { padding: 48px 28px; border-radius: var(--radius-lg); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding-bottom: 56px; }
}

@media (max-width: 480px) {
    .hero__stats { grid-template-columns: 1fr; }
    .btn-row { flex-direction: column; }
    .btn-row .btn { width: 100%; }
}
