/* ══════════════════════════════════════════════════════════════════════════
   SPARKFORGE — ecommerce.css
   E-Commerce Service Page
   Palette: #007978 teal | #00df81 green | #f1f7f6 light bg
   Dark mode: deep forest greens
   Fonts: Syne (headings) + DM Sans (body)
══════════════════════════════════════════════════════════════════════════ */

/* ── LIGHT THEME ─────────────────────────────────────────────────────── */
:root {
    --bg:           #f1f7f6;
    --bg-alt:       #e4f0ef;
    --surface:      #ffffff;
    --surface-2:    #edf5f4;
    --border:       rgba(0, 121, 120, 0.14);
    --border-strong:rgba(0, 121, 120, 0.28);
    --teal:         #007978;
    --teal-dark:    #005f5e;
    --green:        #00df81;
    --green-dim:    rgba(0, 223, 129, 0.12);
    --green-border: rgba(0, 223, 129, 0.28);
    --text-head:    #004c4b;
    --text-body:    #2e6160;
    --text-muted:   #5a9897;
    --text-faint:   #9dc8c7;
    --radius:       12px;
    --radius-lg:    20px;
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --shadow:       0 8px 32px rgba(0, 121, 120, 0.10);
    --shadow-lg:    0 20px 56px rgba(0, 121, 120, 0.16);
}

/* ── DARK THEME ─────────────────────────────────────────────────────── */
[data-theme="dark"] {
    --bg:           #071412;
    --bg-alt:       #0d1f1e;
    --surface:      #0d1f1e;
    --surface-2:    #132b29;
    --border:       rgba(0, 223, 129, 0.09);
    --border-strong:rgba(0, 223, 129, 0.2);
    --teal:         #00c4a0;
    --teal-dark:    #009e80;
    --green:        #00df81;
    --green-dim:    rgba(0, 223, 129, 0.10);
    --green-border: rgba(0, 223, 129, 0.22);
    --text-head:    #c8ede8;
    --text-body:    #7ec4bc;
    --text-muted:   #4d8f87;
    --text-faint:   #27504c;
    --shadow:       0 8px 32px rgba(0, 0, 0, 0.40);
    --shadow-lg:    0 20px 56px rgba(0, 0, 0, 0.55);
}

/* ── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; line-height: 1.1; color: var(--text-head);
}

/* ── LAYOUT ──────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── SHARED ──────────────────────────────────────────────────────────── */
.section-label {
    display: block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.85rem;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800; color: var(--text-head); margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.05rem; color: var(--text-muted);
    line-height: 1.7; max-width: 560px; margin-bottom: 2.5rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
    border-radius: 99px; padding: 13px 26px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
    cursor: pointer; border: none;
}
.btn--primary { background: linear-gradient(135deg, var(--green), var(--teal)); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,223,129,0.38); }
.btn--outline {
    background: transparent; color: var(--teal);
    border: 2px solid var(--teal);
}
.btn--outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn--ghost { color: var(--text-muted); background: transparent; padding: 13px 0; }
.btn--ghost:hover { color: var(--teal); }
.btn--white { background: #fff; color: var(--teal-dark); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,255,255,0.25); }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────── */
[data-reveal] {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.is-scrolled {
    background: var(--bg);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow);
}
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 800; }
.logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.logo-img--inv { opacity: 0.95; }
.logo-name { font-size: 1.1rem; color: var(--text-head); }
.logo-name--inv { color: #fff !important; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-link--active { color: var(--teal) !important; }
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.nav-dropdown-toggle::after {
    content: '\25bc';
    font-size: 0.6rem;
    transition: transform 0.25s var(--ease);
}
.nav-dropdown.is-open .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease);
    box-shadow: var(--shadow);
    z-index: 1001;
    overflow: hidden;
}
.nav-dropdown.is-open .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-submenu li {
    display: list-item;
}
.nav-submenu li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s var(--ease);
    border-left: 3px solid transparent;
}
.nav-submenu li:first-child a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.nav-submenu li:last-child a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.nav-submenu li a:hover {
    background: var(--bg-alt);
    color: var(--teal);
    border-left-color: var(--green);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.theme-toggle { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-strong); background: var(--surface); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.25s var(--ease); cursor: pointer; flex-shrink: 0; }
.theme-toggle:hover { background: var(--green); color: #fff; border-color: var(--green); transform: rotate(15deg) scale(1.05); }
.nav-cta { background: linear-gradient(135deg, var(--green), var(--teal)); color: #fff; padding: 9px 20px; border-radius: 99px; font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,223,129,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--teal); border-radius: 2px; display: block; transition: 0.25s var(--ease); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: var(--surface); border-top: 1px solid var(--border); padding: 1.5rem 24px 2rem; }
.mobile-menu a { padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .mobile-cta { border-bottom: none; margin-top: 1rem; color: var(--green); font-family: 'Syne', sans-serif; font-weight: 700; }
.mobile-dropdown-toggle {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    transition: transform 0.25s var(--ease);
}
.mobile-dropdown-toggle.is-open::after {
    transform: rotate(180deg);
}
.mobile-dropdown-toggle:hover {
    color: var(--teal);
}
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s var(--ease);
    border-bottom: 1px solid var(--border);
}
.mobile-submenu.is-open {
    max-height: 500px;
}
.mobile-submenu a {
    display: block;
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.2s;
}
.mobile-submenu a:last-child {
    border-bottom: none;
}
.mobile-submenu a:hover {
    color: var(--teal);
}
.mobile-menu.is-open { display: flex; }

/* ════════════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════════════ */
.ec-hero {
    position: relative;
    padding: 110px 0 90px;
    background: var(--bg);
    overflow: hidden;
}
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: 0.5; pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb--1 { width: 520px; height: 520px; background: rgba(0,223,129,0.10); top: -140px; left: -100px; }
.hero-orb--2 { width: 380px; height: 380px; background: rgba(0,121,120,0.08); bottom: -80px; right: -80px; }

.ec-hero__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; color: var(--text-faint);
    margin-bottom: 1.4rem;
    animation: fadeUp 0.6s 0s both;
}
.breadcrumb a { color: var(--text-faint); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb i { font-size: 0.55rem; }
.breadcrumb span { color: var(--teal); font-weight: 600; }

/* Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--green-dim); border: 1px solid var(--green-border);
    color: var(--teal); padding: 6px 14px; border-radius: 99px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 1.4rem;
    animation: fadeUp 0.6s 0.1s both;
}
.hero-badge__dot {
    width: 7px; height: 7px; background: var(--green); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.75);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);} }

.ec-hero__title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800; line-height: 1.0;
    color: var(--text-head); margin-bottom: 1.4rem;
    animation: fadeUp 0.6s 0.15s both;
}
.title-accent {
    background: linear-gradient(135deg, var(--green), var(--teal));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ec-hero__desc {
    font-size: 1.1rem; color: var(--text-muted); line-height: 1.75;
    max-width: 500px; margin-bottom: 2.2rem;
    animation: fadeUp 0.6s 0.2s both;
}
.ec-hero__actions {
    display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s 0.25s both;
}
.ec-hero__trust {
    display: flex; flex-direction: column; gap: 8px;
    animation: fadeUp 0.6s 0.3s both;
}
.trust-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.85rem; color: var(--text-muted);
}
.trust-item i { color: var(--green); font-size: 0.8rem; }

/* ── STORE MOCKUP ────────────────────────────────────────────────────── */
.ec-hero__visual {
    animation: fadeUp 0.7s 0.3s both;
}
.store-mockup {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: visible;
    position: relative;
}
.mockup-bar {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 16px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    border-radius: 16px 16px 0 0;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #28ca41; }
.mockup-url {
    flex: 1; text-align: center;
    font-size: 0.72rem; color: var(--text-faint);
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 6px; padding: 3px 10px;
    font-family: monospace;
}
.mockup-body { padding: 14px; }

/* Nav row */
.mockup-nav {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
}
.mockup-logo-pill {
    width: 60px; height: 10px; border-radius: 5px;
    background: linear-gradient(90deg, var(--teal), var(--green)); opacity: 0.7;
}
.mockup-nav-links {
    display: flex; gap: 8px; flex: 1;
}
.mockup-nav-links span {
    width: 32px; height: 7px; border-radius: 4px;
    background: var(--border); flex-shrink: 0;
}
.mockup-cart {
    position: relative; font-size: 0.9rem; color: var(--teal);
}
.cart-badge {
    position: absolute; top: -6px; right: -8px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--green); color: #fff;
    font-size: 0.55rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
}

/* Hero strip */
.mockup-hero-strip {
    height: 90px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 10px;
    display: flex; align-items: center;
    padding: 14px 16px; gap: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}
.mockup-hero-text { flex: 1; }
.mh-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.35); margin-bottom: 7px; }
.mh-line--lg { width: 80%; }
.mh-line--md { width: 55%; }
.mh-btn {
    width: 56px; height: 18px; border-radius: 9px;
    background: var(--green); margin-top: 10px;
}
.mockup-hero-img {
    width: 60px; height: 60px; border-radius: 8px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Products row */
.mockup-products {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
}
.mockup-prod {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 9px; overflow: hidden;
    animation: fadeUp 0.5s var(--d, 0s) both;
}
.prod-img {
    height: 58px;
    background: linear-gradient(135deg, hsl(var(--hue, 170deg), 60%, 78%), hsl(var(--hue, 170deg), 50%, 60%));
}
.prod-info { padding: 6px 8px 4px; }
.prod-name { width: 70%; height: 6px; background: var(--border-strong); border-radius: 3px; margin-bottom: 5px; }
.prod-price { width: 45%; height: 7px; background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 3px; opacity: 0.7; }
.prod-add {
    margin: 0 8px 8px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff; border-radius: 6px;
    font-size: 0.62rem; font-weight: 700;
    padding: 4px 0; text-align: center;
    font-family: 'Syne', sans-serif;
}

/* Float cards */
.float-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    font-size: 0.78rem;
    animation: floatIn 0.6s 0.5s both;
}
@keyframes floatIn { from{opacity:0;transform:translateY(12px);}to{opacity:1;transform:translateY(0);} }
.float-card--revenue {
    bottom: -18px; left: -24px;
    animation-delay: 0.6s;
}
.float-card--orders {
    top: 60px; right: -28px;
    animation-delay: 0.75s;
}
.float-card > i { font-size: 1.1rem; color: var(--teal); flex-shrink: 0; }
.float-card strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text-head); line-height: 1; }
.float-card span { font-size: 0.68rem; color: var(--text-faint); }
.trend { margin-left: auto; font-size: 0.7rem; font-weight: 700; }
.trend--up { color: var(--green); }

/* ════════════════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════════════════ */
.ticker { overflow: hidden; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); padding: 13px 0; }
.ticker__track { display: flex; align-items: center; gap: 2rem; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
.ticker__track span { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.ticker__dot { font-size: 0.42rem !important; opacity: 0.4; }
@keyframes marquee { from{transform:translateX(0);}to{transform:translateX(-50%);} }

/* ════════════════════════════════════════════════════════════════════════
   METRICS STRIP
════════════════════════════════════════════════════════════════════════ */
.metrics-strip {
    padding: 60px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.metrics-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.metric {
    text-align: center; padding: 0 3rem;
    display: flex; flex-direction: column; align-items: center;
}
.metric__num {
    font-family: 'Syne', sans-serif;
    font-size: 3rem; font-weight: 800;
    color: var(--teal); line-height: 1;
    display: inline;
}
.metric__plus, .metric__suf {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--green); display: inline;
}
.metric__suf { font-size: 1.1rem; color: var(--text-muted); }
.metric__label {
    display: block; font-size: 0.75rem;
    color: var(--text-faint); text-transform: uppercase;
    letter-spacing: 0.1em; margin-top: 6px; font-weight: 600;
}
.metric-sep {
    width: 1px; height: 56px;
    background: var(--border-strong);
}

/* ════════════════════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════════════════════ */
.features {
    padding: 100px 0;
    background: var(--bg);
}
.features-header { margin-bottom: 3.5rem; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card--wide { grid-column: span 2; }

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-border);
}
.feature-card--accent {
    background: linear-gradient(135deg, var(--green-dim), rgba(0,121,120,0.06));
    border-color: var(--green-border);
}
.feature-card__icon {
    width: 48px; height: 48px;
    background: var(--green-dim); border: 1px solid var(--green-border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.feature-card h3 {
    font-size: 1.1rem; font-weight: 800;
    color: var(--text-head); margin-bottom: 0.65rem;
    display: flex; align-items: center; gap: 10px;
}
.feature-card p {
    font-size: 0.9rem; color: var(--text-muted);
    line-height: 1.65; margin-bottom: 1rem;
}
.feature-list { display: flex; flex-direction: column; gap: 6px; }
.feature-list li {
    font-size: 0.84rem; color: var(--text-muted);
    padding-left: 1.3rem; position: relative; line-height: 1.5;
}
.feature-list li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--green); font-size: 0.75rem; top: 2px;
}
.badge-new {
    font-size: 0.62rem; font-weight: 700;
    background: var(--green); color: #fff;
    padding: 2px 8px; border-radius: 99px;
    text-transform: uppercase; letter-spacing: 0.06em;
    font-family: 'DM Sans', sans-serif;
}
.payment-badges {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.5rem;
}
.payment-badges span {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 8px; font-size: 0.8rem; font-weight: 600;
    color: var(--text-body); font-family: 'Syne', sans-serif;
}
.payment-badges i { color: var(--teal); }

/* ════════════════════════════════════════════════════════════════════════
   TECH STACK
════════════════════════════════════════════════════════════════════════ */
.tech-stack {
    padding: 100px 0;
    background: var(--surface);
}
.tech-inner {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 6rem; align-items: center;
}
.tech-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.tech-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem;
    text-align: center;
    transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}
.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--green-border);
}
.tech-card__icon {
    width: 44px; height: 44px;
    background: var(--green-dim); border: 1px solid var(--green-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin: 0 auto 0.85rem;
}
.tech-card span {
    display: block; font-family: 'Syne', sans-serif;
    font-size: 0.88rem; font-weight: 700; color: var(--text-head);
    margin-bottom: 4px;
}
.tech-card p {
    font-size: 0.75rem; color: var(--text-faint); line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════════════════════════ */
.process {
    padding: 100px 0;
    background: var(--bg-alt);
}
.process .section-label { margin-top: 0; }
.process .section-title { margin-bottom: 3.5rem; }

.process-track {
    position: relative;
    display: flex; flex-direction: column; gap: 0;
}
.process-line {
    position: absolute; left: 28px; top: 32px; bottom: 32px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), var(--teal), transparent);
    border-radius: 2px;
}
.process-step {
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 0 0 2.5rem 0;
    position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__dot {
    width: 56px; height: 56px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--green), var(--teal));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.8rem;
    color: #fff;
    position: relative; z-index: 1;
    box-shadow: 0 0 0 6px var(--bg-alt);
}
.process-step__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem 2rem;
    flex: 1;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.process-step__card:hover { border-color: var(--green-border); box-shadow: var(--shadow); }
.process-step__icon {
    width: 40px; height: 40px;
    background: var(--green-dim); border: 1px solid var(--green-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 0.95rem;
    margin-bottom: 0.85rem;
}
.process-step__card h4 { font-size: 1.1rem; font-weight: 800; color: var(--text-head); margin-bottom: 0.5rem; }
.process-step__card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.process-step__time {
    display: inline-block; margin-top: 1rem;
    font-size: 0.72rem; font-weight: 700;
    background: var(--green-dim); border: 1px solid var(--green-border);
    color: var(--teal); padding: 3px 10px; border-radius: 99px;
    font-family: 'Syne', sans-serif; letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════════════════ */
.pricing {
    padding: 100px 0;
    background: var(--surface);
}
.pricing-header { margin-bottom: 3.5rem; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: relative;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
    background: var(--surface);
    border-color: var(--green-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }

.pricing-card__popular {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff; font-size: 0.68rem; font-weight: 800;
    padding: 4px 14px; border-radius: 99px;
    font-family: 'Syne', sans-serif; text-transform: uppercase; letter-spacing: 0.1em;
    white-space: nowrap;
}
.pricing-card__tag {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--teal); margin-bottom: 1rem;
    font-family: 'Syne', sans-serif;
}
.pricing-card__price {
    margin-bottom: 0.85rem;
}
.price-from {
    display: block; font-size: 0.73rem; color: var(--text-faint);
    font-weight: 500; margin-bottom: 2px;
}
.pricing-card__price strong {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem; font-weight: 800;
    color: var(--text-head); display: block; line-height: 1;
}
.pricing-card__desc {
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 1.5rem;
}
.pricing-list {
    display: flex; flex-direction: column; gap: 9px;
    margin-bottom: 1.8rem;
}
.pricing-list li {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.87rem; color: var(--text-body);
}
.pricing-list li i { font-size: 0.75rem; flex-shrink: 0; }
.pricing-list li i.fa-check { color: var(--green); }
.pricing-list li i.fa-times { color: var(--text-faint); }
.pricing-list__muted { color: var(--text-faint) !important; }

.pricing-note {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 18px;
    font-size: 0.85rem; color: var(--text-muted);
    margin-top: 2rem; line-height: 1.65;
}
.pricing-note i { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ════════════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════════════ */
.faq { padding: 100px 0; background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 6rem; align-items: start; }
.faq-left { position: sticky; top: 90px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
    width: 100%; text-align: left;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.3rem 0;
    font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--text-head); background: none; border: none; cursor: pointer;
    transition: color 0.2s;
}
.faq-item__q:hover { color: var(--teal); }
.faq-item__q i { font-size: 0.75rem; color: var(--teal); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.is-open .faq-item__q i { transform: rotate(45deg); }
.faq-item.is-open .faq-item__q { color: var(--teal); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; }
.faq-item.is-open .faq-item__a { max-height: 400px; padding-bottom: 1.3rem; }
.faq-item__a p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════════════
   OTHER SERVICES
════════════════════════════════════════════════════════════════════════ */
.other-services {
    padding: 100px 0;
    background: var(--surface);
}
.other-services .section-title { margin-bottom: 2.5rem; }
.other-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.other-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    display: flex; flex-direction: column;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
    color: inherit;
}
.other-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-border);
}
.other-card__icon {
    width: 44px; height: 44px;
    background: var(--green-dim); border: 1px solid var(--green-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 1rem; margin-bottom: 1rem;
}
.other-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-head); margin-bottom: 0.5rem; }
.other-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
.other-card__link {
    font-size: 0.82rem; font-weight: 700; color: var(--teal);
    display: flex; align-items: center; gap: 6px;
    font-family: 'Syne', sans-serif; transition: gap 0.2s;
}
.other-card:hover .other-card__link { gap: 10px; }

/* ════════════════════════════════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════════════════════════════════ */
.cta-strip {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    padding: 80px 0;
}
.cta-strip__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; flex-wrap: wrap;
}
.cta-strip__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 0.5rem;
}
.cta-strip__desc { font-size: 1rem; color: rgba(255,255,255,0.68); }
.cta-strip__actions { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.cta-strip__contact { display: flex; flex-direction: column; gap: 6px; }
.cta-strip__contact a {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.cta-strip__contact a:hover { color: var(--green); }
.cta-strip__contact i { font-size: 0.75rem; color: var(--green); }

/* ════════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════════ */
.footer { background: var(--teal-dark); padding: 70px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 5rem; margin-bottom: 3.5rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand__desc { font-size: 0.87rem; color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--green); color: var(--green); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.footer-col a, .footer-col span { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.58); margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.42); }

/* ════════════════════════════════════════════════════════════════════════
   CHATBOT
════════════════════════════════════════════════════════════════════════ */
.chatbot { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.chatbot__toggle { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--teal)); color: #fff; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,121,120,0.42); transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; }
.chatbot__toggle:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(0,121,120,0.5); }
#chatCloseIcon { display: none; }
.chatbot__box { position: absolute; bottom: 64px; right: 0; width: 355px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; display: none; flex-direction: column; max-height: 510px; }
.chatbot__box.is-open { display: flex; animation: chatIn 0.22s var(--ease); }
@keyframes chatIn { from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);} }
.chatbot__header { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); padding: 14px 18px; display: flex; align-items: center; gap: 11px; }
.chatbot__avatar { width: 34px; height: 34px; background: rgba(255,255,255,0.2); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.75rem; }
.chatbot__header strong { display: block; font-size: 0.88rem; color: #fff; }
.chatbot__header span { font-size: 0.72rem; color: rgba(255,255,255,0.72); }
.chatbot__messages { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 9px; min-height: 140px; background: var(--bg); }
.chat-msg { max-width: 85%; padding: 9px 13px; border-radius: 11px; font-size: 0.83rem; line-height: 1.5; animation: msgIn 0.2s ease; white-space: pre-wrap; }
@keyframes msgIn { from{opacity:0;transform:translateY(6px);}to{opacity:1;transform:translateY(0);} }
.chat-msg.bot { background: var(--surface); border: 1px solid var(--border); color: var(--text-body); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-msg.user { background: linear-gradient(135deg, var(--green), var(--teal)); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; font-weight: 500; }
.chatbot__quick { padding: 9px 12px; display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px solid var(--border); background: var(--surface); }
.chatbot__quick button { padding: 5px 11px; font-size: 0.73rem; background: transparent; border: 1px solid var(--border-strong); border-radius: 99px; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.chatbot__quick button:hover { border-color: var(--teal); color: var(--teal); }
.chatbot__input { display: flex; gap: 8px; padding: 11px 14px; border-top: 1px solid var(--border); background: var(--surface); }
.chatbot__input input { flex: 1; background: var(--bg); border: 1px solid var(--border); color: var(--text-body); padding: 8px 13px; border-radius: 99px; font-family: 'DM Sans', sans-serif; font-size: 0.83rem; outline: none; transition: border-color 0.2s; }
.chatbot__input input:focus { border-color: var(--green); }
.chatbot__input input::placeholder { color: var(--text-faint); }
.chatbot__input button { width: 34px; height: 34px; background: linear-gradient(135deg, var(--green), var(--teal)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; flex-shrink: 0; transition: transform 0.2s; }
.chatbot__input button:hover { transform: scale(1.1); }

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
    .ec-hero__inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .ec-hero__visual { max-width: 520px; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .feature-card--wide { grid-column: span 2; }
    .tech-inner { grid-template-columns: 1fr; gap: 3rem; }
    .other-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 860px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-4px); }
    .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
    .faq-left { position: static; }
    .metrics-grid { gap: 2rem; }
    .metric-sep { display: none; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .ec-hero { padding: 90px 0 60px; }
    .ec-hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card--wide { grid-column: span 1; }
    .other-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip__inner { flex-direction: column; align-items: flex-start; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .chatbot__box { width: calc(100vw - 48px); }
    .float-card--revenue { left: 0; bottom: -14px; }
    .float-card--orders { right: 0; top: 50px; }
    .process-line { left: 22px; }
    .process-step__dot { width: 44px; height: 44px; font-size: 0.72rem; }
}
@media (max-width: 560px) {
    .other-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .ec-hero__actions { flex-direction: column; align-items: flex-start; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { flex-direction: column; gap: 1.5rem; }
}
