/* ============================================================
   HellasCart — SaaS Landing Page CSS
   Design inspiration: Ecwid / Stripe / Shopify
   Scoped to body.hc-landing only — zero impact on tenant stores
   ============================================================ */

/* ── Google Fonts loaded via <link preconnect> in blade <head>
   (NOT via @import — @import stalls CSS parsing, costs ~200ms) ── */

/* ── Tabler Icons CLS prevention ──────────────────────────────
   Icons are loaded async to avoid render-blocking.
   Before the icon font arrives, reserve exactly 1em × 1em so
   the surrounding layout does NOT shift when the font loads.
   ─────────────────────────────────────────────────────────── */
body.hc-landing i[class*="ti ti-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.125em;
  font-style: normal;
}

/* ── Reset & Base ─────────────────────────────────────────────── */
body.hc-landing {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.hc-landing *, body.hc-landing *::before, body.hc-landing *::after {
  box-sizing: border-box;
}

/* ── CSS Variables ────────────────────────────────────────────── */
body.hc-landing {
  --hc-primary:       #1d9ff8;   /* rgb(29,159,248) — CS-Cart-matched blue  */
  --hc-primary-dark:  #0c8de0;   /* hover / active state                    */
  --hc-primary-light: #e8f5fe;   /* light tint for badges, icon bgs         */
  --hc-green:         #059669;
  --hc-green-light:   #ecfdf5;
  --hc-dark:          #0f172a;
  --hc-dark-2:        #1e293b;
  --hc-text:          #475569;
  --hc-text-light:    #94a3b8;
  --hc-border:        #e2e8f0;
  --hc-bg:            #f8fafc;
  --hc-bg-2:          #f1f5f9;
  --hc-white:         #ffffff;
  --hc-radius:        12px;
  --hc-radius-lg:     20px;
  --hc-shadow:        0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --hc-shadow-md:     0 4px 24px rgba(29,159,248,.12);
  --hc-shadow-lg:     0 20px 60px rgba(0,0,0,.1);
}

/* ── Typography ───────────────────────────────────────────────── */
body.hc-landing h1, body.hc-landing h2, body.hc-landing h3,
body.hc-landing h4, body.hc-landing h5, body.hc-landing h6 {
  font-family: 'Inter', sans-serif !important;
  color: var(--hc-dark);
  font-weight: 700;
  line-height: 1.2;
}

body.hc-landing .hc-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hc-primary);
  margin-bottom: 12px;
}

body.hc-landing .hc-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

body.hc-landing .hc-section-subtitle {
  font-size: 18px;
  color: var(--hc-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Section Spacing ──────────────────────────────────────────── */
body.hc-landing .hc-section {
  padding: 96px 0;
}

body.hc-landing .hc-section-sm {
  padding: 64px 0;
}

body.hc-landing .hc-section-lg {
  padding: 120px 0;
}

/* ── Buttons ──────────────────────────────────────────────────── */
body.hc-landing .hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

body.hc-landing .hc-btn-primary {
  background: var(--hc-primary);
  color: #fff;
  border-color: var(--hc-primary);
}
body.hc-landing .hc-btn-primary:hover {
  background: var(--hc-primary-dark);
  border-color: var(--hc-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
}

body.hc-landing .hc-btn-outline {
  background: transparent;
  color: var(--hc-dark);
  border-color: var(--hc-border);
}
body.hc-landing .hc-btn-outline:hover {
  border-color: var(--hc-primary);
  color: var(--hc-primary);
  transform: translateY(-1px);
}

body.hc-landing .hc-btn-white {
  background: #fff;
  color: var(--hc-primary);
  border-color: #fff;
}
body.hc-landing .hc-btn-white:hover {
  background: var(--hc-primary-light);
  border-color: var(--hc-primary-light);
  color: var(--hc-primary-dark);
}

body.hc-landing .hc-btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
body.hc-landing .hc-btn-ghost:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

body.hc-landing .hc-btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}

/* ── Navbar ───────────────────────────────────────────────────── */
body.hc-landing .hc-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hc-border);
  transition: box-shadow .2s;
}

body.hc-landing .hc-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

body.hc-landing .hc-nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

body.hc-landing .hc-nav-logo {
  flex-shrink: 0;
  text-decoration: none;
}

body.hc-landing .hc-nav-logo img {
  height: 36px;
  width: auto;
}

body.hc-landing .hc-nav-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--hc-primary);
  letter-spacing: -.03em;
}

body.hc-landing .hc-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

body.hc-landing .hc-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--hc-dark-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .15s;
}

body.hc-landing .hc-nav-links a:hover {
  color: var(--hc-primary);
  background: var(--hc-primary-light);
}

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

body.hc-landing .hc-nav-actions .hc-btn {
  padding: 9px 20px;
  font-size: 14px;
}

/* Lang switcher */
body.hc-landing .hc-lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--hc-border);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--hc-dark-2);
  text-decoration: none;
  transition: .15s;
}
body.hc-landing .hc-lang-switcher:hover {
  border-color: var(--hc-primary);
  color: var(--hc-primary);
}

/* Mobile hamburger */
body.hc-landing .hc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  margin-left: auto;
}
body.hc-landing .hc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hc-dark);
  border-radius: 2px;
  transition: .3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — CS-Cart structure: centered text / dominant screenshot below
   ─────────────────────────────────────────────────────────────────
   Layout:
     1. badge (centered)
     2. huge headline (centered)
     3. subtitle (centered, max 560px)
     4. CTA buttons (centered row)
     5. note + trust row (centered)
     6. .hc-hero-visual — full bleed screenshot strip:
          [float-left]  [MAIN centered screenshot]  [float-right]
   ═══════════════════════════════════════════════════════════════ */

/*
 * ═══════════════════════════════════════════════════════════════
 * HERO — exact CS-Cart visual structure & proportions
 *
 * CS-Cart reference measurements (1440px viewport):
 *   nav → badge gap  : ~48px (not 96)
 *   badge             : 13px/600, pill, ligh-blue tint
 *   headline line 1   : ~56px/800, blue (line: "Fast, Flexible…")
 *   headline line 2   : ~56px/800, dark (line: "eCommerce Platform")
 *   between h lines   : ~4px (tight, one block)
 *   subtitle          : 18px/400, dark-gray, centered
 *   CTA gap           : 28px above button
 *   button            : 52px tall, 24px horizontal pad, 8px radius
 *   trust gap         : 24px below button
 *   trust row         : 14px/500
 *   screenshot gap    : 56px below trust
 * ═══════════════════════════════════════════════════════════════
 */
body.hc-landing .hc-hero {
  background: #ffffff;
  padding: 24px 0 0;   /* tight nav→badge gap — matches CS-Cart */
  position: relative;
  overflow: hidden;
  text-align: center;
}
body.hc-landing .hc-hero::before,
body.hc-landing .hc-hero::after { display: none; }

/* ── Centered text block — wide enough to keep headline on ONE line ── */
body.hc-landing .hc-hero-text {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Badge pill — CS-Cart style ── */
body.hc-landing .hc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hc-primary-light);
  border: 1px solid rgba(29,159,248,.22);
  color: var(--hc-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;    /* CS-Cart ~28px badge→headline gap */
  letter-spacing: .01em;
}
body.hc-landing .hc-hero-badge .badge-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hc-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes hc-dot-pulse {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

/* ── Headline — CS-Cart exact scale ── */
body.hc-landing .hc-hero-headline {
  margin: 0 0 20px;      /* headline → subtitle gap */
  line-height: 1.08;
  white-space: nowrap;   /* prevent line wrap — keep on 1 line like CS-Cart */
}

/* Line 1: "Free, Flexible, and Scalable" — CS-Cart gradient (purple→light blue) */
body.hc-landing .hc-hl-main {
  display: block;
  font-size: clamp(40px, 5vw, 72px);     /* 5vw@1440=72px — CS-Cart scale, fits 1 line */
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  /* CS-Cart exact gradient from DevTools: 118.94deg, #7381FD → #76C7FF */
  background: linear-gradient(118.94deg, #7381FD -12.54%, #76C7FF 105.75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Line 2: "eCommerce Platform" — dark, same scale as CS-Cart */
body.hc-landing .hc-hl-sub {
  display: block;
  font-size: clamp(40px, 5vw, 72px);     /* identical scale as line 1 */
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: #1a1a2e;          /* CS-Cart dark headline color */
  margin-top: 0;
}

/* ── Subtitle — CS-Cart style ── */
body.hc-landing .hc-hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: #3d3d4e;           /* CS-Cart subtitle color — slightly dark-gray */
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 28px;     /* CS-Cart ~28px subtitle→button gap */
}

/* ── CTA row — CS-Cart: centered, 52px-tall buttons ── */
body.hc-landing .hc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body.hc-landing .hc-hero-cta .hc-btn {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;      /* CS-Cart uses moderate radius, not pill */
  min-height: 52px;
}

/* ── Note ── */
body.hc-landing .hc-hero-note {
  font-size: 13px;
  color: var(--hc-text-light);
  margin: 0 0 24px;
}

/* ── Trust row — CS-Cart style ── */
body.hc-landing .hc-hero-trust-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
body.hc-landing .hc-hero-trust-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}
body.hc-landing .hc-hero-trust-sep {
  color: var(--hc-border);
}
body.hc-landing .hc-hero-trust-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--hc-text);
}

/* ═══════════════════════════════════════════════════════════════
   SCREENSHOT VISUAL — full-bleed strip below text
   main screenshot centered, two smaller floats left & right,
   partially behind main (z-index layering)
   ═══════════════════════════════════════════════════════════════ */
body.hc-landing .hc-hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 56px;    /* CS-Cart trust row → screenshot gap */
}

/* Positioning context for floats */
body.hc-landing .hc-screen-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ONE dominant main screenshot (z:2 — in front of floats) ── */
body.hc-landing .hc-screen-main {
  position: relative;
  z-index: 2;
  margin: 0 200px;                /* leaves 200px on each side for floats */
  border-radius: 16px 16px 0 0;  /* no bottom radius — blends into trust bar */
  overflow: hidden;
  background: var(--hc-bg-2);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 40px 80px rgba(0,0,0,.13),
    0 12px 32px rgba(37,99,235,.07);
  animation: hc-screen-rise .7s cubic-bezier(.22,.61,.36,1) both .12s;
}
@keyframes hc-screen-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Browser chrome */
body.hc-landing .hc-chrome-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 36px;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}
body.hc-landing .hc-chrome-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
body.hc-landing .hc-chrome-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  height: 22px;
  font-size: 11px;
  color: var(--hc-text-light);
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin-left: 8px;
  overflow: hidden;
  white-space: nowrap;
}
body.hc-landing .hc-screen-main a {
  display: block;
  line-height: 0;     /* removes gap under img */
}
body.hc-landing .hc-screen-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  max-height: 460px;
}

/* ── Floating secondary screenshots (z:1 — behind main) ── */
body.hc-landing .hc-screen-float {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 220px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  background: var(--hc-bg-2);
  box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
}
body.hc-landing .hc-screen-float a  { display: block; line-height: 0; }
body.hc-landing .hc-screen-float img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Left float: leans left, upper area */
body.hc-landing .hc-screen-float--left {
  left: 24px;
  top: 32px;
  transform: rotate(-4deg);
  animation: hc-float-l .6s cubic-bezier(.22,.61,.36,1) both .4s;
}
@keyframes hc-float-l {
  from { opacity: 0; transform: rotate(-4deg) translateX(-18px); }
  to   { opacity: 1; transform: rotate(-4deg) translateX(0); }
}

/* Right float: leans right, slightly lower */
body.hc-landing .hc-screen-float--right {
  right: 24px;
  top: 64px;
  transform: rotate(3.5deg);
  animation: hc-float-r .6s cubic-bezier(.22,.61,.36,1) both .5s;
}
@keyframes hc-float-r {
  from { opacity: 0; transform: rotate(3.5deg) translateX(18px); }
  to   { opacity: 1; transform: rotate(3.5deg) translateX(0); }
}

/* Hover: float comes to front */
body.hc-landing .hc-screen-float:hover { z-index: 4; }
body.hc-landing .hc-screen-float--left:hover  { transform: rotate(-2deg) scale(1.03); transition: transform .25s; }
body.hc-landing .hc-screen-float--right:hover { transform: rotate(2deg)  scale(1.03); transition: transform .25s; }

/* ── Theme thumb (used in showcase section below hero — unchanged) ── */
@keyframes hc-card-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.hc-landing .hc-theme-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 40px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.3);
  aspect-ratio: 16/10;
  background: rgba(255,255,255,.06);
  transition: transform .32s ease, box-shadow .32s;
  display: block;
  text-decoration: none;
}
body.hc-landing .hc-theme-thumb:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 24px 56px rgba(0,0,0,.52), 0 4px 12px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.28);
}
body.hc-landing .hc-theme-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block; transition: transform .5s ease;
}
body.hc-landing .hc-theme-thumb:hover img { transform: scale(1.06); }

/* ── Shared card label (bottom gradient) — used by BOTH hero & showcase ── */
body.hc-landing .hc-theme-thumb-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 56px 14px 14px;
  background: linear-gradient(transparent, rgba(2,4,16,.94));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* ── Shared hover overlay — used by BOTH hero & showcase ── */
body.hc-landing .hc-theme-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,100,.92) 0%, rgba(5,10,40,.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 2;
}
body.hc-landing .hc-theme-thumb:hover .hc-theme-thumb-overlay,
body.hc-landing .hc-theme-showcase-card:hover .hc-theme-thumb-overlay {
  opacity: 1;
}
body.hc-landing .hc-theme-thumb-overlay .ov-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: border-color .2s, background .2s;
}
body.hc-landing .hc-theme-thumb:hover .ov-icon {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
}
body.hc-landing .hc-theme-thumb-overlay .ov-text {
  color: rgba(255,255,255,.9);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── Trust / Stats Bar ────────────────────────────────────────── */
body.hc-landing .hc-trust-bar {
  background: var(--hc-white);
  border-bottom: 1px solid var(--hc-border);
  padding: 0;
}

body.hc-landing .hc-trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

body.hc-landing .hc-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  border-right: 1px solid var(--hc-border);
}
body.hc-landing .hc-trust-item:last-child {
  border-right: none;
}

body.hc-landing .hc-trust-icon {
  width: 40px;
  height: 40px;
  background: var(--hc-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-primary);
  font-size: 18px;
  flex-shrink: 0;
}

body.hc-landing .hc-trust-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-dark);
  line-height: 1.2;
}
body.hc-landing .hc-trust-text span {
  font-size: 13px;
  color: var(--hc-text-light);
}

/* ── Section Backgrounds ──────────────────────────────────────── */
body.hc-landing .hc-bg-white   { background: #fff; }
body.hc-landing .hc-bg-light   { background: var(--hc-bg); }
body.hc-landing .hc-bg-dark    { background: var(--hc-dark); }
body.hc-landing .hc-bg-primary { background: var(--hc-primary); }

/* ══════════════════════════════════════════════════════════════
   "WHAT YOU CAN BUILD" SECTION — CS-Cart 2-col grid style
══════════════════════════════════════════════════════════════ */

/* Big centred title */
body.hc-landing .hc-build-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--hc-dark);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin: 0;
}

body.hc-landing .hc-build-title-accent {
  color: var(--hc-primary);
}

/* 2-column grid, 4 rows = 8 cards */
body.hc-landing .hc-build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Base card */
body.hc-landing .hc-build-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 28px 28px 24px;
  border: 1px solid var(--hc-border);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  cursor: default;
}

body.hc-landing .hc-build-card:hover {
  border-color: var(--hc-primary);
  box-shadow: 0 8px 32px rgba(37,99,235,.1);
  transform: translateY(-2px);
}

/* Featured card (first) — blue border accent */
body.hc-landing .hc-build-card--featured {
  border-color: var(--hc-primary);
  box-shadow: 0 4px 24px rgba(37,99,235,.12);
}

/* Icon */
body.hc-landing .hc-build-card-icon {
  width: 44px;
  height: 44px;
  background: var(--hc-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-primary);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

body.hc-landing .hc-build-card--featured .hc-build-card-icon {
  background: var(--hc-primary);
  color: #fff;
}

/* Card body */
body.hc-landing .hc-build-card-body {
  flex: 1;
  min-width: 0;
}

body.hc-landing .hc-build-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--hc-dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

body.hc-landing .hc-build-card-title--featured {
  color: var(--hc-primary);
}

body.hc-landing .hc-build-card-desc {
  font-size: 14px;
  color: var(--hc-text);
  line-height: 1.6;
  margin: 0 0 12px;
}

body.hc-landing .hc-build-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--hc-primary);
  display: inline-block;
  transition: letter-spacing .15s;
}

body.hc-landing .hc-build-card:hover .hc-build-card-link {
  letter-spacing: .02em;
}

/* Responsive: single column on mobile */
@media (max-width: 767px) {
  body.hc-landing .hc-build-grid {
    grid-template-columns: 1fr;
  }
  body.hc-landing .hc-build-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}

/* ── Feature Cards ────────────────────────────────────────────── */
body.hc-landing .hc-feature-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-lg);
  padding: 28px;
  transition: all .25s ease;
  height: 100%;
}
body.hc-landing .hc-feature-card:hover {
  border-color: var(--hc-primary);
  box-shadow: var(--hc-shadow-md);
  transform: translateY(-2px);
}

body.hc-landing .hc-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--hc-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-primary);
  font-size: 22px;
  margin-bottom: 16px;
}

body.hc-landing .hc-feature-card h3, body.hc-landing .hc-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 8px;
}

body.hc-landing .hc-feature-card p {
  font-size: 14px;
  color: var(--hc-text);
  margin: 0;
  line-height: 1.6;
}

/* ── Themes Showcase ──────────────────────────────────────────── */
body.hc-landing .hc-theme-showcase-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  aspect-ratio: 16/10;    /* same ratio as hero cards — top-crop via object-position */
  background: var(--hc-bg-2);
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
}
body.hc-landing .hc-theme-showcase-card:hover {
  box-shadow: 0 14px 44px rgba(0,0,0,.22);
  transform: translateY(-5px);
}

/* Top-crop — shows only header+hero, no scroll */
body.hc-landing .hc-theme-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
body.hc-landing .hc-theme-showcase-card:hover img {
  transform: scale(1.05);
}

/* ── Dashboard Preview ────────────────────────────────────────── */
body.hc-landing .hc-dashboard-frame {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow-lg);
}

body.hc-landing .hc-dashboard-frame .frame-bar {
  background: var(--hc-bg);
  border-bottom: 1px solid var(--hc-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.hc-landing .hc-dashboard-frame .frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

body.hc-landing .hc-dashboard-frame img {
  width: 100%;
  display: block;
}

/* ── Shipping / Integration Cards ─────────────────────────────── */
body.hc-landing .hc-integration-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
  box-shadow: var(--hc-shadow);
}

body.hc-landing .hc-integration-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 24px;
  transition: all .25s;
  text-align: center;
  height: 100%;
}
body.hc-landing .hc-integration-card:hover {
  border-color: var(--hc-primary);
  box-shadow: var(--hc-shadow-md);
  transform: translateY(-2px);
}
body.hc-landing .hc-integration-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 6px;
}
body.hc-landing .hc-integration-card p {
  font-size: 13px;
  color: var(--hc-text);
  margin: 0;
}

/* ── WhatsApp Section ─────────────────────────────────────────── */
body.hc-landing .hc-wa-section {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
}

body.hc-landing .hc-wa-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

body.hc-landing .hc-wa-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.hc-landing .hc-wa-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  margin-bottom: 16px;
}
body.hc-landing .hc-wa-list li .check {
  width: 22px;
  height: 22px;
  background: #34d399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: #fff;
}

body.hc-landing .hc-wa-mockup {
  background: #075e54;
  border-radius: 20px;
  padding: 20px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
body.hc-landing .hc-wa-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 14px;
}
body.hc-landing .hc-wa-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
body.hc-landing .hc-wa-name {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
body.hc-landing .hc-wa-status {
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

body.hc-landing .hc-wa-msg {
  background: #128c7e;
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}
body.hc-landing .hc-wa-msg-time {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-align: right;
  margin-top: 4px;
}

/* ── POS Section ──────────────────────────────────────────────── */
body.hc-landing .hc-pos-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
body.hc-landing .hc-pos-icon {
  width: 44px;
  height: 44px;
  background: var(--hc-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-primary);
  font-size: 20px;
  flex-shrink: 0;
}
body.hc-landing .hc-pos-feature h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 4px;
}
body.hc-landing .hc-pos-feature p {
  font-size: 14px;
  color: var(--hc-text);
  margin: 0;
}

/* ── Pricing ──────────────────────────────────────────────────── */
body.hc-landing .hc-pricing-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all .25s;
  position: relative;
}
body.hc-landing .hc-pricing-card:hover {
  box-shadow: var(--hc-shadow-lg);
  transform: translateY(-4px);
}
body.hc-landing .hc-pricing-card.featured {
  border-color: var(--hc-primary);
  background: var(--hc-primary);
  color: #fff;
}
body.hc-landing .hc-pricing-card.featured h3,
body.hc-landing .hc-pricing-card.featured .hc-price,
body.hc-landing .hc-pricing-card.featured p {
  color: #fff;
}
body.hc-landing .hc-pricing-card.featured .hc-price-unit {
  color: rgba(255,255,255,.7);
}
body.hc-landing .hc-pricing-card.featured .hc-plan-feature li {
  color: rgba(255,255,255,.85);
}
body.hc-landing .hc-pricing-card.featured .hc-plan-feature li::before {
  color: #34d399;
}

body.hc-landing .hc-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.hc-landing .hc-plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hc-text);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
body.hc-landing .hc-pricing-card.featured .hc-plan-name {
  color: rgba(255,255,255,.7);
}

body.hc-landing .hc-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--hc-dark);
  line-height: 1;
  margin-bottom: 4px;
}
body.hc-landing .hc-price-unit {
  font-size: 14px;
  color: var(--hc-text-light);
  margin-bottom: 20px;
}

body.hc-landing .hc-plan-divider {
  border: none;
  border-top: 1px solid var(--hc-border);
  margin: 20px 0;
}
body.hc-landing .hc-pricing-card.featured .hc-plan-divider {
  border-color: rgba(255,255,255,.2);
}

body.hc-landing .hc-plan-feature {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
body.hc-landing .hc-plan-feature li {
  font-size: 14px;
  color: var(--hc-text);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
body.hc-landing .hc-plan-feature li::before {
  content: '✓';
  color: var(--hc-green);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
body.hc-landing .hc-faq-item {
  border-bottom: 1px solid var(--hc-border);
}
body.hc-landing .hc-faq-item:last-child {
  border-bottom: none;
}

body.hc-landing .hc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--hc-dark);
  user-select: none;
  gap: 16px;
}

body.hc-landing .hc-faq-q:hover {
  color: var(--hc-primary);
}

body.hc-landing .hc-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hc-bg);
  border: 1px solid var(--hc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: .2s;
  color: var(--hc-text);
}
body.hc-landing .hc-faq-item.open .hc-faq-icon {
  background: var(--hc-primary);
  border-color: var(--hc-primary);
  color: #fff;
  transform: rotate(45deg);
}

body.hc-landing .hc-faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--hc-text);
  line-height: 1.7;
}
body.hc-landing .hc-faq-item.open .hc-faq-a {
  display: block;
}

/* ── Final CTA ────────────────────────────────────────────────── */
body.hc-landing .hc-cta-section {
  background: linear-gradient(135deg, var(--hc-primary) 0%, #7c3aed 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.hc-landing .hc-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

body.hc-landing .hc-cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
body.hc-landing .hc-cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
body.hc-landing .hc-cta-section .hc-btn-white {
  font-size: 16px;
  padding: 15px 36px;
}

/* ── Footer ───────────────────────────────────────────────────── */
body.hc-landing .hc-footer {
  background: var(--hc-dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}

body.hc-landing .hc-footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}

body.hc-landing .hc-footer h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

body.hc-landing .hc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.hc-landing .hc-footer-links li {
  margin-bottom: 10px;
}
body.hc-landing .hc-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
}
body.hc-landing .hc-footer-links a:hover {
  color: #fff;
}

body.hc-landing .hc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ── Shipping section ─────────────────────────────────────────── */
body.hc-landing .hc-shipping-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .2s;
  height: 100%;
}
body.hc-landing .hc-shipping-card:hover {
  border-color: var(--hc-primary);
  box-shadow: var(--hc-shadow-md);
}
body.hc-landing .hc-shipping-icon {
  width: 42px;
  height: 42px;
  background: var(--hc-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-primary);
  font-size: 20px;
  flex-shrink: 0;
}
body.hc-landing .hc-shipping-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 4px;
}
body.hc-landing .hc-shipping-card p {
  font-size: 13px;
  color: var(--hc-text);
  margin: 0;
}

/* ── AI Tools Section ─────────────────────────────────────────── */
body.hc-landing .hc-ai-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
}
body.hc-landing .hc-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,.2);
  border: 1px solid rgba(139,92,246,.4);
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
body.hc-landing .hc-ai-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--hc-radius);
  padding: 24px;
  height: 100%;
  transition: all .25s;
}
body.hc-landing .hc-ai-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(139,92,246,.4);
}
body.hc-landing .hc-ai-card .hc-ai-icon {
  width: 44px;
  height: 44px;
  background: rgba(139,92,246,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 20px;
  margin-bottom: 14px;
}
body.hc-landing .hc-ai-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
body.hc-landing .hc-ai-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* ── Marketing Section ────────────────────────────────────────── */
body.hc-landing .hc-marketing-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hc-green-light);
  color: var(--hc-green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
body.hc-landing .hc-marketing-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--hc-border);
}
body.hc-landing .hc-marketing-card:last-child {
  border-bottom: none;
}
body.hc-landing .hc-marketing-card .hc-m-icon {
  width: 40px;
  height: 40px;
  background: var(--hc-green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-green);
  font-size: 18px;
  flex-shrink: 0;
}
body.hc-landing .hc-marketing-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 3px;
}
body.hc-landing .hc-marketing-card p {
  font-size: 13px;
  color: var(--hc-text);
  margin: 0;
}

/* ── Notification / Alert Bar ─────────────────────────────────── */
body.hc-landing .hc-topbar {
  background: var(--hc-primary);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
}
body.hc-landing .hc-topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ── Responsive ───────────────────────────────────────────────── */

/* Global overflow lock — prevents horizontal scroll without breaking sticky navbar.
   overflow-x: clip  →  clips overflow like hidden but does NOT create a scroll container,
   so position:sticky on .hc-navbar keeps working. */
body.hc-landing {
  overflow-x: clip;
  max-width: 100%;
}
/* Hero and other sections can safely use hidden (no sticky children inside) */
body.hc-landing .hc-hero {
  overflow-x: hidden;
}

/* ── Hero responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Hide screenshot visual on tablet/mobile.
     Themes showcase section below still shows all themes. */
  body.hc-landing .hc-hero-visual { display: none !important; }
  body.hc-landing .hc-hero { padding-bottom: 64px; }

  /* Navbar: hide desktop links + login button */
  body.hc-landing .hc-nav-links,
  body.hc-landing .hc-nav-actions .hc-btn-outline { display: none; }
  body.hc-landing .hc-nav-toggle { display: flex; }
  body.hc-landing .hc-nav-inner { gap: 12px; }
  body.hc-landing .hc-mobile-menu {
    display: block;
    background: #fff;
    border-top: 1px solid var(--hc-border);
    padding: 16px 0;
  }
  body.hc-landing .hc-mobile-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--hc-dark-2);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
  }
  body.hc-landing .hc-mobile-menu a:hover { color: var(--hc-primary); }
  body.hc-landing .hc-mobile-menu .hc-btn { margin: 8px 24px; display: flex; justify-content: center; }
}

@media (max-width: 767px) {
  body.hc-landing .hc-section { padding: 64px 0; }
  body.hc-landing .hc-hero { padding: 32px 0 48px; }
  body.hc-landing .hc-hero-headline { white-space: normal; }  /* allow wrap on mobile */
  body.hc-landing .hc-hl-main,
  body.hc-landing .hc-hl-sub   { font-size: clamp(28px, 8vw, 44px); }
  body.hc-landing .hc-hero-sub { font-size: 16px; }
  body.hc-landing .hc-hero-cta .hc-btn { padding: 12px 26px; font-size: 15px; min-height: 46px; }
  body.hc-landing .hc-trust-item { padding: 16px 20px; }
  body.hc-landing .hc-trust-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--hc-border); }
  body.hc-landing .hc-trust-inner { flex-direction: column; }
  body.hc-landing .hc-footer-bottom { flex-direction: column; text-align: center; }
  body.hc-landing .hc-cta-section { padding: 64px 0; }
}

@media (max-width: 575px) {
  body.hc-landing .hc-nav-actions .hc-btn-primary { display: none; }
  body.hc-landing .hc-nav-logo img { height: 30px; }
  body.hc-landing .container { padding: 0 16px; }
  body.hc-landing .hc-hero { padding: 28px 0 40px; }
  body.hc-landing .hc-hl-main,
  body.hc-landing .hc-hl-sub   { font-size: clamp(24px, 8.5vw, 36px); }
  body.hc-landing .hc-hero-sub { font-size: 15px; max-width: 100%; }
}

@media (max-width: 480px) {
  body.hc-landing .hc-hero-cta { flex-direction: column; }
  body.hc-landing .hc-hero-cta .hc-btn { width: 100%; justify-content: center; }
  body.hc-landing .hc-hl-main,
  body.hc-landing .hc-hl-sub   { font-size: clamp(22px, 8vw, 30px); }
}

/* ══════════════════════════════════════════════════════════════
   SUPPORT 24/7 SECTION
══════════════════════════════════════════════════════════════ */
body.hc-landing .hc-support-section {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}
body.hc-landing .hc-support-badge-24 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--hc-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  letter-spacing: -1px;
  box-shadow: 0 0 0 16px rgba(37,99,235,.12), 0 8px 28px rgba(37,99,235,.28);
}
body.hc-landing .hc-support-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
body.hc-landing .hc-support-channel {
  background: #fff;
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-lg);
  padding: 40px 24px 36px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 8px 32px rgba(0,0,0,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
body.hc-landing .hc-support-channel:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
  border-color: #bfdbfe;
}
body.hc-landing .hc-support-channel-icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 38px;
}
body.hc-landing .hc-support-channel h3, body.hc-landing .hc-support-channel h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hc-dark);
  margin: 0 0 10px;
}
body.hc-landing .hc-support-channel p {
  font-size: 14px;
  color: var(--hc-text);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   CUSTOM DEVELOPMENT SECTION
══════════════════════════════════════════════════════════════ */
body.hc-landing .hc-custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
body.hc-landing .hc-custom-card {
  background: #fff;
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
body.hc-landing .hc-custom-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 28px rgba(37,99,235,.08);
  transform: translateY(-2px);
}
body.hc-landing .hc-custom-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
body.hc-landing .hc-custom-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-dark);
  margin: 0 0 5px;
}
body.hc-landing .hc-custom-card p {
  font-size: 13px;
  color: var(--hc-text);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 991px) {
  body.hc-landing .hc-support-channels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  body.hc-landing .hc-support-channels { grid-template-columns: repeat(2, 1fr); }
  body.hc-landing .hc-custom-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body.hc-landing .hc-support-channels { grid-template-columns: 1fr; }
}

/* ── Utilities ────────────────────────────────────────────────── */
body.hc-landing .text-center { text-align: center; }
body.hc-landing .mb-0 { margin-bottom: 0 !important; }
body.hc-landing .mb-2 { margin-bottom: 8px; }
body.hc-landing .mb-3 { margin-bottom: 16px; }
body.hc-landing .mb-4 { margin-bottom: 24px; }
body.hc-landing .mb-5 { margin-bottom: 40px; }
body.hc-landing .mt-4 { margin-top: 24px; }
body.hc-landing .mt-5 { margin-top: 40px; }
body.hc-landing .d-flex { display: flex; }
body.hc-landing .align-items-center { align-items: center; }
body.hc-landing .justify-content-center { justify-content: center; }
body.hc-landing .gap-3 { gap: 16px; }
body.hc-landing .flex-wrap { flex-wrap: wrap; }
body.hc-landing .w-100 { width: 100%; }

/* ================================================================
   MOBILE BOTTOM NAVIGATION BAR
   Hidden on desktop — shown on ≤ 991px as a fixed app-like bar
   ================================================================ */
body.hc-landing .hc-bottom-nav {
  display: none; /* hidden by default — shown via media query below */
}

@media (max-width: 991px) {
  /* Show the bar */
  body.hc-landing .hc-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.10);
    height: 62px;
    align-items: stretch;
    justify-content: space-around;
    padding: 0;
    /* Safe area for iPhone notch/home indicator */
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* Push page content above the bar */
  body.hc-landing {
    padding-bottom: 62px;
  }

  /* Each nav item */
  body.hc-landing .hc-bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    text-decoration: none;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 6px 4px 4px;
    transition: color .15s, background .15s;
    border-top: 2px solid transparent;
    position: relative;
  }

  body.hc-landing .hc-bnav-item i {
    font-size: 22px;
    line-height: 1;
    transition: transform .2s;
  }

  /* Hover */
  body.hc-landing .hc-bnav-item:hover {
    color: var(--hc-primary);
    background: #f8fafc;
  }

  /* Active state */
  body.hc-landing .hc-bnav-item.active {
    color: var(--hc-primary);
    border-top-color: var(--hc-primary);
  }
  body.hc-landing .hc-bnav-item.active i {
    transform: translateY(-2px);
  }

  /* CTA item — "Start Free" — always highlighted */
  body.hc-landing .hc-bnav-item.hc-bnav-cta {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-top-color: transparent;
    border-radius: 0;
  }
  body.hc-landing .hc-bnav-item.hc-bnav-cta:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    color: #ffffff;
  }
  body.hc-landing .hc-bnav-item.hc-bnav-cta i {
    color: #ffffff;
  }
}
