/* ============================
   SBD Dropshipping — Premium B2B Styles
   Palette: White / Dark Navy / Blue accent
   ============================ */

:root {
    /* Core */
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-alt: #f7f9fc;
    --color-surface-dark: #0a1633;
    --color-border: #e6ebf2;
    --color-border-strong: #d4dbe7;

    /* Text */
    --color-text: #0a1633;
    --color-text-muted: #5a6986;
    --color-text-dim: #8a94ab;
    --color-text-light: #ffffff;

    /* Primary brand — deep navy blue */
    --color-primary: #0F3B82;
    --color-primary-dark: #082457;
    --color-primary-light: #1a56b8;
    --color-accent: #1d72e8;
    --color-accent-soft: #e8f0fe;

    /* Status */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-whatsapp: #25D366;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0F3B82 0%, #1d72e8 100%);
    --gradient-cta: linear-gradient(135deg, #0F3B82 0%, #1a56b8 100%);
    --gradient-hero: linear-gradient(180deg, #eef4ff 0%, #f7f9fc 70%, #ffffff 100%);
    --gradient-dark: linear-gradient(135deg, #0a1633 0%, #0F3B82 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 59, 130, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 59, 130, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 59, 130, 0.12);
    --shadow-glow: 0 12px 40px rgba(29, 114, 232, 0.18);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Layout */
    --container-max: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Manrope', var(--font-sans);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    color: var(--color-text);
    line-height: 1.2;
}

p { color: var(--color-text-muted); }

.mt { margin-top: 18px; }

/* ============================
   Buttons
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    font-size: 15px;
    padding: 12px 22px;
    letter-spacing: 0.01em;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 18px rgba(15, 59, 130, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 59, 130, 0.35);
}

.btn-outline {
    background: white;
    color: var(--color-primary);
    border: 1.5px solid var(--color-border-strong);
}
.btn-outline:hover {
    border-color: var(--color-primary);
    background: var(--color-accent-soft);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
}

.btn-wa {
    background: var(--color-whatsapp);
    color: white;
    font-weight: 600;
}
.btn-wa:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================
   Announcement Bar
   ============================ */
.announcement-bar {
    background: var(--color-primary);
    color: white;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
}
.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.announcement-bar strong {
    font-weight: 700;
    color: #fff8c6;
}
.announcement-cta {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================
   Header / Nav
   ============================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 24px rgba(15, 59, 130, 0.06);
    border-bottom-color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--color-text);
    flex-shrink: 0;
}

.logo-mark {
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(15, 59, 130, 0.25);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition);
}
.nav-link:hover {
    color: var(--color-primary);
    background: var(--color-accent-soft);
}
.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

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

.nav-cta-mobile { display: none; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
}
.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(29, 114, 232, 0.14), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(15, 59, 130, 0.1), transparent 50%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(238, 244, 255, 0.1), transparent 60%);
    mask-image: linear-gradient(to left, black 30%, transparent 80%);
    -webkit-mask-image: linear-gradient(to left, black 30%, transparent 80%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 100px;
    background: var(--color-accent-soft);
    border: 1px solid rgba(29, 114, 232, 0.25);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 22px;
}
.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    max-width: 580px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.pillar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 100px;
    background: white;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text);
}
.pillar-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 26px;
    border-top: 1px solid var(--color-border);
}
.hero-stat { }
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--color-text-dim);
    font-weight: 500;
}
.hero-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero side dashboard */
.hero-side {
    position: relative;
}
.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.hero-card-tag {
    padding: 14px 22px;
    background: var(--color-surface-alt);
    font-family: var(--font-display);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    color: var(--color-text-dim);
    font-weight: 700;
    border-bottom: 1px solid var(--color-border);
}
.hero-card-body { padding: 22px; }

.hc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.hc-row.mt { margin-top: 18px; }
.hc-label { font-size: 13px; color: var(--color-text-muted); font-weight: 500; }
.hc-value {
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
}
.hc-value.passed { color: var(--color-success); }
.hc-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2.4s infinite;
}
.hc-check {
    width: 18px; height: 18px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px;
}

.hc-progress {
    height: 8px;
    background: var(--color-surface-alt);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}
.hc-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 999px;
    animation: fillBar 1.6s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes fillBar { from { width: 0; } }

.hc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 22px 0;
}
.hc-mini {
    background: var(--color-surface-alt);
    border-radius: var(--radius-sm);
    padding: 12px;
    border: 1px solid var(--color-border);
}
.hc-mini-label {
    font-size: 11px;
    color: var(--color-text-dim);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}
.hc-mini-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text);
}

.hc-track {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(29, 114, 232, 0.06), rgba(15, 59, 130, 0.04));
    border: 1px solid rgba(29, 114, 232, 0.15);
    border-radius: var(--radius-sm);
}
.hc-track-icon { font-size: 24px; }
.hc-track-title {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--color-text);
    margin-bottom: 2px;
}
.hc-track-sub {
    font-size: 11.5px;
    color: var(--color-text-muted);
}

/* ============================
   Trusted
   ============================ */
.trusted {
    padding: 36px 0;
    background: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.trusted-label {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 22px;
}
.trusted-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 40px;
}
.trusted-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-dim);
    opacity: 0.7;
    transition: all var(--transition);
}
.trusted-item:hover { opacity: 1; color: var(--color-primary); }

/* ============================
   Section Header
   ============================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    line-height: 1.22;
}
.section-title.left { text-align: left; }
.section-subtitle {
    font-size: 1.02rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================
   Services Grid
   ============================ */
.services { padding: 100px 0; background: white; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 59, 130, 0.3);
    box-shadow: var(--shadow-md);
}
.service-step {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}
.s-blue { background: linear-gradient(135deg, #0F3B82, #1d72e8); }
.s-green { background: linear-gradient(135deg, #059669, #10b981); }
.s-orange { background: linear-gradient(135deg, #d97706, #f59e0b); }
.s-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.s-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.s-pink { background: linear-gradient(135deg, #db2777, #ec4899); }

.service-title {
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.service-text strong {
    color: var(--color-primary);
    font-weight: 700;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary);
    transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }

/* ============================
   Free Sourcing (Stand-out)
   ============================ */
.free-sourcing {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}
.free-sourcing-inner {
    position: relative;
    z-index: 1;
}
.fs-decor {
    position: absolute;
    top: -150px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(29, 114, 232, 0.35), transparent 60%);
    filter: blur(80px);
    z-index: 0;
}
.fs-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}
.fs-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffd76b;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}
.fs-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.fs-sub {
    font-size: 1.06rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}
.fs-sub strong { color: #ffd76b; }

.fs-process {
    display: grid;
    grid-template-columns: repeat(9, auto);
    gap: 0;
    align-items: start;
    justify-content: center;
    margin-bottom: 50px;
}
.fs-step {
    text-align: center;
    width: 150px;
    padding: 20px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.fs-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.fs-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-weight: 800;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.fs-step-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.fs-step-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
}
.fs-arrow {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    align-self: center;
    font-size: 1.2rem;
    padding: 0 6px;
}

.fs-action {
    text-align: center;
}
.fs-note {
    margin-top: 16px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
}

/* ============================
   Quality
   ============================ */
.quality {
    padding: 110px 0;
    background: var(--color-surface-alt);
}
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.quality-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 14px;
}
.quality-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 34px;
}

.qc-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
}
.qc-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.qc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qc-step h4 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.qc-step p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.qc-quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 20px 24px;
    background: var(--color-accent-soft);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.qc-quote.dark {
    color: var(--color-text);
    background: var(--color-surface-alt);
    border-left-color: var(--color-primary);
}

/* Quality visual */
.quality-visual {
    position: relative;
}
.qv-main {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    text-align: center;
}
.qv-scan {
    font-size: 56px;
    margin-bottom: 18px;
    animation: pulseSlow 3s ease-in-out infinite;
}
@keyframes pulseSlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.qv-card {
    background: var(--color-surface-alt);
    border-radius: var(--radius-md);
    padding: 22px;
    text-align: left;
    border: 1px solid var(--color-border);
}
.qv-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--color-text);
}
.qv-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--color-text);
    font-weight: 500;
}
.qv-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}
.qv-dot::after { content: "✓"; }
.qv-status {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-success);
    text-align: center;
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
}

.qv-float {
    position: absolute;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}
.qv-float-1 {
    top: -20px;
    left: -20px;
    animation: floatCard 4s ease-in-out infinite;
}
.qv-float-2 {
    bottom: -18px;
    right: -10px;
    animation: floatCard 4s ease-in-out infinite 2s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.qv-f-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.qv-f-title { font-weight: 700; font-size: 13.5px; }
.qv-f-sub { font-size: 11.5px; color: var(--color-text-muted); }

/* ============================
   Speed / Fulfilment
   ============================ */
.speed {
    padding: 110px 0;
    background: white;
}

.speed-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 50px;
    padding: 0 8px;
}
.speed-step {
    width: 18%;
    text-align: center;
}
.speed-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: inset 0 0 0 1px rgba(29, 114, 232, 0.2);
}
.speed-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.speed-step p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.speed-line {
    width: 2.5%;
    height: 2px;
    background: var(--color-border-strong);
    align-self: center;
    position: relative;
}
.speed-line::after {
    content: "→";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-dim);
    font-size: 12px;
}

.speed-points {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.speed-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}
.speed-point:hover {
    background: white;
    border-color: rgba(15, 59, 130, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.speed-point > span {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}
.speed-point strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--color-text);
}
.speed-point p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* ============================
   Supply Chain Diagram
   ============================ */
.supply-chain {
    padding: 110px 0;
    background: var(--color-surface-alt);
}

.chain-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}
.chain-node {
    width: 360px;
    max-width: 100%;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.chain-node:hover {
    border-color: rgba(15, 59, 130, 0.35);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}
.chain-start {
    background: linear-gradient(135deg, var(--color-accent-soft), white);
    border-color: rgba(15, 59, 130, 0.25);
}
.chain-end {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}
.chain-end .chain-name { color: white; }
.chain-accent {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), white);
    border-color: rgba(16, 185, 129, 0.3);
}
.chain-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.chain-accent .chain-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
}
.chain-end .chain-icon {
    background: rgba(255, 255, 255, 0.18);
}
.chain-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
}
.chain-arrow {
    color: var(--color-text-dim);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.chain-statement {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    color: var(--color-primary);
    padding: 20px 30px;
    background: white;
    border: 1px dashed rgba(15, 59, 130, 0.35);
    border-radius: var(--radius-lg);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================
   Why SBD
   ============================ */
.why-sbd {
    padding: 110px 0;
    background: white;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: all var(--transition);
}
.why-card:hover {
    background: white;
    border-color: rgba(15, 59, 130, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-emoji {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================
   Comparison
   ============================ */
.compare {
    padding: 110px 0;
    background: var(--color-surface-alt);
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
}
.compare-col {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
}
.compare-old { border-top: 4px solid #cbd5e1; }
.compare-new {
    border-top: 4px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}
.compare-head { margin-bottom: 22px; }
.compare-badge-old,
.compare-badge-new {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.compare-badge-old { background: #f1f5f9; color: #64748b; }
.compare-badge-new {
    background: var(--color-accent-soft);
    color: var(--color-primary);
}
.compare-col h3 {
    font-size: 1.22rem;
    font-weight: 800;
}
.compare-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}
.compare-new .compare-list li {
    background: var(--color-accent-soft);
}
.cm-bad, .cm-good {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.cm-bad { background: #fee2e2; color: #b91c1c; }
.cm-good { background: rgba(16, 185, 129, 0.18); color: #059669; }

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.compare-vs span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

/* ============================
   How It Works (Timeline)
   ============================ */
.how {
    padding: 110px 0;
    background: white;
}

.how-timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto 50px;
    padding-left: 40px;
}
.how-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: var(--color-border-strong);
}
.how-step {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 18px 0;
}
.how-num-wrap {
    display: flex;
    justify-content: center;
}
.how-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 59, 130, 0.25);
    z-index: 1;
}
.how-step-label {
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.how-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.how-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.how-connector { display: none; }

.how-cta {
    text-align: center;
}

/* ============================
   Integrate (Store connectivity)
   ============================ */
.integrate {
    padding: 110px 0;
    background: var(--color-surface-alt);
}
.integrate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.integrate-intro {
    font-size: 1.04rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.integrate-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}
.integrate-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}
.il-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.18);
    color: #059669;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0;
}

.integrate-visual { }
.iv-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}
.iv-store, .iv-sbd, .iv-cust {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
}
.iv-store-icon, .iv-cust-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--color-accent-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.iv-store strong, .iv-cust strong, .iv-sbd strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
}
.iv-store span, .iv-cust span {
    font-size: 12.5px;
    color: var(--color-text-muted);
}
.iv-flow {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.iv-sbd {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}
.iv-sbd strong { color: white; }
.iv-logo {
    width: 44px;
    padding: 8px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.iv-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.iv-tags span {
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    color: white;
}
.iv-cust { background: white; }

/* ============================
   About
   ============================ */
.about {
    padding: 110px 0;
    background: white;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.about-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-card::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(29, 114, 232, 0.4), transparent 60%);
}
.about-tagline {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 34px;
    color: white;
}
.about-pillars {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-pillar {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}
.about-pill-num {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.about-pillar strong {
    display: block;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}
.about-pillar span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.about-p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 18px;
    line-height: 1.7;
}
.about-p strong { color: var(--color-text); }
.about-p.emphasized {
    padding: 18px 22px;
    background: var(--color-accent-soft);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--color-text);
    font-style: italic;
}

.about-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.about-meta {
    padding: 16px 18px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}
.about-meta-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 6px;
}
.about-meta-label {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--color-text);
}

/* ============================
   Final CTA
   ============================ */
.final-cta {
    padding: 110px 0;
    background: white;
}
.final-cta-box {
    position: relative;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 70px 50px;
    color: white;
    text-align: center;
    overflow: hidden;
}
.final-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 114, 232, 0.35), transparent 60%);
    filter: blur(80px);
    z-index: 0;
}
.final-cta-box h2 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    color: white;
}
.final-cta-box p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.final-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.final-pillars {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.final-pillars span {
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================
   Contact
   ============================ */
.contact {
    padding: 110px 0;
    background: var(--color-surface-alt);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 100px;
}
.contact-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.contact-card:hover {
    border-color: rgba(15, 59, 130, 0.3);
    box-shadow: var(--shadow-md);
}
.contact-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), white);
    border-color: rgba(37, 211, 102, 0.3);
}
.contact-card-icon {
    font-size: 30px;
    margin-bottom: 12px;
}
.contact-card-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 6px;
}
.contact-card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    word-break: break-word;
}
.contact-note {
    background: white;
    border: 1px dashed var(--color-border-strong);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--color-text-muted);
}
.contact-note p + p { margin-top: 6px; }
.contact-note strong { color: var(--color-text); }

/* Form */
.contact-form {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-group {
    margin-bottom: 18px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-border-strong);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 14.5px;
    transition: all var(--transition);
    line-height: 1.5;
}
.form-group textarea { resize: vertical; font-family: inherit; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(29, 114, 232, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}
.form-hint {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--color-text-dim);
    text-align: center;
}

.hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

/* ============================
   Brand strip
   ============================ */
.brand-strip {
    padding: 50px 0;
    background: white;
    border-top: 1px solid var(--color-border);
}
.brand-strip-inner {
    text-align: center;
}
.brand-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.brand-sub {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* ============================
   Footer
   ============================ */
.footer {
    background: var(--color-surface-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 70px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo .logo-mark { }
.footer-brand .footer-byline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    margin: 16px 0 10px;
    color: rgba(255, 255, 255, 0.95);
}
.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.f-social {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition);
    font-size: 16px;
}
.f-social:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    color: white;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col a:hover {
    color: white;
}
.fc-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.fc-line .fc-icon { font-size: 16px; flex-shrink: 0; }
.fc-line a { color: rgba(255, 255, 255, 0.75); word-break: break-word; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}
.footer-brand-tag {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================
   Page Hero (Services page)
   ============================ */
.page-hero {
    padding: 70px 0 60px;
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--color-border);
}
.page-hero-breadcrumb {
    font-size: 13px;
    color: var(--color-text-dim);
    margin-bottom: 16px;
    font-weight: 500;
}
.page-hero-breadcrumb a { color: var(--color-primary); font-weight: 600; }
.page-hero-breadcrumb span { margin: 0 8px; color: var(--color-text-dim); }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    max-width: 820px;
    margin-bottom: 16px;
}
.page-hero-subtitle {
    font-size: 1.08rem;
    max-width: 780px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 26px;
}
.page-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.page-hero-tags span {
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}
.page-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================
   Service Detail Cards
   ============================ */
.svc-detail {
    padding: 110px 0;
    background: white;
}
.svc-detail.svc-alt { background: var(--color-surface-alt); }

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.svc-grid-reverse .svc-visual { order: 2; }

.svc-visual {
    position: relative;
    background: linear-gradient(135deg, var(--color-surface-alt), white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.svc-visual-blue { background: linear-gradient(180deg, rgba(29, 114, 232, 0.07), white); }
.svc-visual-green { background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), white); }
.svc-visual-purple { background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), white); }
.svc-visual-orange { background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), white); }
.svc-visual-teal { background: linear-gradient(180deg, rgba(20, 184, 166, 0.07), white); }
.svc-visual-navy { background: linear-gradient(180deg, rgba(15, 59, 130, 0.08), white); }

.svc-v-icon {
    font-size: 68px;
    margin-bottom: 22px;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.1));
}
.svc-v-card {
    width: 100%;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}
.svc-v-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 14px;
    font-size: 0.98rem;
}
.svc-v-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--color-text);
    font-weight: 500;
}
.svc-v-item span {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--color-success);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.svc-v-item span::after {
    content: "✓";
    color: white;
    font-size: 9px;
    font-weight: 700;
}
.svc-v-badge {
    margin-top: 14px;
    padding: 8px 14px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    text-align: center;
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: 13px;
}
.svc-v-badge.green { background: rgba(16, 185, 129, 0.12); color: #059669; }
.svc-v-badge.purple { background: rgba(124, 58, 237, 0.12); color: #6d28d9; }
.svc-v-badge.orange { background: rgba(245, 158, 11, 0.12); color: #b45309; }
.svc-v-badge.teal { background: rgba(20, 184, 166, 0.12); color: #0f766e; }

.svc-v-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-border);
}
.svc-v-metric:last-of-type { border-bottom: none; }
.svc-v-metric span {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}
.svc-v-metric strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 800;
}

.svc-v-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 13.5px;
}
.svc-v-row:last-of-type { border-bottom: none; }
.svc-v-row span:first-child { font-weight: 600; color: var(--color-text); }
.svc-v-row span:last-child {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 700;
    background: var(--color-accent-soft);
    padding: 3px 8px;
    border-radius: 6px;
}

.svc-v-flow {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 22px;
    padding: 14px;
    background: white;
    border: 1px dashed rgba(15, 59, 130, 0.3);
    border-radius: var(--radius-md);
}
.svc-v-flow div:not(:last-child)::after {
    content: "";
}

.svc-content .svc-intro {
    font-size: 1.06rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}
.svc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}
.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--color-text);
}
.sl-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.18);
    color: #059669;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Recap CTA */
.svc-recap {
    padding: 80px 0;
    background: var(--color-surface-alt);
}
.svc-recap-inner {
    text-align: center;
    padding: 50px 40px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 820px;
    margin: 0 auto;
}
.svc-recap-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.svc-recap-inner p {
    font-size: 1.04rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}
.svc-recap-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================
   Toast
   ============================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(140px);
    background: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 14px 24px 14px 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 300;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14.5px;
    font-weight: 500;
    max-width: 90vw;
    text-align: left;
    position: relative;
}
.toast::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============================
   Back to top
   ============================ */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 50;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(29, 114, 232, 0.35);
}

/* ============================
   Reveal on scroll
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-side { max-width: 520px; margin: 0 auto; }

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

    .quality-grid,
    .integrate-grid,
    .about-grid,
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .svc-grid-reverse .svc-visual { order: 0; }

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

    .compare-grid {
        grid-template-columns: 1fr;
    }
    .compare-vs { margin: 6px 0; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand { grid-column: 1 / -1; }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info { position: static; }

    .fs-process {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }
    .fs-arrow {
        transform: rotate(90deg);
    }

    .speed-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .speed-step {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    .speed-icon { margin: 0; flex-shrink: 0; }
    .speed-line {
        width: 2px;
        height: 26px;
        align-self: auto;
        margin-left: 30px;
    }
    .speed-line::after {
        right: auto;
        top: auto;
        transform: none;
        position: absolute;
        margin-left: -5px;
        margin-top: 6px;
        content: "↓";
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 20px;
        gap: 4px;
        transform: translateY(-150%);
        transition: transform var(--transition);
        box-shadow: 0 12px 30px rgba(15, 59, 130, 0.08);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-link { padding: 12px 14px; }
    .nav-cta-desktop { display: none; }
    .nav-cta-mobile { display: block; margin-top: 8px; }
    .menu-toggle { display: flex; }

    .hero { padding: 50px 0 70px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .hero-stat-sep { width: 40px; height: 1px; }

    .trusted-row { gap: 14px 26px; justify-content: center; }
    .trusted-item { font-size: 15px; }

    .services-grid, .why-grid, .speed-points {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .chain-node { width: 100%; }

    .section-header { margin-bottom: 46px; }

    .final-cta-box { padding: 48px 24px; border-radius: var(--radius-lg); }
    .final-cta-buttons { flex-direction: column; }
    .final-cta-buttons .btn { width: 100%; }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    .contact-form { padding: 26px 22px; }

    .how-timeline { padding-left: 0; }
    .how-timeline::before { display: none; }
    .how-step { grid-template-columns: 50px 1fr; padding: 14px 0; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom { flex-direction: column; text-align: center; }

    .page-hero-cta { flex-direction: column; }
    .page-hero-cta .btn { width: 100%; }

    .svc-visual { min-height: auto; padding: 28px 22px; }
    .svc-recap-inner { padding: 36px 22px; }
    .svc-recap-actions { flex-direction: column; }
    .svc-recap-actions .btn { width: 100%; }

    .back-top { right: 18px; bottom: 18px; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 16px; }
    .about-foot { grid-template-columns: 1fr; }
    .chain-node { padding: 16px 18px; gap: 12px; }
}
