/* ============================================================
   SUJA Healthcare Theme — Main Stylesheet
   ============================================================ */

/* ---- Global responsive guard: prevent horizontal page scroll site-wide
   without breaking vertical position:sticky. Uses `overflow-x: clip` (not
   `hidden`): `hidden` forces the paired axis to `auto`, turning html/body
   into a scroll container that hijacks descendant position:sticky (sticky
   heads/images scroll away). `clip` contains horizontal overflow without
   establishing a scroll container, so sticky keeps working. ---- */
html { overflow-x: clip; }
body { overflow-x: clip; max-width: 100%; }

/* ---- Anchor-link offset: the navbar is fixed, so a bare #anchor jump puts
   the section heading underneath it. scroll-margin-top pushes the landing
   position down by roughly the navbar height. Applies to any section given
   a CSS ID in Elementor (e.g. #products on Home, #research-model on
   Research). ---- */
.elementor-top-section[id],
.elementor-section[id],
[id][class*="suja-"][class*="showcase"] { scroll-margin-top: 104px; }

/* ======================== CSS VARIABLES ======================== */
:root {
  --bg: hsl(210, 33%, 98%);
  /* Global SUJA section background — the single shared tint used by every
     content section (between hero and footer) across all pages. Override
     per-section only when an intentional visual break is required. */
  --suja-section-bg: #edf4f9;
  --fg: hsl(215, 35%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-fg: hsl(215, 35%, 15%);
  --primary: hsl(215, 60%, 18%);
  --primary-fg: hsl(210, 40%, 98%);
  --muted: hsl(210, 30%, 95%);
  --muted-fg: hsl(215, 15%, 47%);
  --accent: hsl(18, 100%, 60%);
  --accent-fg: hsl(0, 0%, 100%);
  --border: hsl(214, 32%, 91%);
  --teal: hsl(189, 94%, 37%);
  --teal-fg: hsl(0, 0%, 100%);
  --coral: hsl(18, 100%, 60%);
  --hero-gradient: linear-gradient(135deg, hsl(210, 50%, 96%) 0%, hsl(200, 40%, 92%) 50%, hsl(210, 50%, 96%) 100%);
  --shadow: 0 4px 24px -4px hsla(215, 60%, 18%, 0.08);
  --shadow-lg: 0 12px 32px -8px hsla(215, 60%, 18%, 0.15);
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;

  /* ======== SUJA Typography Scale (CareCloud-inspired) ========
     Fluid sizes via clamp() — desktop / tablet / mobile in one.
     NOTE: --font-body and --font-heading above are FONT FAMILIES.
     Size variables are named --size-* to avoid collision; the
     legacy --font-h1..--font-small names remain for back-compat. */
  --size-h1:       clamp(34px, 4.6vw, 64px);   /* Hero */
  --size-h2:       clamp(28px, 3.4vw, 48px);   /* Section */
  --size-h3:       clamp(22px, 2.2vw, 32px);   /* Subsection */
  --size-h4:       clamp(18px, 1.5vw, 24px);   /* Card / Feature */
  --size-body-lg:  clamp(16px, 1.25vw, 18px);  /* Lead body / desc */
  --size-body:     clamp(15px, 1vw, 17px);     /* Default body */
  --size-small:    clamp(13px, 0.9vw, 15px);   /* Supporting text */
  --size-btn:      clamp(15px, 1vw, 17px);     /* Buttons */
  --size-nav:      16px;                       /* Top nav links */

  /* Legacy size aliases — kept so existing usages (theme.css,
     typography.css, ecosystem-tabs.css) keep working. The body /
     heading slots intentionally do NOT have legacy aliases because
     they conflict with the font-family variables. */
  --font-h1:       var(--size-h1);
  --font-h2:       var(--size-h2);
  --font-h3:       var(--size-h3);
  --font-h4:       var(--size-h4);
  --font-body-lg:  var(--size-body-lg);
  --font-small:    var(--size-small);
  --font-btn:      var(--size-btn);
  --font-nav:      var(--size-nav);

  --lh-h1:   1.12;
  --lh-h2:   1.15;
  --lh-h3:   1.25;
  --lh-h4:   1.35;
  --lh-body: 1.7;

  --ls-h1:   -0.025em;
  --ls-h2:   -0.02em;
  --ls-h3:   -0.012em;
  --ls-h4:   -0.005em;

  /* Vertical rhythm */
  --section-y:  clamp(64px, 8vw, 120px);
  --block-gap:  clamp(32px, 4vw, 56px);
  --text-gap:   clamp(12px, 1.5vw, 20px);
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--suja-section-bg); /* global content-section tint */
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   SUJA TYPOGRAPHY SYSTEM
   - Utility classes (.suja-h1 … .suja-small) for new sections
   - Element-level defaults so plain h1/h2/h3 also follow the scale
   - Per-widget Elementor controls still override (higher specificity
     via {{WRAPPER}}), so editor users keep full control
   ============================================================ */
.suja-h1, .suja-hero-heading{
  font-family: var(--font-heading);
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
}
.suja-h2{
  font-family: var(--font-heading);
  font-size: var(--font-h2);
  font-weight: 700;
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}
.suja-h3{
  font-family: var(--font-heading);
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-h3);
}
.suja-h4, .suja-card-title{
  font-family: var(--font-heading);
  font-size: var(--font-h4);
  font-weight: 600;
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
}
.suja-body, .suja-desc{
  font-family: var(--font-body);
  font-size: var(--font-body-lg);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--muted-fg);
}
.suja-small, .suja-supporting{
  font-family: var(--font-body);
  font-size: var(--font-small);
  line-height: 1.55;
  color: var(--muted-fg);
}

/* Element defaults — only apply when nothing more specific wins.
   Per-widget Elementor styles (with {{WRAPPER}} prefix) override. */
body h1{ font-family: var(--font-heading); font-size: var(--font-h1); font-weight: 700; line-height: var(--lh-h1); letter-spacing: var(--ls-h1); }
body h2{ font-family: var(--font-heading); font-size: var(--font-h2); font-weight: 700; line-height: var(--lh-h2); letter-spacing: var(--ls-h2); }
body h3{ font-family: var(--font-heading); font-size: var(--font-h3); font-weight: 600; line-height: var(--lh-h3); letter-spacing: var(--ls-h3); }
body h4{ font-family: var(--font-heading); font-size: var(--font-h4); font-weight: 600; line-height: var(--lh-h4); letter-spacing: var(--ls-h4); }
body p{ line-height: var(--lh-body); }

/* ======================== UTILITIES ======================== */
.container { max-width: 1366px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-gradient {
  background: linear-gradient(to right, var(--teal), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--font-btn);
  line-height: 1.2;
  border-radius: var(--radius); transition: all 0.2s;
}
.btn-round { border-radius: 9999px; }
.btn-lg { padding: 0.95rem 2.125rem; font-size: calc(var(--font-btn) + 1px); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn-accent { background: var(--accent); color: var(--accent-fg); }
.btn-accent:hover { opacity: 0.9; }
.btn-outline { border: 1px solid hsla(215,60%,18%,0.2); color: var(--fg); background: transparent; }
.btn-outline:hover { background: hsla(215,60%,18%,0.05); }
.btn-outline-light { border: 1px solid hsla(210,40%,98%,0.2); color: var(--primary-fg); background: transparent; }
.btn-outline-light:hover { background: hsla(210,40%,98%,0.1); }

/* Section header — uses the global type scale */
.section-header { text-align: center; margin-bottom: var(--block-gap); max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: var(--font-h2); line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  color: var(--fg); margin-bottom: 0.875rem;
}
.section-header p {
  font-size: var(--font-body-lg); line-height: var(--lh-body);
  color: var(--muted-fg); max-width: 680px; margin: 0 auto;
}
.section-header-light h2 { color: var(--primary-fg); }
.section-header-light p { color: hsla(210,40%,98%,0.7); }
.section-tag {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--teal); margin-bottom: 0.875rem;
}
.section-tag-accent { color: var(--accent); }

/* Scroll-reveal animation */
.section-header, .product-card, .ai-card, .value-card, .testimonial-card, .cta-card, .stat-card, .hero-content, .hero-image-wrap {
  opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.visible { opacity: 1; transform: translateY(0); }

/* ======================== NAVBAR ======================== */
.suja-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: hsla(0,0%,100%,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.suja-navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner { display: flex; align-items: center; justify-content: flex-start; gap: 0; height: 64px; }
@media (min-width: 768px) { .navbar-inner { height: 80px; } }

/* Offset body for fixed nav so hero/content doesn't sit under it */
body { padding-top: 64px; }
@media (min-width: 768px) { body { padding-top: 80px; } }

.navbar-logo { display: flex; align-items: center; gap: 0.5rem; }
/* WordPress custom logo — explicit sizing (overrides the image's
   intrinsic width/height attributes). Width scales from height. */
.navbar-logo .custom-logo {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .navbar-logo .custom-logo { height: 44px; }
}
.logo-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-fg); font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
}
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--fg); letter-spacing: -0.02em; }

.navbar-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 768px) { .navbar-links { display: flex; margin-left: auto; margin-right: 1.5rem; } }
/* min-height 24px = WCAG 2.5.8 minimum tap target (was ~22px). */
.nav-link { display: inline-flex; align-items: center; min-height: 24px; font-size: var(--font-nav); font-weight: 500; color: var(--muted-fg); transition: color 0.2s; line-height: 1.4; }
.nav-link:hover { color: var(--fg); }
.nav-phone { display: flex; align-items: center; gap: 0.375rem; }

.navbar-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .navbar-cta { display: flex; } }

/* Mobile toggle */
.mobile-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; margin-left: auto; } /* v3.9.373 — push hamburger to the far right on mobile */
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--fg); transition: all 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--card); padding: 1rem; overflow-y: auto; z-index: 99;
}
.mobile-menu.open { display: block; }
body.menu-open { overflow: hidden; }
.mobile-nav-link { display: block; padding: 0.625rem 0; font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); }
.mobile-nav-link:hover { color: var(--fg); }
.mobile-accordion-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.mobile-accordion-toggle .chevron-icon { transition: transform 0.2s; }
.mobile-accordion-toggle.open .chevron-icon { transform: rotate(180deg); }
.mobile-accordion-panel { display: none; padding: 0.5rem 0 0.5rem 0.75rem; }
.mobile-accordion-panel.open { display: block; }
.mobile-section-label { font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem; color: var(--fg); margin: 0.75rem 0 0.25rem; }
.mobile-accordion-panel a { display: block; font-size: 0.75rem; color: var(--muted-fg); padding: 0.25rem 0 0.25rem 0.75rem; border-left: 2px solid hsla(18,100%,60%,0.2); }
.mobile-accordion-panel a:hover { color: var(--accent); }
/* Integration items on mobile are plain text (no link). */
.mobile-accordion-panel .mobile-int-text { display: block; font-size: 0.75rem; color: var(--muted-fg); padding: 0.25rem 0 0.25rem 0.75rem; border-left: 2px solid hsla(18,100%,60%,0.2); }

/* ======================== MEGA MENU — Full-Width Panels ======================== */

/* Nav items */
.nav-item { position: relative; }
.mega-toggle { display: flex; align-items: center; gap: 0.25rem; }
.mega-toggle .chevron-icon { transition: transform 0.2s; }
.nav-item.open .chevron-icon { transform: rotate(180deg); }

/* Panels — floating card, auto-width per column count (CareCloud-style) */
.mega-panel {
  /* v3.9.376 — left is set per-trigger by JS (positionMegaPanel) so each
     panel opens directly under its own menu item instead of page-centered. */
  position: absolute; top: calc(100% + 8px); left: 0; transform: translateY(-6px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px hsla(215,60%,18%,0.18), 0 2px 6px hsla(215,60%,18%,0.06);
  overflow: hidden;
  width: calc(100% - 4rem);
  max-width: 1280px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 10;
}
.mega-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }

/* Per-panel widths — sized to content (v3.8.20).
   Tailored / Resources / Company shrink to fit their actual columns
   instead of carrying a large fixed width with empty space. */
#mega-solutions { max-width: 1240px; }
/* v3.9.371 — SUJA AI column removed; the three single-list panels
   (Tailored / Resources / Company) share ONE width so they are identical. */
#mega-tailored,
#mega-resources,
#mega-company   { max-width: 620px; }
/* v3.9.376 — wider gap between the two columns (Tailored / Resources / Company) */
#mega-tailored .mega-plain-list--2col,
#mega-resources .mega-plain-list--2col,
#mega-company .mega-plain-list--2col { column-gap: 2.25rem; }

/* Inner wrapper — no side padding; columns own their padding */
.mega-panel-inner { padding: 0; }

/* Grid layouts */
.mega-panel-grid { display: grid; }
.mega-grid-4col { grid-template-columns: 260px 1fr 1fr 260px; }
.mega-grid-3col { grid-template-columns: 1fr 1fr 260px; }
.mega-grid-2col { grid-template-columns: 1fr 260px; }
/* Solutions panel — 5-column structure (v3.8.20):
   About SUJA (featured) · Products · Services · Integrations · SUJA AI.
   SUJA AI column shrinks to 260px (was 320px) per the global AI card
   size reduction. */
.mega-grid-solutions { grid-template-columns: 220px 1.05fr 0.9fr 1.05fr 260px; }

/* v3.9.371 — SUJA AI column removed from Tailored / Resources / Company.
   Each is now a single content list; the shared min-height keeps all three
   dropdowns the same length regardless of how many items they hold. */
/* v3.9.378 — all three lists are 2-column now; each panel sizes to its own
   content (no forced equal height). Width stays uniform via #mega-* max-width. */
.mega-grid-tailored-ai,
.mega-grid-resources-ai,
.mega-grid-company-ai { grid-template-columns: 1fr; }
/* Tailored panel — 2-column layout (v3.8.11):
   left = featured intro panel (matches Solutions featured column)
   right = By Facility Type cards in a 2-column inner grid. */
.mega-grid-tailored { grid-template-columns: 280px 1fr; }
/* Legacy 3-col grid — kept available for any other panel that uses it. */
.mega-grid-3col-even { grid-template-columns: 1fr 1fr 1fr; }
/* Company panel — two equal columns after AI removal */
.mega-grid-2col-even { grid-template-columns: 1fr 1fr; }
/* Resources panel — single full-width column after AI removal */
.mega-grid-1col { grid-template-columns: 1fr; }

/* Columns */
.mega-col { padding: 1.75rem 1.5rem; }

/* Featured brand column (Solutions panel, col 1) */
.mega-col-featured { background: hsla(210,30%,97%,0.6); }
.mega-col-eyebrow {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted-fg);
  /* v3.8.22 — divider sits under the eyebrow (All-In-One),
     above the brand name (Suja Associates). */
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.mega-featured-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;  /* 20px column title */
  color: var(--fg); line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 0.75rem;
}
.mega-featured-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted-fg);
  margin-bottom: 1.25rem;
}
.mega-featured-links { display: flex; flex-direction: column; gap: 0.5rem; }
.mega-featured-link { font-size: 0.875rem; font-weight: 600; color: var(--accent); transition: opacity 0.15s; }
.mega-featured-link:hover { opacity: 0.75; }

/* Column headings — small all-caps eyebrow above lists */
.mega-col-heading {
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-fg);
  /* v3.8.21 — subtle divider below every column heading.
     Heading → divider: 10px (padding-bottom).
     Divider → menu items: 14px (margin-bottom). */
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* Software list — title + description per item */
.mega-software-list { display: flex; flex-direction: column; gap: 1rem; }
.mega-software-list li a { display: block; }
.mega-software-list li a strong {
  display: block; font-family: var(--font-heading); font-weight: 600;
  font-size: 1rem;  /* 16px menu item title */
  color: var(--accent); margin-bottom: 0.25rem; line-height: 1.4;
}
.mega-software-list li a span { display: block; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.55; }
.mega-software-list li a:hover strong { opacity: 0.75; }

/* Plain list — simple links */
/* v3.8.24 — plain-list items now mirror the Integrations menu
   hover behavior (light-gray pill background + teal text on hover).
   Applied site-wide so Tailored, Resources, Company, and Contact
   (inside Company) all share one interaction language. */
.mega-plain-list {
  display: flex;
  flex-direction: column;
  gap: 0;             /* vertical rhythm now comes from link padding */
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-plain-list li { margin: 0; list-style: none; }
.mega-plain-list li a {
  display: block;
  padding: 0.4rem 0.625rem;
  margin: 0 -0.625rem;          /* extends hover pill past column edge */
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.4;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.mega-plain-list li a:hover {
  background: hsla(210, 30%, 95%, 0.7);
  color: var(--teal, #0891b2);
}
.mega-view-all { font-weight: 600 !important; color: var(--teal) !important; }
.mega-view-all:hover { background: hsla(210, 30%, 95%, 0.7); }

/* Multi-column plain lists — tighter gap since link padding now
   handles its own spacing. */
.mega-plain-list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1rem;
}
.mega-plain-list--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 1rem;
}

/* ============================================================
   SUJA AI column — full-image cards (v3.8.20).
   Each card IS the product mockup image. Reused across 4 mega
   menus (Solutions, Tailored, Resources, Company). Sized
   ~20-30% more compact than the v3.8.6 baseline.
   ============================================================ */
.mega-col-ai {
  padding: 1.5rem 1rem;            /* was 1.75rem 1.25rem */
  background: hsla(210, 35%, 96%, 0.4);
}
.mega-ai-cards { display: flex; flex-direction: column; gap: 0.625rem; }   /* was 0.875rem */

.mega-ai-card {
  display: block;
  border-radius: 12px;             /* was 14px */
  overflow: hidden;
  background: hsla(0, 0%, 100%, 0.4);
  transition: box-shadow .25s ease, transform .25s ease;
  line-height: 0;
}
.mega-ai-card:hover {
  box-shadow: 0 12px 24px -12px hsla(215, 50%, 30%, 0.22);
  transform: translateY(-1px);
}
.mega-ai-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

/* Single "Suja AI Suite" image — replaces the old 3-card stack/grid.
   Forced to a single block at every breakpoint (overrides the tablet
   3-column grid above). */
.mega-ai-cards--single,
.mega-col-ai .mega-ai-cards.mega-ai-cards--single {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
.mega-ai-card--suite {
  max-width: 320px;
  border-radius: 14px;
  box-shadow: 0 12px 30px -16px hsla(199, 89%, 38%, 0.35);
}
.mega-ai-card--suite img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}
.mega-ai-card--suite:hover {
  box-shadow: 0 18px 40px -16px hsla(199, 89%, 38%, 0.45);
  transform: translateY(-3px);
}
/* Legacy .mega-ai-arrow / .mega-ai-card--teal removed in v3.8.4
   — replaced by inline chevron + 2-card layout. */

/* ============================================================
   Solutions mega menu — Software grid + grouped Services column
   ============================================================ */

/* Vertical-stack item layout — used by Products, Services, and
   Integrations columns. Each item is brand title + description.
   Items stack with consistent vertical rhythm and inherit the same
   hover treatment regardless of column. */
.mega-sw-stack {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.mega-sw-stack--dense { gap: 0.375rem; }

.mega-sw-item {
  display: block;
  padding: 0.5rem 0.625rem;
  margin: 0 -0.625rem;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}
.mega-sw-item:hover { background: hsla(210,30%,95%,0.7); }
.mega-sw-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  line-height: 1.3;
}
.mega-sw-item span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}
.mega-sw-item:hover strong { opacity: 0.8; }
/* Rich items (Products + Services) keep the larger title hierarchy;
   descriptions are sized down to 10px for a compact menu read. */
.mega-sw-item--rich strong { font-size: 1rem; }
.mega-sw-item--rich span   { font-size: 8px; }
/* "All integrations" wrap-up link — visually anchored as a quiet
   summary link beneath the integration items. */
.mega-sw-item--all {
  margin-top: 0.125rem;
  border-radius: 0 0 8px 8px;
  padding-top: 0.625rem;
}
.mega-sw-item--all strong { color: var(--teal, #0891b2); }

/* By Facility Type — 7 facility cards in a 2-column inner grid
   (4 + 3). Items reuse the .mega-sw-item--rich treatment so the
   typography matches Products + Services columns elsewhere. */
.mega-facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.5rem;
}
@media (max-width: 1180px) {
  .mega-grid-tailored { grid-template-columns: 240px 1fr; }
  .mega-facility-grid { gap: 0.75rem 1rem; }
}
@media (max-width: 1024px) {
  .mega-grid-tailored { grid-template-columns: 1fr; }
  .mega-facility-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .mega-facility-grid { grid-template-columns: 1fr; }
}

/* Simple Integrations link list — used in the Integrations column
   where items render as plain navigation links (no descriptions). */
.mega-int-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
}
.mega-int-list li { margin: 0; }
.mega-int-link {
  display: block;
  padding: 0.4rem 0.625rem;
  margin: 0 -0.625rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.4;
  transition: background-color 0.15s ease, color 0.15s ease;
}
/* Integration items are plain text labels (not links); only the anchor
   variant, if ever reused, gets the interactive hover. */
a.mega-int-link:hover {
  background: hsla(210,30%,95%,0.7);
  color: var(--teal, #0891b2);
}
.mega-int-all {
  margin-top: 0.5rem;
  border-top: 1px solid hsla(210,30%,90%,1);
}

/* Grouped sub-sections in the Services column */
.mega-group { margin-bottom: 1.25rem; }
.mega-group:last-child { margin-bottom: 0; }
.mega-group-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  margin-bottom: 0.625rem;
}

/* ============================================================
   Mega menu — tablet adjustments
   ============================================================ */
@media (max-width: 1180px) {
  /* Tighter sidebar widths, the three editorial columns split the middle. */
  .mega-grid-solutions { grid-template-columns: 200px 1fr 0.85fr 1fr 240px; }
  /* v3.9.371 — AI column removed; keep the three panels single-column here too. */
  .mega-grid-tailored-ai,
  .mega-grid-resources-ai,
  .mega-grid-company-ai { grid-template-columns: 1fr; }
  .mega-col { padding: 1.5rem 1.125rem; }
  .mega-sw-stack { gap: 0.5rem; }
}
@media (max-width: 1024px) {
  /* Collapse 5 → 2-col grid: About SUJA + AI sit on top spanning full
     width; Products / Services / Integrations split into rows below. */
  .mega-grid-solutions { grid-template-columns: 1fr 1fr; }
  .mega-col-featured     { grid-column: span 2; }
  .mega-col-products,
  .mega-col-services,
  .mega-col-integrations { grid-column: span 1; }
  .mega-col-services     { grid-column: span 2; }   /* Services has 1 item — keep it on its own full-width row */
  .mega-col-ai           { grid-column: span 2; }
  /* Tailored / Resources / Company grids stack on tablet */
  .mega-grid-tailored-ai,
  .mega-grid-resources-ai,
  .mega-grid-company-ai { grid-template-columns: 1fr; }
  /* Three image cards lay out as a 3-column row at this tablet
     width, keeping the premium grid feel from the reference. */
  .mega-col-ai .mega-ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  /* Tailored: facility full-width, two specialty columns below */
  .mega-grid-3col-even { grid-template-columns: 1fr 1fr; }
  .mega-grid-3col-even .mega-col:first-child { grid-column: span 2; }
  .mega-grid-3col-even .mega-col:first-child .mega-plain-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem;
  }
  /* Tailored col-2 spacer heading collapses on tablet */
  .mega-grid-3col-even .mega-col:nth-child(3) .mega-col-heading[aria-hidden] { display: none; }
  /* Resources: 3-col list → 2-col */
  .mega-plain-list--3col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .mega-grid-3col-even,
  .mega-grid-2col-even { grid-template-columns: 1fr; }
  .mega-grid-3col-even .mega-col:first-child { grid-column: span 1; }
  .mega-plain-list--3col,
  .mega-plain-list--2col { grid-template-columns: 1fr 1fr; }
  .mega-grid-3col-even .mega-col:nth-child(3) .mega-col-heading[aria-hidden] { display: none; }
}

/* Contact bar (bottom of every panel) */
.mega-contact-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1.25rem; background: hsla(210,30%,95%,0.5);
  border-top: 1px solid var(--border);
}
/* v3.9.377 — keep "Get in Touch" on a single line (compact phones). */
.mega-contact-info { display: flex; align-items: center; gap: 1rem; flex-wrap: nowrap; white-space: nowrap; }
.mega-contact-phones { gap: 0.4rem; }
.mega-contact-phones a { color: inherit; }
.mega-contact-phones a:hover { color: var(--fg); }
.mega-contact-label { font-size: 0.8125rem; font-weight: 700; color: var(--fg); }
.mega-contact-link {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; color: var(--muted-fg); transition: color 0.15s;
}
.mega-contact-link:hover { color: var(--fg); }
.mega-social { display: flex; align-items: center; gap: 0.875rem; }
.mega-social-link { color: var(--muted-fg); transition: color 0.15s; display: flex; align-items: center; }
.mega-social-link:hover { color: var(--fg); }

/* Page overlay (behind panel, above content) */
.mega-overlay {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: hsla(215,60%,18%,0.25); z-index: 98; backdrop-filter: blur(1px);
}
.mega-overlay.active { display: block; }

/* Mobile menu CTA */
.mobile-menu-cta { padding: 1rem 0; }
@media (min-width: 768px) { .mobile-menu { top: 80px; } }

/* ======================== HERO ======================== */
.hero-section { position: relative; overflow: hidden; padding: 7rem 0 4rem; background: var(--hero-gradient); }
@media (min-width: 768px) { .hero-section { padding: 8rem 0 5rem; } }

.hero-slider { position: relative; }

.hero-slide {
  display: none !important; opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.hero-slide.active { display: block !important; opacity: 1; }

.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 1rem; }
.hero-title { font-family: var(--font-heading); font-weight: 800; font-size: 2.25rem; line-height: 1.15; color: var(--fg); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.5rem; } }
.hero-title .text-gradient { display: inline; }

.hero-desc { font-size: 1.125rem; color: var(--muted-fg); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 1rem; }
.stat-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--card); border-radius: 1rem; padding: 0.75rem 1.25rem; box-shadow: var(--shadow);
}
.stat-icon {
  width: 40px; height: 40px; border-radius: 12px; background: hsla(189,94%,37%,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.stat-value { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--fg); }
.stat-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-fg); }

.hero-image-wrap { position: relative; }
.hero-image-container {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 25px 50px -12px hsla(215,60%,18%,0.2);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--card); border-radius: 1rem; padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600;
}
.badge-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); }

/* Hero arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: hsla(0,0%,100%,0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg); box-shadow: var(--shadow); transition: background 0.2s;
  cursor: pointer;
}
.hero-arrow:hover { background: var(--card); }
.hero-arrow-left { left: 1rem; }
.hero-arrow-right { right: 1rem; }
@media (min-width: 1024px) { .hero-arrow-left { left: 2rem; } .hero-arrow-right { right: 2rem; } }

/* Hero dots */
.hero-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 9999px;
  background: var(--border); border: none; cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { width: 32px; background: var(--accent); }

/* ======================== CLIENT LOGOS ======================== */
.clients-section { padding: 3rem 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.clients-label { text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); margin-bottom: 1.5rem; }
.marquee-track { position: relative; overflow: hidden; }
.marquee-inner { display: flex; gap: 1.5rem; width: max-content; animation: scroll-x 30s linear infinite; }
@keyframes scroll-x { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-chip { flex-shrink: 0; padding: 0.75rem 1.5rem; background: var(--muted); border-radius: 12px; }
.client-chip span { font-size: 0.875rem; font-family: var(--font-heading); font-weight: 600; color: var(--muted-fg); white-space: nowrap; }

/* ======================== PRODUCTS ======================== */
.products-section { padding: 4rem 0; background: var(--card); }
@media (min-width: 768px) { .products-section { padding: 6rem 0; } }
.products-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border);
  background: var(--card); transition: all 0.3s; cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-featured { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.product-featured .product-tagline { color: hsla(210,40%,98%,0.7); }
.product-featured .product-desc { color: hsla(210,40%,98%,0.8); }
.product-featured .product-link { color: var(--accent); }
.product-featured h3 { color: var(--primary-fg); }

.product-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.icon-teal { background: hsla(189,94%,37%,0.1); color: var(--teal); }
.icon-accent { background: hsla(18,100%,60%,0.1); color: var(--accent); }
.icon-navy { background: hsla(215,60%,18%,0.1); color: var(--primary); }
.icon-green { background: hsla(142,71%,45%,0.1); color: hsl(142,71%,45%); }
.product-featured .product-icon { background: hsla(18,100%,60%,0.2); color: var(--accent); }

.product-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.25rem; }
.product-tagline { font-size: 0.875rem; font-weight: 500; color: var(--teal); margin-bottom: 0.75rem; }
.product-desc { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 1rem; }
.product-link { font-size: 0.875rem; font-weight: 600; color: var(--teal); transition: gap 0.2s; display: inline-flex; align-items: center; }
.product-card:hover .product-link { gap: 0.5rem; }

/* ======================== CAREAXES SECTION ======================== */
.careaxes-section { padding: 4rem 0; background: var(--hero-gradient); }
@media (min-width: 768px) { .careaxes-section { padding: 6rem 0; } }

/* ── CureAxes Section ──────────────────────────────────────── */
:root {
  --cx-blue: #2e7aec;
  --cx-teal: #0DBFAD;
  --cx-teal-hover: #0aa89a;
}

.cureaxes-section {
  background: linear-gradient(180deg, #f0fffe 0%, #f8fafc 100%);
  padding: 4rem 0 5rem;
}
@media (min-width: 768px) { .cureaxes-section { padding: 5rem 0 6rem; } }

/* Product block inside the section */
.suja-cureaxes-block { padding-bottom: 4rem; border-bottom: 1px solid #e2e8f0; margin-bottom: 4rem; }

/* Wordmark scaling */
.cureaxes-wordmark { display: block; margin-bottom: 10px; }

/* Bullets two-column layout */
.suja-bullets-2col {
  list-style: none; padding: 0; margin: 1rem 0 1.5rem;
  display: grid; grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .suja-bullets-2col { grid-template-columns: 1fr 1fr; }
}
.suja-bullets-2col li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  color: #1a2e4a;
}
.suja-bullets-2col li i { color: var(--cx-teal); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* CTA row */
.tab-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.btn-teal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 9999px;
  background: var(--cx-teal); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9375rem;
  text-decoration: none; transition: background 0.2s;
}
.btn-teal:hover { background: var(--cx-teal-hover); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8125rem 1.625rem; border-radius: 9999px;
  background: #fff; color: #1a2e4a;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9375rem;
  border: 1px solid #cbd5e1; text-decoration: none; transition: background 0.2s;
}
.btn-outline:hover { background: #f1f5f9; }

/* Visual card (PHP fallback) */
.cureaxes-visual-card {
  background: linear-gradient(135deg, #e0f7f5 0%, #dbeeff 100%);
  border-radius: 20px; padding: 2rem;
  box-shadow: 0 24px 60px -8px rgba(15,23,42,0.14);
}
.cvc-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem;
}
.cvc-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cx-teal); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.125rem; flex-shrink: 0;
}
.cvc-header strong { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.125rem; color: #1a2e4a; }
.cvc-header span { font-size: 0.75rem; color: #64748b; }
.cvc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.cvc-stat {
  background: #fff; border-radius: 12px; padding: 1rem;
  border: 1px solid #e2e8f0;
}
.cvc-stat strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.375rem; color: var(--cx-teal); }
.cvc-stat:nth-child(even) strong { color: var(--cx-blue); }
.cvc-stat span { font-size: 0.75rem; color: #64748b; }
.cvc-banner {
  background: linear-gradient(90deg, var(--cx-teal), var(--cx-blue));
  border-radius: 10px; padding: 0.875rem 1.25rem; text-align: center;
  color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
}

/* Facility grid */
.cureaxes-facility .section-header { margin-bottom: 3rem; }
.facility-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .facility-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .facility-grid { grid-template-columns: repeat(3, 1fr); } }
.facility-card {
  background: #fff; border-radius: 1rem; padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.facility-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.1); }
.facility-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #e0f7f5, #dbeeff);
  display: flex; align-items: center; justify-content: center;
  color: var(--cx-teal); font-size: 1rem; margin-bottom: 1rem;
}
.facility-card h4 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem;
  color: #1a2e4a; margin: 0 0 0.5rem;
}
.facility-card p {
  font-family: var(--font-body); font-size: 0.875rem;
  line-height: 1.6; color: #64748b; margin: 0;
}

/* Elementor-delivered tab: make teal CTA override the orange default */
.suja-cureaxes-block .elementor-button.suja-btn-primary { background-color: var(--cx-teal) !important; }
.suja-cureaxes-block .elementor-button.suja-btn-primary:hover { background-color: var(--cx-teal-hover) !important; }
.elementor-element .suja-facility-card { transition: transform 0.25s, box-shadow 0.25s; }
.elementor-element .suja-facility-card:hover { transform: translateY(-4px); }

.tabs-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.tab-btn {
  padding: 0.625rem 1.25rem; border-radius: 9999px; font-size: 0.875rem;
  font-family: var(--font-heading); font-weight: 600; transition: all 0.3s;
  background: var(--card); color: var(--muted-fg); border: 1px solid var(--border);
}
.tab-btn:hover { color: var(--fg); background: var(--muted); }
.tab-btn.active { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); box-shadow: var(--shadow); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .tab-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.accordion-list { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: hsla(0,0%,100%,0.5); transition: all 0.3s; overflow: hidden;
}
.accordion-item.open { background: var(--card); border-color: hsla(18,100%,60%,0.3); box-shadow: var(--shadow); }

.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1rem 1.25rem; text-align: left;
}
.accordion-trigger span {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9375rem; color: var(--fg); transition: color 0.2s;
}
.accordion-item.open .accordion-trigger span { color: var(--accent); }
.accordion-trigger .chevron { transition: transform 0.3s; color: var(--muted-fg); flex-shrink: 0; }
.accordion-item.open .accordion-trigger .chevron { transform: rotate(180deg); color: var(--accent); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 200px; padding: 0 1.25rem 1.25rem; }
.accordion-body p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

.tab-image-wrap { position: relative; }
.tab-image-wrap img { border-radius: var(--radius-lg); box-shadow: 0 25px 50px -12px hsla(215,60%,18%,0.2); }
.floating-stat {
  position: absolute; bottom: -1.25rem; left: -1.25rem;
  background: var(--card); border-radius: var(--radius-lg); padding: 1.25rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.floating-stat-value { font-family: var(--font-heading); font-weight: 700; font-size: 1.75rem; color: var(--teal); }
.floating-stat-label { font-size: 0.875rem; color: var(--muted-fg); }

/* ======================== AI SUITE ======================== */
.ai-suite-section {
  padding: 4rem 0; background: var(--primary); color: var(--primary-fg); position: relative; overflow: hidden;
}
@media (min-width: 768px) { .ai-suite-section { padding: 6rem 0; } }

.ai-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ai-grid { grid-template-columns: repeat(4, 1fr); } }

.ai-card {
  background: hsla(210,40%,98%,0.05); backdrop-filter: blur(4px);
  border: 1px solid hsla(210,40%,98%,0.1); border-radius: var(--radius-lg);
  padding: 1.25rem; transition: background 0.2s; cursor: pointer;
}
.ai-card:hover { background: hsla(210,40%,98%,0.1); }
.ai-card-icon {
  width: 40px; height: 40px; border-radius: 12px; background: hsla(18,100%,60%,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; color: var(--accent);
}
.ai-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.ai-card p { font-size: 0.875rem; color: hsla(210,40%,98%,0.6); line-height: 1.6; }

/* ======================== VALUE PROPS ======================== */
.values-section { padding: 4rem 0; background: var(--card); }
@media (min-width: 768px) { .values-section { padding: 6rem 0; } }

.values-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card { text-align: center; }
.value-icon {
  width: 56px; height: 56px; border-radius: 1rem; background: hsla(189,94%,37%,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--teal);
}
.value-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--fg); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ======================== TESTIMONIALS ======================== */
.testimonials-section { padding: 4rem 0; background: var(--hero-gradient); }
@media (min-width: 768px) { .testimonials-section { padding: 6rem 0; } }

.testimonials-slider { position: relative; }
.testimonials-slide { display: none !important; opacity: 0; transition: opacity 0.5s ease-in-out; }
.testimonials-slide.active { display: block !important; opacity: 1; }

.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.quote-icon { color: hsla(189,94%,37%,0.3); margin-bottom: 1rem; }
.testimonial-quote { font-size: 0.875rem; color: var(--fg); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; color: var(--fg); }
.author-title { font-size: 0.75rem; color: var(--muted-fg); }

/* Testimonial arrows */
.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: hsla(0,0%,100%,0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg); box-shadow: var(--shadow); transition: background 0.2s; cursor: pointer;
}
.testimonial-arrow:hover { background: var(--card); }
.testimonial-arrow-left { left: -1.5rem; }
.testimonial-arrow-right { right: -1.5rem; }
@media (max-width: 767px) { .testimonial-arrow-left { left: -0.5rem; } .testimonial-arrow-right { right: -0.5rem; } }

/* Testimonial dots */
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 9999px;
  background: var(--border); border: none; cursor: pointer; transition: all 0.3s;
}
.testimonial-dot.active { width: 32px; background: var(--accent); }

/* ======================== BLOG / INSIGHTS ======================== */
.blog-section { padding: 4rem 0; background: var(--card); }
@media (min-width: 768px) { .blog-section { padding: 6rem 0; } }

.blog-slider { position: relative; }
.blog-slide { display: none !important; opacity: 0; transition: opacity 0.5s ease-in-out; }
.blog-slide.active { display: block !important; opacity: 1; }

.blog-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg);
  transition: all 0.3s; text-decoration: none; color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-card-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-category {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--accent); color: var(--accent-fg);
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
}

.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; }

.blog-date { font-size: 0.75rem; color: var(--muted-fg); font-weight: 500; display: block; margin-bottom: 0.5rem; }

.blog-card-body h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem;
  color: var(--fg); line-height: 1.35; margin-bottom: 0.625rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.blog-card-body p {
  font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.blog-read-more {
  font-size: 0.8125rem; font-weight: 600; color: var(--teal);
  transition: gap 0.2s; display: inline-flex; align-items: center;
}
.blog-card:hover .blog-read-more { color: var(--accent); }

/* Blog arrows */
.blog-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: hsla(0,0%,100%,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg); box-shadow: var(--shadow); transition: background 0.2s; cursor: pointer;
}
.blog-arrow:hover { background: var(--card); }
.blog-arrow-left { left: -1.5rem; }
.blog-arrow-right { right: -1.5rem; }
@media (max-width: 767px) { .blog-arrow-left { left: -0.5rem; } .blog-arrow-right { right: -0.5rem; } }

/* Blog dots */
.blog-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.blog-dot {
  width: 8px; height: 8px; border-radius: 9999px;
  background: var(--border); border: none; cursor: pointer; transition: all 0.3s;
}
.blog-dot.active { width: 32px; background: var(--accent); }

/* View all button */
.blog-view-all { text-align: center; margin-top: 2.5rem; }

/* ======================== CTA SECTION ======================== */
.cta-section { padding: 4rem 0; background: var(--primary); color: var(--primary-fg); }
@media (min-width: 768px) { .cta-section { padding: 6rem 0; } }

.cta-grid { display: grid; gap: 1.5rem; max-width: 960px; margin: 0 auto; }
@media (min-width: 768px) { .cta-grid { grid-template-columns: repeat(3, 1fr); } }

.cta-card {
  background: hsla(210,40%,98%,0.05); backdrop-filter: blur(4px);
  border: 1px solid hsla(210,40%,98%,0.1); border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
}
.cta-card-icon {
  width: 48px; height: 48px; border-radius: 1rem; background: hsla(18,100%,60%,0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--accent);
}
.cta-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; }
.cta-card p { font-size: 0.875rem; color: hsla(210,40%,98%,0.6); margin-bottom: 1rem; }

/* ======================== FOOTER ======================== */
.suja-footer { background: var(--fg); color: var(--bg); padding: 4rem 0 2rem; }
@media (min-width: 768px) { .suja-footer { padding: 6rem 0 2rem; } }

.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: 0.875rem; color: hsla(210,33%,98%,0.6); line-height: 1.6; margin-top: 1rem; }
.footer-brand .navbar-logo { margin-bottom: 0; }
.footer-brand .logo-text { color: var(--bg); }

.footer-col h4 {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: hsla(210,33%,98%,0.8); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: hsla(210,33%,98%,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--bg); }
.footer-col ul.no-link li { font-size: 0.875rem; color: hsla(210,33%,98%,0.5); }

.footer-bottom {
  border-top: 1px solid hsla(210,33%,98%,0.1); padding-top: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: hsla(210,33%,98%,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: hsla(210,33%,98%,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: hsla(210,33%,98%,0.7); }
