/* ============================================================
   DiaKoneo Solutions — Premium Stylesheet
   Brand identity: orange (#ff8c00) + black (#0a0a1a) + white.
   Fonts: Sora (headings), Inter (body). Premium, professional.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Core palette */
    --white: #ffffff;
    --bg: #ffffff;
    --bg-tint: #f5f5f5;            /* gris clair — sections alternées */
    --bg-tint-2: #ededed;
    --ink: #0a0a1a;                /* noir principal */
    --ink-soft: #52525b;           /* gris texte secondaire */
    --ink-muted: #71717a;
    --slate-900: #0a0a1a;
    --slate-800: #1a1a2e;
    --slate-700: #33334d;
    --line: #e4e4e7;
    --line-soft: #ededed;

    /* DiaKoneo brand */
    --accent: #ff8c00;             /* orange primaire */
    --accent-dark: #ff6b35;        /* orange moyen */
    --accent-light: #ffb347;       /* orange clair */
    --primary: #0a0a1a;            /* noir principal */
    --neural: #0096ff;             /* bleu neural (nœuds du réseau) */

    /* Legacy aliases mapped to brand palette (keeps existing rules in sync) */
    --teal: var(--accent);
    --teal-600: var(--accent-dark);
    --teal-400: var(--accent-light);
    --teal-50: #fff4e6;
    --blue: var(--accent-dark);
    --blue-700: var(--primary);
    --blue-tint: #fff4e6;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
    --grad-text: linear-gradient(120deg, #ff8c00 0%, #ff6b35 55%, #ffb347 100%);

    /* Dark section */
    --dark: #0a0a1a;
    --dark-2: #131326;
    --dark-line: rgba(255,255,255,0.10);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10,10,26,0.04), 0 1px 3px rgba(10,10,26,0.06);
    --shadow-md: 0 4px 6px -1px rgba(10,10,26,0.06), 0 10px 25px -5px rgba(10,10,26,0.08);
    --shadow-lg: 0 20px 50px -12px rgba(10,10,26,0.18);
    --shadow-xl: 0 30px 80px -20px rgba(255,140,0,0.25);

    /* Radii */
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    /* Layout */
    --container: 1200px;
    --nav-h: 76px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--teal-50); color: var(--teal-600); }

/* ---------- Brand typography ---------- */
h1, h2, h3, .logo-text {
    font-family: 'Sora', 'Inter', sans-serif;
    letter-spacing: -0.015em;
}
.section-label, .badge, .eyebrow, .pricing-tag,
.footer-col h4, .widget-step-label, .fc-label {
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.nav-logo-img {
    height: auto;
    width: 2000px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-logo .nav-logo-img {
    width: 900px;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 18px -8px rgba(0,0,0,0.5);
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 110px 0; position: relative; }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--dark); color: #e2e8f0; }

/* ---------- Section headings ---------- */
.section-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.section-label-blue { color: var(--blue); }

.section-title {
    font-size: clamp(30px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--slate-900);
}
.section-title-light {
    font-size: clamp(30px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #fff;
}

.accent { color: var(--teal); }
.accent-blue { color: var(--blue); }
.accent-light { color: var(--teal-400); }

.section-subtitle {
    margin-top: 20px;
    font-size: 17.5px;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 999px;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 8px 22px -8px rgba(255,140,0,0.55);
}
.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -10px rgba(255,107,53,0.6);
}

.btn-primary-light {
    background: var(--teal-400);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 8px 24px -8px rgba(255,179,71,0.55);
}
.btn-primary-light:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--slate-900);
    border: 1.5px solid var(--line);
}
.btn-outline:hover {
    border-color: var(--slate-900);
    background: var(--slate-900);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(10,10,26,0.04);
    color: var(--slate-900);
}
.btn-ghost:hover {
    background: var(--slate-900);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(255,255,255,0.72);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}
.nav-logo .logo-text em {
    font-style: normal;
    font-weight: 600;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-mark { display: flex; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 8px;
}
.nav-menu a {
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: all 0.2s var(--ease);
}
.nav-menu a:hover { color: var(--teal); background: var(--teal-50); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2.4px;
    background: var(--slate-900);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: calc(var(--nav-h) + 80px) 0 0;
    overflow: hidden;
    background: var(--white);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(10,10,26,0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10,10,26,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: floatGlow 14s ease-in-out infinite;
}
.hero-glow-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(255,140,0,0.30), transparent 65%);
    top: -120px; right: -80px;
}
.hero-glow-2 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(0,150,255,0.16), transparent 65%);
    bottom: -140px; left: -100px;
    animation-delay: -7s;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--grad-brand);
    opacity: 0.9;
    box-shadow: 0 20px 50px -10px rgba(255,140,0,0.40);
}
.hero-orb-1 {
    width: 14px; height: 14px;
    top: 22%; left: 12%;
    animation: drift 9s ease-in-out infinite;
}
.hero-orb-2 {
    width: 9px; height: 9px;
    top: 60%; right: 18%;
    background: var(--blue);
    animation: drift 11s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px,-20px) scale(1.08); }
}
@keyframes drift {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(18px,-22px); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-copy { max-width: 620px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    background: var(--accent-light);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 6px 18px -8px rgba(255,140,0,0.5);
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--neural);
    box-shadow: 0 0 0 4px rgba(0,150,255,0.25);
    animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(0,150,255,0.25); }
    50% { box-shadow: 0 0 0 8px rgba(255,140,0,0.12); }
}

.hero-title {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--slate-900);
    margin-bottom: 24px;
}
.gradient-text {
    background: var(--grad-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 18.5px;
    line-height: 1.72;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; line-height: 1.25; }
.trust-item strong { font-size: 15px; font-weight: 700; color: var(--slate-900); }
.trust-item span { font-size: 12.5px; color: var(--ink-muted); }
.trust-sep { width: 1px; height: 28px; background: var(--line); }

/* ---------- Hero demo widget ---------- */
.hero-widget { position: relative; }
.widget-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform-style: preserve-3d;
}
.widget-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line-soft);
    background: var(--bg-tint);
}
.widget-dots { display: flex; gap: 6px; }
.widget-dots span {
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--line);
}
.widget-dots span:nth-child(1) { background: #f87171; }
.widget-dots span:nth-child(2) { background: #fbbf24; }
.widget-dots span:nth-child(3) { background: #34d399; }
.widget-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    font-family: 'SF Mono', ui-monospace, monospace;
    margin-left: 6px;
}

.widget-body { padding: 22px; }
.widget-progress {
    height: 6px;
    background: var(--bg-tint-2);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 22px;
}
.widget-progress-bar {
    height: 100%;
    width: 25%;
    background: var(--grad-brand);
    border-radius: 999px;
    transition: width 0.6s var(--ease);
}

.widget-steps { display: flex; flex-direction: column; gap: 10px; }
.widget-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    background: var(--white);
    transition: all 0.45s var(--ease);
    opacity: 0.45;
}
.widget-step.is-active {
    opacity: 1;
    border-color: rgba(255,140,0,0.40);
    background: var(--teal-50);
    box-shadow: 0 6px 20px -8px rgba(255,140,0,0.30);
    transform: translateX(4px);
}
.widget-step.is-done { opacity: 0.85; }
.widget-step.is-done .widget-step-status { color: var(--teal); }

.widget-step-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--bg-tint-2);
    color: var(--ink-muted);
    transition: all 0.45s var(--ease);
}
.widget-step.is-active .widget-step-icon {
    background: var(--grad-brand);
    color: #fff;
}
.widget-step.is-done .widget-step-icon {
    background: var(--teal);
    color: #fff;
}

.widget-step-text { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.widget-step-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.widget-step-title { font-size: 15px; font-weight: 700; color: var(--slate-900); }
.widget-step-desc { font-size: 12.5px; color: var(--ink-muted); }
.widget-step-status {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-muted);
    white-space: nowrap;
}
.widget-step.is-active .widget-step-status { color: var(--teal-600); }

/* ---------- Hero marquee ---------- */
.hero-marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--bg-tint);
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: marquee 32s linear infinite;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
}
.marquee-track span:nth-child(even) { color: var(--teal); }
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--teal-50), transparent 40%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.feature-card:hover {
    border-color: rgba(255,140,0,0.35);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    position: relative;
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--grad-brand);
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px -8px rgba(255,140,0,0.50);
}
.feature-card h3 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.feature-card p {
    position: relative;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.feature-card-highlight {
    background: var(--grad-brand);
    border-color: transparent;
}
.feature-card-highlight h3, .feature-card-highlight p { color: #fff; }
.feature-card-highlight .feature-icon {
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(6px);
}
.feature-card-highlight::before { display: none; }
.feature-card-highlight:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    position: relative;
    transition: all 0.35s var(--ease);
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.process-num {
    position: absolute;
    top: 22px; right: 26px;
    font-size: 46px;
    font-weight: 900;
    color: var(--bg-tint-2);
    line-height: 1;
    letter-spacing: -0.04em;
    transition: color 0.35s var(--ease);
}
.process-card:hover .process-num { color: var(--teal-50); }

.process-ico {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 16px;
    background: var(--teal-50);
    color: var(--teal);
    margin-bottom: 22px;
}
.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.process-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ============================================================
   PROBLEMS
   ============================================================ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    transition: all 0.35s var(--ease);
    position: relative;
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,107,53,0.30);
}

.problem-impact {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-soft);
}
.impact-amount {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--blue);
    line-height: 1;
}
.impact-unit {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
}

.problem-ico {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--blue-tint);
    color: var(--blue);
    margin-bottom: 18px;
}
.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.problem-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
}

.problems-cta {
    text-align: center;
    background: var(--grad-brand);
    border-radius: var(--r-xl);
    padding: 44px 40px;
    color: #fff;
}
.problems-cta p {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 22px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   COMPLIANCE (dark section)
   ============================================================ */
.compliance-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.compliance-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #cbd5e1;
    margin: 22px 0 28px;
}

.compliance-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.55;
    color: #e2e8f0;
}
.ci-check {
    flex-shrink: 0;
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 8px;
    background: rgba(255,179,71,0.16);
    color: var(--teal-400);
    margin-top: 1px;
}

.compliance-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-line);
    border-radius: var(--r-xl);
    padding: 34px;
    backdrop-filter: blur(8px);
}
.cc-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cc-stat { display: flex; flex-direction: column; }
.cc-num {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    background: linear-gradient(120deg, #ffb347, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cc-label { font-size: 13.5px; color: #94a3b8; margin-top: 6px; }

.cc-divider { height: 1px; background: var(--dark-line); margin: 26px 0; }

.cc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.cc-mini { display: flex; flex-direction: column; gap: 4px; }
.cc-mini-num { font-size: 17px; font-weight: 700; color: var(--teal-400); }
.cc-mini-label { font-size: 12.5px; color: #94a3b8; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s var(--ease);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-popular {
    background: var(--slate-900);
    color: #e2e8f0;
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: scale(1.03);
}
.pricing-card-popular:hover { transform: scale(1.03) translateY(-6px); }

.pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--teal-400);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 7px 18px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 18px -6px rgba(255,179,71,0.60);
}

.pricing-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
}
.pricing-card-popular .pricing-tag { color: var(--teal-400); }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 12px 0 4px;
}
.price-amount {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    line-height: 1;
}
.pricing-card-popular .price-amount { color: #fff; }
.price-period { font-size: 15px; color: var(--ink-muted); font-weight: 500; }
.pricing-card-popular .price-period { color: #94a3b8; }

.pricing-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 12px 0 26px;
}
.pricing-card-popular .pricing-desc { color: #cbd5e1; }

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px;
    flex: 1;
}
.pricing-features li {
    position: relative;
    padding-left: 30px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink-soft);
}
.pricing-card-popular .pricing-features li { color: #e2e8f0; }
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 2px;
    width: 19px; height: 19px;
    border-radius: 50%;
    background: var(--teal-50);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='%23ff8c00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.pricing-card-popular .pricing-features li::before {
    background-color: rgba(255,179,71,0.20);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='%23ffb347' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-card .btn-outline { color: var(--slate-900); }
.pricing-card-popular .btn-outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}
.pricing-card-popular .btn-outline:hover { background: #fff; color: var(--slate-900); }

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14.5px;
    color: var(--ink-muted);
}
.pricing-note a { color: var(--teal); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 64px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,140,0,0.10), transparent 65%);
    top: -120px; right: -100px;
    border-radius: 50%;
}
.cta-banner-content { position: relative; max-width: 640px; margin: 0 auto; }
.cta-banner .section-subtitle { text-align: center; }
.cta-banner-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 80px 0 36px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--dark-line);
}

.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-text { color: #fff; }
.footer-tagline {
    font-size: 14.5px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 320px;
    margin-bottom: 20px;
}
.footer-loi-badge {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--teal-400);
    background: rgba(255,179,71,0.12);
    border: 1px solid rgba(255,179,71,0.28);
    padding: 6px 14px;
    border-radius: 999px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li span {
    font-size: 14.5px;
    color: #94a3b8;
    transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--teal-400); }

.footer-contact li { display: flex; flex-direction: column; gap: 2px; }
.fc-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #64748b; }
.footer-contact-col .btn { margin-top: 16px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 28px;
    font-size: 13px;
    color: #64748b;
}
.footer-region { color: #64748b; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-widget { max-width: 520px; }
}

@media (max-width: 860px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line);
        padding: 12px 24px 24px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s var(--ease);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu a {
        padding: 14px 12px;
        font-size: 16px;
        border-bottom: 1px solid var(--line-soft);
    }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .compliance-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .section-head { margin-bottom: 44px; }
    .container { padding: 0 18px; }

    .features-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-popular { transform: none; }
    .pricing-card-popular:hover { transform: translateY(-6px); }

    .hero { padding-top: calc(var(--nav-h) + 50px); }
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 16.5px; }
    .hero-cta .btn { width: 100%; }

    .hero-trust { gap: 14px; }
    .trust-sep { display: none; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-banner { padding: 44px 24px; }
    .cta-banner-actions .btn { width: 100%; }
}

@media (max-width: 380px) {
    .hero-title { font-size: 33px; }
    .price-amount { font-size: 36px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
