/* =============================================================================
   GRAPHINXT DESIGN SYSTEM  v3  (Aug 2026 rebuild)
   Single stylesheet for every page. Token-driven, dark + light themes.
   Sections: 1 tokens · 2 base · 3 header/nav · 4 buttons · 5 hero · 6 layout &
   section headers · 7 cards & grids · 8 forms/estimators · 9 widgets (chat,
   modal, back-to-top, whatsapp) · 10 footer · 11 process animations (gxp)
   · 12 location/region pages · 13 utilities & responsive
   Theme switch: html[data-theme="light"] (set before paint) + body.light-mode
   (legacy hook kept so page-level overrides keep working).
   ============================================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  --bg-dark: #363638;
  --bg-darker: #2a2a2c;
  --bg-deep: #222224;
  --surface: #3b3b3e;                     /* solid: particle canvas must never show through cards */
  --surface-2: #454548;
  --surface-solid: #3b3b3e;
  --card-bg: var(--surface);
  --canvas-alpha: 0.9;
  --brand-gold: #e9c46f;
  --brand-gold-hover: #d4ae58;
  --gold-soft: rgba(233, 196, 111, 0.12);
  --gold-ink-on: #2a2a2c;                 /* text placed on a gold fill */
  --text-main: #ffffff;
  --text-muted: #a9a9ae;
  --text-faint: #7d7d83;
  --border-light: rgba(233, 196, 111, 0.16);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(233, 196, 111, 0.55);
  --ai-glow: rgba(233, 196, 111, 0.10);
  --ai-glow-soft: rgba(233, 196, 111, 0.16);
  --ai-accent: #e9c46f;
  --ai-bg: rgba(42, 42, 44, 0.96);
  --gradient-start: #ffffff;
  --footer-stroke: rgba(255, 255, 255, 0.10);
  --nav-bg: rgba(42, 42, 44, 0.55);
  --nav-bg-scrolled: rgba(34, 34, 36, 0.88);
  --modal-overlay: rgba(28, 28, 30, 0.92);
  --chatbot-bg: rgba(42, 42, 44, 0.92);
  --msg-bot: rgba(255, 255, 255, 0.06);
  --overlay-gradient: linear-gradient(to top, rgba(30, 30, 32, 0.95), transparent);
  --ok: #7ec97e; --warn: #f0a04b; --bad: #e88a7e;
  --glass-blur: blur(20px);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px; --radius: 18px; --radius-lg: 24px; --radius-xl: 32px;
  --container: 1200px;
  --gutter: clamp(1.1rem, 5vw, 5rem);
  --nav-top: 4.3rem;
  --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
  --font: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color-scheme: dark;
}
html[data-theme="light"], body.light-mode {
  --bg-dark: #f6f4ef;
  --bg-darker: #ffffff;
  --bg-deep: #ece8df;
  --surface: #ffffff;
  --surface-2: rgba(54, 54, 56, 0.045);
  --surface-solid: #ffffff;
  --brand-gold: #c69528;                  /* one step darker so gold TEXT passes contrast on light */
  --brand-gold-hover: #ad801d;
  --gold-soft: rgba(198, 149, 40, 0.10);
  --gold-ink-on: #1d1d1f;
  --text-main: #1d1d1f;
  --text-muted: #5b5b62;
  --text-faint: #8a8a91;
  --border-light: rgba(54, 54, 56, 0.11);
  --border-subtle: rgba(0, 0, 0, 0.07);
  --border-glow: rgba(198, 149, 40, 0.65);
  --ai-glow: rgba(198, 149, 40, 0.10);
  --ai-glow-soft: rgba(198, 149, 40, 0.16);
  --ai-accent: #c69528;
  --ai-bg: rgba(255, 255, 255, 0.97);
  --gradient-start: #1d1d1f;
  --footer-stroke: rgba(0, 0, 0, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.72);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.94);
  --modal-overlay: rgba(246, 244, 239, 0.94);
  --chatbot-bg: rgba(255, 255, 255, 0.96);
  --msg-bot: rgba(54, 54, 56, 0.06);
  --overlay-gradient: linear-gradient(to top, rgba(255, 255, 255, 0.96), transparent);
  --ok: #2f8f4e; --warn: #c26a12; --bad: #c8503f;
  --shadow-sm: 0 4px 14px rgba(40, 30, 0, 0.06);
  --shadow-md: 0 14px 36px rgba(40, 30, 0, 0.10);
  --shadow-lg: 0 26px 70px rgba(40, 30, 0, 0.14);
  color-scheme: light;
}

/* ---------- 2. BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: radial-gradient(1200px 600px at 50% -10%, var(--gold-soft), transparent 60%); pointer-events: none; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, .logo { font-weight: 200; letter-spacing: -0.5px; line-height: 1.15; }
h1, h2, h3, h4 { text-wrap: balance; }
h3, h4 { font-weight: 500; letter-spacing: 0; }
strong { font-weight: 800; }
p { text-wrap: pretty; }
::selection { background: var(--brand-gold); color: var(--gold-ink-on); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--brand-gold); outline-offset: 3px; border-radius: 6px; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #6a6a70; border-radius: 10px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--brand-gold); }
* { scrollbar-width: thin; scrollbar-color: #6a6a70 transparent; }
#bg-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.9; }
html[data-theme="light"] #bg-canvas, body.light-mode #bg-canvas { opacity: 0.35; }
.ambient-glow { position: fixed; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; border-radius: 50%; background: radial-gradient(circle, var(--gold-soft), transparent 65%); filter: blur(30px); z-index: -1; pointer-events: none; opacity: 0.8; }
.glow-top { top: -20vw; left: 50%; transform: translateX(-50%); }
html[data-theme="light"] .ambient-glow, body.light-mode .ambient-glow { opacity: 0.5; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 99999; background: var(--brand-gold); color: var(--gold-ink-on) !important; padding: 0.8rem 1.4rem; border-radius: 10px; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }

/* custom cursor: cosmetic follower only — native cursor is NEVER hidden */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; z-index: 99998; opacity: 0; transition: opacity 0.3s; }
.cursor-dot { width: 6px; height: 6px; background: var(--brand-gold); }
.cursor-outline { width: 34px; height: 34px; border: 1px solid var(--border-glow); }
html.cursor-ready .cursor-dot, html.cursor-ready .cursor-outline { opacity: 1; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor-dot, .cursor-outline { display: none !important; } }

/* ---------- 3. HEADER / NAV (kept — the part of the old design the client likes) ---------- */
.faith-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 9991; text-align: center; padding: 0.55rem 1rem 0.35rem; background: linear-gradient(to bottom, var(--bg-dark) 70%, transparent); pointer-events: none; }
.faith-banner .symbol { display: flex; justify-content: center; }
.faith-banner .symbol img { width: 110px; height: auto; opacity: 0.95; }
.faith-banner .translation { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.4px; font-weight: 300; opacity: 0.7; max-width: 520px; margin: 0.15rem auto 0; line-height: 1.4; }
.navbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 1.6rem 0.85rem 1.8rem; position: fixed; width: 92%; max-width: var(--container); top:3.1rem; left: 50%; transform: translateX(-50%); z-index: 9999; background: var(--nav-bg); backdrop-filter: var(--glass-blur) saturate(1.3); -webkit-backdrop-filter: var(--glass-blur) saturate(1.3); border: 1px solid var(--border-light); border-radius: 50px; transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, top 0.4s; box-shadow: var(--shadow-md); }
.navbar.scrolled { background: var(--nav-bg-scrolled); border-color: var(--border-glow); }
.logo { font-size: 1.45rem; font-weight: 400; letter-spacing: -0.5px; white-space: nowrap; }
.accent-dot { color: var(--brand-gold); }
.nav-links { display: flex; list-style: none; gap: clamp(0.9rem, 1.6vw, 1.7rem); align-items: center; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.74rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-gold); }
.nav-dropdown { position: relative; }
.nav-caret { font-size: 0.6rem; opacity: 0.7; transition: transform 0.3s; display: inline-block; }
.nav-dropdown:hover .nav-caret, .nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); min-width: 200px; background: var(--nav-bg-scrolled); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--border-glow); border-radius: 16px; padding: 0.5rem; list-style: none; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-md); margin-top: 12px; }
.nav-dropdown-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu li { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.7rem 1rem; border-radius: 10px; font-size: 0.72rem; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--gold-soft); color: var(--brand-gold); }
.mode-toggle, .mode-toggle-mobile { background: transparent; border: 1px solid transparent; color: var(--text-main); font-size: 1.15rem; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease, color 0.3s, border-color 0.3s; line-height: 1; }
.mode-toggle:hover, .mode-toggle-mobile:hover { color: var(--brand-gold); border-color: var(--border-light); transform: rotate(30deg); }
.mode-toggle-mobile { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; padding: 6px; z-index: 9991; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-main); transition: all 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: calc(var(--nav-top) + 3.6rem); right: 0; bottom: 0; width: min(100%, 320px); background: var(--bg-darker); border-left: 1px solid var(--border-light); padding: 0.5rem 1.6rem 6rem; transform: translateX(105%); transition: transform 0.45s var(--ease); z-index: 9998; display: flex; flex-direction: column; overflow-y: auto; box-shadow: var(--shadow-lg); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--text-main); text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; padding: 1.05rem 0; border-bottom: 1px solid var(--border-subtle); transition: color 0.3s, padding-left 0.3s; }
.mobile-menu a:hover { color: var(--brand-gold); padding-left: 8px; }
.mobile-theme-btn { background: transparent; border: none; color: var(--text-main); font-size: 0.85rem; text-align: left; padding: 1.05rem 0; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 0.6rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.mobile-theme-btn:hover { color: var(--brand-gold); }
@media (max-width: 1080px) { .nav-links { gap: 0.9rem; } .nav-links a { font-size: 0.68rem; letter-spacing: 0.6px; } }
@media (max-width: 960px) {
  :root { --nav-top: 4.6rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mode-toggle-mobile { display: flex; margin-left: auto; margin-right: 0.4rem; }
  .navbar { width: calc(100% - 1.4rem); padding: 0.6rem 0.9rem 0.6rem 1.2rem; max-width: 100%; top:2.7rem; }
  .logo { font-size: 1.2rem; }
  .faith-banner .symbol img { width: 84px; }
  .faith-banner .translation { font-size: 0.52rem; }
}

/* ---------- 4. BUTTONS ---------- */
.btn-primary, .btn-outline, .snapshot-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem 2.1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s, color 0.3s, border-color 0.3s; line-height: 1.2; white-space: nowrap; }
.btn-primary { background: var(--brand-gold); color: var(--gold-ink-on); border: 1px solid var(--brand-gold); box-shadow: 0 10px 28px rgba(233, 196, 111, 0.22); }
.btn-primary:hover { background: var(--brand-gold-hover); border-color: var(--brand-gold-hover); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(233, 196, 111, 0.32); color: var(--gold-ink-on); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border-glow); }
.btn-outline:hover { background: var(--gold-soft); border-color: var(--brand-gold); color: var(--brand-gold); transform: translateY(-3px); }
.btn-primary:active, .btn-outline:active { transform: translateY(-1px); }
.btn-wrap { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary[disabled], .btn-outline[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
@media (max-width: 480px) { .btn-primary, .btn-outline { width: 100%; white-space: normal; text-align: center; } }

/* ---------- 5. HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--nav-top) + 6.5rem) var(--gutter) 6rem; overflow: hidden; }
.hero-content, .hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.subheading, .eyebrow, .eyebrow-tag, .snapshot-tag, .demo-banner-tag, .lab-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 1.4rem; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 200; line-height: 1.08; margin-bottom: 1.6rem; letter-spacing: -1.5px; }
h1 strong, h2 strong, .contact-info h3 strong, .demo-banner h3 strong { font-weight: 800; color: var(--brand-gold); background: linear-gradient(120deg, var(--brand-gold) 0%, #f5dfa0 50%, var(--brand-gold) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
html[data-theme="light"] h1 strong, html[data-theme="light"] h2 strong, html[data-theme="light"] .contact-info h3 strong, html[data-theme="light"] .demo-banner h3 strong, body.light-mode h1 strong, body.light-mode h2 strong, body.light-mode .contact-info h3 strong, body.light-mode .demo-banner h3 strong { background: none; -webkit-text-fill-color: initial; color: var(--brand-gold); }
.hero p { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--text-muted); max-width: 680px; margin: 0 auto; font-weight: 300; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-faint); font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-mouse { width: 22px; height: 36px; border: 1px solid var(--border-glow); border-radius: 12px; position: relative; }
.scroll-mouse::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px; background: var(--brand-gold); border-radius: 2px; animation: scroll-wheel 1.8s infinite; }
@keyframes scroll-wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }
@media (max-width: 760px) { .hero { min-height: 92svh; padding-top: calc(var(--nav-top) + 5.5rem); padding-bottom: 5rem; } .scroll-indicator { display: none; } }

/* Marquee */
.marquee-container { overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 1.6rem 0; background: var(--surface); position: relative; }
.marquee-container::before, .marquee-container::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none; }
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.marquee-content { display: flex; gap: 4rem; width: max-content; animation: scroll-marquee 40s linear infinite; }
.marquee-content span { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.marquee-content span.outline-text { color: transparent; -webkit-text-stroke: 1px var(--text-muted); font-weight: 800; }
@keyframes scroll-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-container:hover .marquee-content { animation-play-state: paused; }

/* ---------- 6. LAYOUT & SECTION HEADERS ---------- */
section { padding: clamp(4rem, 8vw, 7.5rem) var(--gutter); position: relative; z-index: 2; }
section > * { max-width: var(--container); margin-left: auto; margin-right: auto; }
.section-header { text-align: center; margin: 0 auto clamp(2.4rem, 5vw, 4rem); max-width: 820px; display: block; }
.section-header h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); font-weight: 200; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 640px; margin: 0 auto; font-weight: 300; line-height: 1.7; text-transform: none; letter-spacing: 0; }
.section-header p + p { margin-top: 0.6rem; }
.section-header .subheading, .section-header .snapshot-tag, .section-header .eyebrow, .section-header .eyebrow-tag { margin-bottom: 1rem; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header.left p { margin-left: 0; }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }
.breadcrumb-nav, .crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 1.5rem; justify-content: center; }
.breadcrumb-nav a, .crumbs a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb-nav a:hover, .crumbs a:hover { color: var(--brand-gold); }
.breadcrumb-nav .bc-sep { opacity: 0.5; }
.breadcrumb-nav .bc-current { color: var(--brand-gold); }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--text-muted); font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; }
.prose strong { color: var(--text-main); font-weight: 600; }
.prose a { color: var(--brand-gold); text-decoration: none; border-bottom: 1px solid var(--border-light); }
.prose a:hover { border-color: var(--brand-gold); }
.prose h2, .prose h3 { margin: 2.2rem 0 0.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

/* ---------- 7. CARDS & GRIDS (shared surface language) ---------- */
.services-grid, .portfolio-grid, .testimonials-grid, .blog-grid, .industries-grid, .lab-grid, .results-grid, .why-grid, .city-grid { display: grid; gap: 1.5rem; max-width: var(--container); margin: 0 auto; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.portfolio-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.testimonials-grid, .blog-grid, .lab-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.industries-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.results-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.why-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.city-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.service-card, .lab-card, .testimonial-card, .blog-card, .industry-card, .result-card, .why-card, .city-card, .feature-card, .clock-card, .glass-card, .tool-card, .value-card, .prob-card, .more-card, .pricing-card, .node-card, .related-card, .kit-card, .audit-card {
  background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-lg); transition: transform 0.45s var(--ease), border-color 0.4s, box-shadow 0.45s, background 0.4s; position: relative; overflow: hidden; }
html[data-theme="light"] .service-card, html[data-theme="light"] .lab-card, html[data-theme="light"] .testimonial-card, html[data-theme="light"] .blog-card, html[data-theme="light"] .industry-card, html[data-theme="light"] .result-card, html[data-theme="light"] .why-card, html[data-theme="light"] .city-card, html[data-theme="light"] .tool-card, html[data-theme="light"] .pricing-card, html[data-theme="light"] .estimator-wrapper, html[data-theme="light"] .snapshot-card, html[data-theme="light"] .contact-form-wrapper, html[data-theme="light"] .demo-banner, html[data-theme="light"] .enterprise-panel, html[data-theme="light"] .process-node, html[data-theme="light"] .faq-item, html[data-theme="light"] .clock-card { box-shadow: var(--shadow-sm); }
.service-card, .lab-card, .industry-card, .why-card { padding: 2.4rem 2rem; }
.service-card:hover, .lab-card:hover, .testimonial-card:hover, .blog-card:hover, .industry-card:hover, .result-card:hover, .why-card:hover, .city-card:hover, .tool-card:hover, .value-card:hover, .prob-card:hover, .more-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card::before, .lab-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 220px at 50% -20%, var(--gold-soft), transparent 70%); opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.service-card:hover::before, .lab-card:hover::before { opacity: 1; }
.service-icon, .lab-icon { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid var(--border-light); margin-bottom: 1.4rem; transition: transform 0.4s var(--ease), background 0.4s; }
.service-card:hover .service-icon, .lab-card:hover .lab-icon { transform: translateY(-3px) rotate(-4deg); background: var(--brand-gold); }
.service-card:hover .service-icon svg, .lab-card:hover .lab-icon svg { stroke: var(--gold-ink-on); }
.service-icon svg, .lab-icon svg { width: 24px; height: 24px; stroke: var(--brand-gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.service-card h3, .lab-card h3, .industry-card h3, .why-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.7rem; letter-spacing: -0.2px; }
.service-card p, .lab-card p, .industry-card p, .why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.service-card .service-num { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 0.68rem; letter-spacing: 2px; color: var(--text-faint); font-weight: 600; }
.service-cta { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-gold); text-decoration: none; opacity: 0.85; transition: gap 0.3s, opacity 0.3s; }
.service-card:hover .service-cta { gap: 0.8rem; opacity: 1; }
.lab-tag { display: inline-block; font-size: 0.6rem; letter-spacing: 2.5px; padding: 0.35rem 0.8rem; border: 1px solid var(--border-light); border-radius: 30px; margin-bottom: 1.4rem; background: var(--surface-2); }
.interactive-card { cursor: default; }
.testimonial-card { padding: 2.5rem 2.2rem; display: flex; flex-direction: column; }
.blog-card { padding: 2.4rem 2.2rem; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 1rem; line-height: 1.3; }
.blog-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.6rem; flex-grow: 1; }
.result-card { padding: 2.4rem 1.5rem; text-align: center; }
.industry-card { text-align: center; padding: 2.2rem 1.6rem; }
.industry-card .service-icon { margin-left: auto; margin-right: auto; }
.industry-card h3 { font-size: 1.05rem; }
.industry-card p { font-size: 0.82rem; }
.results-grid { margin-bottom: 3rem; }

/* ---------- 8/9. PORTED COMPONENT LIBRARY (portfolio, snapshot, estimator, marketing panel, blog, contact, map, modal, chat, process timeline, results, enterprise, slogan band) ---------- */
/* --- ANIMATED PORTFOLIO GALLERY --- */
.filter-container { display: flex; justify-content: flex-start; gap: 1rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto 3rem auto; }
.filter-btn { background: transparent; border: 1px solid var(--border-light); color: var(--text-muted); padding: 0.8rem 2rem; border-radius: 30px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s ease; }
.filter-btn.active, .filter-btn:hover { background: var(--text-main); color: var(--gold-ink-on); border-color: var(--text-main); }
.portfolio-item { position: relative; border-radius: 24px; overflow: hidden; height: 350px; border: 1px solid var(--border-light); transform: translateY(0) scale(1); opacity: 1; transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease, border-color 0.4s; }
.portfolio-item.hidden { display: none; }
.portfolio-item.hide-anim { opacity: 0; transform: translateY(20px) scale(0.95); }
.portfolio-item:hover { border-color: var(--brand-gold); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.portfolio-bg { width: 100%; height: 100%; background-color: var(--bg-darker); display: flex; align-items: center; justify-content: center; transition: transform 0.8s ease, background-color 0.6s; position: relative; }
.portfolio-bg-text { color: var(--border-light); font-size: 4rem; font-weight: 800; opacity: 0.3; transition: color 0.4s; text-align: center; line-height: 1; }
.portfolio-item:hover .portfolio-bg { transform: scale(1.05); }
.portfolio-item:hover .portfolio-bg-text { color: var(--brand-gold); opacity: 0.15; }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 4rem 2.5rem 2.5rem; background: var(--overlay-gradient); transform: translateY(10px); opacity: 0; transition: all 0.4s ease; }
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); opacity: 1; }

/* Browser-chrome mockup strip on portfolio cards — shows the real domain */
.browser-chrome { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; gap: 6px; padding: 0.65rem 0.9rem; background: rgba(0,0,0,0.28); z-index: 2; }
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.browser-url { flex: 1; background: var(--surface-2); border-radius: 20px; padding: 3px 12px; font-size: 0.62rem; color: rgba(255,255,255,0.6); text-align: center; font-family: 'Courier New', monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.device-badges { position: absolute; top: 3.4rem; right: 1rem; display: flex; gap: 6px; z-index: 3; }
.device-badge { width: 26px; height: 26px; border-radius: 8px; background: rgba(0,0,0,0.45); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.14); }
.device-badge svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 1.8; }

/* Modal chrome header — same motif inside the project detail panel */
.modal-chrome { display: none; align-items: center; gap: 6px; margin: -4rem -3rem 2rem; padding: 1rem 3.5rem 1rem 1.5rem; background: rgba(0,0,0,0.2); border-bottom: 1px solid var(--border-light); }
.modal-chrome .browser-dot { width: 8px; height: 8px; }
.modal-chrome .browser-url { font-size: 0.7rem; padding: 4px 14px; }
.modal-device-row { display: flex; gap: 0.6rem; margin: 1.2rem 0 1.8rem; }
.modal-device-chip { display: flex; align-items: center; gap: 6px; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border: 1px solid var(--border-light); border-radius: 20px; padding: 5px 12px 5px 8px; }
.modal-device-chip svg { width: 13px; height: 13px; stroke: var(--brand-gold); fill: none; stroke-width: 1.8; }
.portfolio-overlay h3 { color: var(--text-main); font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 400; line-height: 1.2; }
.portfolio-overlay p { color: var(--brand-gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }

/* --- SERVICES SECTION --- */

/* --- STATS COUNTER SECTION --- */
.stats-section { background: var(--bg-darker); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); transition: background-color 0.6s ease, border-color 0.6s ease; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.stat-item { padding: 1rem; }
.stat-number { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 200; color: var(--brand-gold); line-height: 1; letter-spacing: -2px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.5rem; font-weight: 500; }

/* --- TESTIMONIALS --- */
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 1.5rem; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--brand-gold); }
.testimonial-text { color: var(--text-main); font-size: 1.05rem; line-height: 1.7; font-weight: 300; flex-grow: 1; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-darker); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--brand-gold); font-size: 1.1rem; }
.testimonial-info h4 { font-size: 0.95rem; font-weight: 500; color: var(--text-main); }
.testimonial-info p { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- PROCESS TIMELINE --- */
.process-timeline { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.process-step { position: relative; padding: 2rem; }
.process-step::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 1px; background: var(--brand-gold); }
.process-step .step-num { font-size: 0.75rem; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin-bottom: 1rem; }
.process-step h4 { font-size: 1.2rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--text-main); }
.process-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; font-weight: 300; }

/* --- FORM CONTROLS & INPUTS --- */
.estimator-wrapper { max-width: 1200px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 32px; padding: 5rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; backdrop-filter: blur(20px); transition: all 0.6s ease; margin-bottom: 3rem; position: relative; }
@media(max-width: 1024px) { .estimator-wrapper { grid-template-columns: 1fr; padding: 3rem; gap: 3rem; } }
.control-group { margin-bottom: 2.5rem; position: relative; }
.control-group label { display: block; color: var(--text-muted); font-weight: 500; margin-bottom: 0.5rem; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; }

.sleek-select { width: 100%; padding: 1rem 0; background: transparent; border: none; border-bottom: 1px solid var(--border-light); color: var(--text-main); font-size: 1.1rem; outline: none; appearance: none; transition: border-color 0.3s, color 0.6s ease; border-radius: 0; font-weight: 300; }
.sleek-select:focus { border-color: var(--brand-gold); }
.sleek-select option { background: var(--bg-darker); color: var(--text-main); }

.sleek-input { width: 100%; padding: 1rem 0; background: transparent; border: none; border-bottom: 1px solid var(--border-light); color: var(--text-main); font-size: 1.1rem; outline: none; transition: border-color 0.3s, color 0.6s ease; font-weight: 400; }
.sleek-input:focus { border-color: var(--brand-gold); }
.sleek-input::placeholder { color: var(--text-muted); font-size: 0.9rem; font-weight: 300; text-transform: none; opacity: 0.5; }

input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; padding: 1rem 0; }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 2px; background: var(--border-light); border-radius: 2px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%; background: var(--brand-gold); margin-top: -11px; box-shadow: 0 0 20px rgba(233,196,111,0.5); transition: transform 0.2s; }
input[type=range]:hover::-webkit-slider-thumb { transform: scale(1.2); }

/* --- HIGH-END FEATURE GRID (Replaces Checkboxes) --- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
@media(max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card { background: rgba(0,0,0,0.15); border: 1px solid var(--border-light); border-radius: 16px; padding: 1.5rem; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; min-height: 120px; }
body.light-mode .feature-card { background: rgba(255,255,255,0.7); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(233, 196, 111, 0.1), transparent); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }

.feature-card:hover { border-color: rgba(233, 196, 111, 0.4); transform: translateY(-3px); }
.feature-card.active { border-color: var(--brand-gold); background: rgba(233, 196, 111, 0.03); box-shadow: 0 10px 30px var(--ai-glow); transform: translateY(-3px); }
.feature-card.active::before { opacity: 1; }

.feature-card h5 { color: var(--text-main); font-size: 0.95rem; margin-bottom: 0.4rem; font-weight: 500; transition: color 0.3s; }
.feature-card.active h5 { color: var(--brand-gold); }
.feature-card p { color: var(--text-muted); font-size: 0.75rem; line-height: 1.4; font-weight: 300; margin: 0; }

.feature-indicator { position: absolute; top: 1.2rem; right: 1.2rem; width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--border-light); transition: all 0.4s; }
.feature-card.active .feature-indicator { background: var(--brand-gold); border-color: var(--brand-gold); box-shadow: 0 0 10px var(--brand-gold); }

.ecom-extended-panel { display: none; opacity: 0; margin-top: 1rem; padding: 1.5rem; background: rgba(0,0,0,0.2); border: 1px solid var(--border-light); border-radius: 16px; transition: opacity 0.4s ease; }
body.light-mode .ecom-extended-panel { background: rgba(255,255,255,0.8); }

/* --- PREMIUM GLOWING DASHBOARD WIDGET (Right Side Estimator) --- */
.price-output-panel { background: linear-gradient(145deg, rgba(30, 30, 32, 0.6), rgba(20, 20, 22, 0.8)); border: 1px solid var(--border-glow); border-radius: 28px; padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; box-shadow: inset 0 0 40px var(--ai-glow), 0 20px 50px rgba(0,0,0,0.1); transition: all 0.4s ease; }
body.light-mode .price-output-panel { background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(240, 240, 245, 0.9)); box-shadow: inset 0 0 40px rgba(233, 196, 111, 0.2), 0 20px 50px rgba(0,0,0,0.05); }

/* Sweeping Glare Animation on Update */
.price-output-panel::after { content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(233, 196, 111, 0.15), transparent); transform: skewX(-25deg); pointer-events: none; }
.price-output-panel.updating::after { animation: panel-sweep 0.7s ease-in-out; }
@keyframes panel-sweep { 0% { left: -100%; } 100% { left: 200%; } }

.price-output-panel.updating { border-color: var(--brand-gold); box-shadow: inset 0 0 60px rgba(233, 196, 111, 0.15), 0 20px 50px rgba(0,0,0,0.15); }

.price-display { font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 200; color: var(--text-main); line-height: 1; margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 10px; transition: color 0.6s ease; text-shadow: 0 0 30px var(--border-subtle); }
.currency { font-size: 2rem; color: var(--brand-gold); font-weight: 500; margin-top: 0.8rem; }

/* Marketing AI Panels */
.ai-results-panel { background: rgba(233, 196, 111, 0.01); border: 1px solid var(--border-glow); border-radius: 28px; padding: 2.5rem; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 2rem; box-shadow: inset 0 0 30px var(--ai-glow); transition: all 0.4s ease; }
.ai-results-panel.processing { box-shadow: inset 0 0 45px rgba(233, 196, 111, 0.25); border-color: var(--brand-gold); }
.ai-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(233, 196, 111, 0.1); border: 1px solid var(--brand-gold); color: var(--brand-gold); font-size: 0.65rem; text-transform: uppercase; padding: 4px 12px; border-radius: 12px; letter-spacing: 1.5px; font-weight: 800; }

.mkt-platform-card { background: rgba(0, 0, 0, 0.15); border: 1px solid var(--border-light); border-radius: 20px; padding: 1.5rem; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
body.light-mode .mkt-platform-card { background: rgba(255, 255, 255, 0.8); }
.mkt-platform-card:hover { border-color: var(--brand-gold); transform: translateY(-2px); }

.mkt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; border-bottom: 1px solid var(--border-light); padding-bottom: 0.75rem; }
.mkt-header h4 { font-size: 1.25rem; font-weight: 400; color: var(--text-main); }
.mkt-header span { font-size: 1.25rem; font-weight: 800; color: var(--brand-gold); }
.mkt-data { display: flex; justify-content: space-between; align-items: flex-end; }
.mkt-data-box { display: flex; flex-direction: column; }
.mkt-data-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.mkt-data-value { font-size: 1.6rem; font-weight: 800; color: var(--text-main); line-height: 1; margin-top: 0.25rem; }

.graph-container { width: 100%; height: 130px; margin-top: 0.5rem; position: relative; border-bottom: 1px solid var(--border-light); }
.graph-svg { width: 100%; height: 100%; overflow: visible; }
.graph-path { stroke: var(--brand-gold); stroke-width: 2; fill: none; stroke-dasharray: 600; stroke-dashoffset: 0; transition: d 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.graph-gradient-path { fill: url(#graph-glow-grad); transition: d 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.graph-grid-line { stroke: var(--border-light); stroke-width: 1; stroke-dasharray: 4,4; }

/* --- BLOG / INSIGHTS SECTION --- */
.blog-meta { color: var(--brand-gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.read-more-btn { align-self: flex-start; background: transparent; color: var(--text-main); border: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; border-bottom: 1px solid var(--brand-gold); padding-bottom: 4px; transition: color 0.3s; }
.read-more-btn:hover { color: var(--brand-gold); }

/* --- FAQ ACCORDION ---
   v3.33: this used to be a second, conflicting definition of the FAQ styles (an
   underline look) that fought with the card look defined further down. The mix is
   what pushed answers further right than their questions. There is now ONE FAQ
   definition — search "FAQ — SINGLE SOURCE" below. */

/* --- CONTACT SECTION --- */
.contact-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media(max-width: 900px) { .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info h3 { font-size: 2.5rem; font-weight: 200; margin-bottom: 1.5rem; line-height: 1.2; }
.contact-info h3 strong { font-weight: 800; color: var(--brand-gold); }
.contact-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail svg { width: 20px; height: 20px; stroke: var(--brand-gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.contact-detail span { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }
.contact-form-wrapper { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 24px; padding: 3rem; transition: all 0.4s ease; }
.contact-form-wrapper:hover { border-color: var(--border-glow); }
.contact-success { display: none; text-align: center; padding: 2rem 0; }
.contact-success.show { display: block; }
.contact-success svg { width: 48px; height: 48px; stroke: var(--brand-gold); fill: none; stroke-width: 1.5; margin: 0 auto 1rem; }
.contact-success h4 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.5rem; }
.contact-success p { color: var(--text-muted); }

/* --- GLOBAL MAP --- */
.map-section { background: var(--bg-darker); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); transition: background-color 0.6s ease; }
.clocks-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; max-width: 1200px; margin: 0 auto; background: var(--border-light); border: 1px solid var(--border-light); border-radius: 24px; overflow: hidden; transition: border-color 0.6s ease; }
@media(max-width: 900px) { .clocks-container { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 500px) { .clocks-container { grid-template-columns: 1fr; } }
.clock-card { background: var(--bg-darker); padding: 3rem 2rem; transition: background 0.4s; text-align: center; }
.clock-card:hover { background: var(--bg-dark); }
.clock-card h3 { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 500; }
.clock-card .time { font-size: 3rem; font-weight: 200; color: var(--text-main); letter-spacing: -1px; transition: color 0.6s ease; }

/* --- SLEEK MODAL --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--modal-overlay); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); z-index: 100001; display: flex; justify-content: flex-end; opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-darker); width: 100%; max-width: 600px; height: 100%; padding: 4rem 3rem; border-left: 1px solid var(--border-light); transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.6s ease; display: flex; flex-direction: column; overflow-y: auto; }
.modal-overlay.active .modal-content { transform: translateX(0); }
.close-modal { align-self: flex-end; font-size: 2.5rem; font-weight: 200; color: var(--text-muted); transition: color 0.3s; line-height: 1; margin-bottom: 2rem; background: transparent; border: none; }
.close-modal:hover { color: var(--text-main); }
.modal-content h3 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 200; color: var(--text-main); transition: color 0.6s ease; }
.dynamic-form { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.dynamic-form input, .dynamic-form textarea { width: 100%; padding: 1rem 0; background: transparent; border: none; border-bottom: 1px solid var(--border-light); color: var(--text-main); outline: none; transition: all 0.3s, color 0.6s ease; font-size: 1rem; font-weight: 300; resize: none; }
.dynamic-form input:focus, .dynamic-form textarea:focus { border-color: var(--brand-gold); }
.dynamic-form input::placeholder, .dynamic-form textarea::placeholder { color: var(--text-muted); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

.blog-article-content { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; font-weight: 300; }
.blog-article-content h4 { color: var(--text-main); font-size: 1.3rem; margin: 2rem 0 1rem; font-weight: 500; }
.modal-project-meta { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.modal-project-meta div { display: flex; flex-direction: column; }
.modal-project-meta .meta-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.25rem; }
.modal-project-meta .meta-value { font-size: 1rem; color: var(--brand-gold); font-weight: 500; }
.modal-tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.modal-tag { background: rgba(233, 196, 111, 0.08); border: 1px solid var(--border-light); color: var(--brand-gold); font-size: 0.7rem; padding: 4px 12px; border-radius: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* --- CHAT WIDGET --- */
.chat-nudge { position: fixed; bottom: 170px; right: 30px; max-width: 240px; background: var(--bg-darker); border: 1px solid var(--border-glow); color: var(--text-main); font-size: 0.78rem; line-height: 1.4; padding: 0.9rem 1.1rem; border-radius: 16px 16px 4px 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.3); z-index: 99997; opacity: 0; transform: translateY(10px) scale(0.95); pointer-events: none; transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1); }
.chat-nudge.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; cursor: pointer; }
.chat-nudge.dismissed { display: none; }
@media(max-width: 600px) { .btn-outline {  } .chat-nudge { right: 10px; bottom: 148px; max-width: 190px; } }
.chatbot-widget { position: fixed; bottom: 30px; right: 30px; width: 340px; background: var(--chatbot-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--border-light); border-radius: 24px; overflow: hidden; z-index: 99998; display: flex; flex-direction: column; transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s, background-color 0.6s ease; height: 60px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.chatbot-widget:hover { border-color: var(--border-glow); }
.chatbot-widget.open { height: 450px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.chatbot-header { padding: 20px; color: var(--text-main); font-weight: 500; display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; border-bottom: 1px solid transparent; transition: color 0.6s ease; }
#chat-lang-select { background: rgba(233,196,111,0.1); border: 1px solid var(--border-light); color: var(--brand-gold); font-size: 0.68rem; text-transform: none; letter-spacing: 0; padding: 4px 6px; border-radius: 6px; font-family: 'Montserrat', sans-serif; max-width: 92px; }
.msg.bot-msg.translating { display: flex; align-items: center; gap: 6px; opacity: 0.6; font-style: italic; font-size: 0.8rem; }
.chatbot-widget.open .chatbot-header { border-bottom: 1px solid var(--border-light); }
.chatbot-body { display: flex; flex-direction: column; height: 100%; opacity: 0; padding: 20px; }
.chatbot-widget.open .chatbot-body { opacity: 1; transition: opacity 0.3s 0.2s; }
.chat-messages { flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; padding-right: 10px; }
.chat-messages::-webkit-scrollbar { width: 2px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border-light); }
.msg { padding: 12px 16px; border-radius: 16px; font-size: 0.9rem; max-width: 85%; line-height: 1.5; font-weight: 300; }
.bot-msg { background: var(--msg-bot); align-self: flex-start; color: var(--text-main); border-bottom-left-radius: 4px; transition: background-color 0.6s ease, color 0.6s ease; }
.user-msg { background: var(--text-main); align-self: flex-end; color: var(--gold-ink-on); font-weight: 500; border-bottom-right-radius: 4px; transition: background-color 0.6s ease, color 0.6s ease; }
.chat-input-area { display: flex; gap: 10px; border-top: 1px solid var(--border-light); padding-top: 15px; }
.chat-input-area input { flex-grow: 1; background: transparent; border: none; color: var(--text-main); outline: none; font-size: 0.9rem; transition: color 0.6s ease; }
.chat-input-area input::placeholder { color: var(--text-muted); }
.chat-input-area button { background: transparent; color: var(--brand-gold); border: none; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.quick-reply-btn { background: rgba(233, 196, 111, 0.06); border: 1px solid var(--border-light); color: var(--brand-gold); font-size: 0.72rem; padding: 6px 12px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; transition: all 0.3s; }
.quick-reply-btn:hover { border-color: var(--brand-gold); background: rgba(233, 196, 111, 0.12); }
.msg.typing { display: flex; align-items: center; gap: 4px; padding: 14px 16px; }
.msg.typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--text-muted); opacity: 0.5; animation: typing-bounce 1.2s infinite ease-in-out; }
.msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.msg.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.msg a.chat-link { color: var(--brand-gold); text-decoration: underline; }
.msg.bot-msg strong { color: var(--brand-gold); font-weight: 600; }

/* --- BACK TO TOP --- */
.back-to-top { position: fixed; bottom: 30px; left: 30px; width: 48px; height: 48px; border-radius: 50%; background: var(--chatbot-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; z-index: 9997; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { border-color: var(--brand-gold); transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--brand-gold); fill: none; stroke-width: 2; }

/* --- NEWSLETTER --- */
.newsletter-wrap { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.newsletter-form { display: flex; gap: 1rem; margin-top: 1.5rem; }
.newsletter-form input { flex-grow: 1; background: transparent; border: none; border-bottom: 1px solid var(--border-light); color: var(--text-main); padding: 1rem 0; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--brand-gold); }
.newsletter-form input::placeholder { color: var(--text-muted); font-size: 0.85rem; }
.newsletter-success { display: none; color: var(--brand-gold); font-size: 0.9rem; margin-top: 1rem; }
.newsletter-success.show { display: block; }

/* --- FOOTER --- */
footer { padding: 8rem 5% 4rem; text-align: center; border-top: 1px solid var(--border-light); position: relative; z-index: 2; transition: border-color 0.6s ease; }
.footer-logo { font-size: clamp(3rem, 8vw, 8rem); font-weight: 800; letter-spacing: -3px; margin-bottom: 2rem; color: transparent; -webkit-text-stroke: 1px var(--footer-stroke); transition: color 0.5s, -webkit-text-stroke 0.5s; }
.footer-logo:hover { color: var(--text-main); -webkit-text-stroke: 0px; }
.footer-social { display: flex; gap: 1.5rem; justify-content: center; margin: 2rem 0; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.footer-social a:hover { border-color: var(--brand-gold); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.footer-social a:hover svg { stroke: var(--brand-gold); }
.footer-social a.filled { color: var(--text-muted); }
.footer-social a.filled svg { fill: currentColor; stroke: none; }
.footer-social a.filled:hover { color: var(--brand-gold); }
.footer-bottom { margin-top: 4rem; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { display: flex; gap: 2rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--brand-gold); }

/* --- REDESIGNED PROCESS TIMELINE --- */
.process-timeline-v2 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-line { position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, transparent, var(--brand-gold), transparent); z-index: 0; opacity: 0.5; }
.process-node { position: relative; text-align: center; padding: 2.5rem 1.5rem 2rem; background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 20px; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); overflow: visible; }
.process-node:hover { border-color: var(--brand-gold); transform: translateY(-8px); background: rgba(233, 196, 111, 0.02); }
.process-node-num { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--bg-darker); border: 2px solid var(--brand-gold); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--brand-gold); font-size: 0.85rem; z-index: 2; box-shadow: 0 0 20px var(--ai-glow); }
.process-node-icon { width: 48px; height: 48px; margin: 0.5rem auto 1.2rem; display: flex; align-items: center; justify-content: center; }
.process-node-icon svg { width: 100%; height: 100%; stroke: var(--brand-gold); fill: none; stroke-width: 1.5; }
.process-node h4 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--text-main); }
.process-node p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; font-weight: 300; margin-bottom: 1rem; }
.process-node-tag { display: inline-block; font-size: 0.62rem; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; padding: 4px 12px; border: 1px solid var(--border-light); border-radius: 12px; }

/* --- WORLD MAP --- */
.world-map-wrapper { max-width: 1200px; margin: 0 auto; }
.world-map { position: relative; width: 100%; aspect-ratio: 2/1; background: var(--bg-darker); border: 1px solid var(--border-light); border-radius: 24px; overflow: hidden; background-image: radial-gradient(circle, var(--border-light) 1px, transparent 1px); background-size: 22px 22px; margin-bottom: 2rem; }
.map-connections { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.map-line { fill: none; stroke: var(--brand-gold); stroke-width: 0.2; opacity: 0.35; stroke-dasharray: 1.5, 0.8; }
.map-pin { position: absolute; transform: translate(-50%, -50%); z-index: 3; }
.pin-dot { position: absolute; top: 0; left: 0; transform: translate(-50%, -50%); width: 10px; height: 10px; background: var(--brand-gold); border-radius: 50%; box-shadow: 0 0 14px var(--brand-gold); }
.pin-pulse { position: absolute; top: 0; left: 0; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--brand-gold); animation: pin-pulse 2.5s infinite; }
@keyframes pin-pulse { 0% { width: 10px; height: 10px; opacity: 1; } 100% { width: 44px; height: 44px; opacity: 0; } }
.pin-label { position: absolute; bottom: 16px; left: 0; transform: translateX(-50%); white-space: nowrap; font-size: 0.62rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; background: var(--bg-darker); padding: 3px 10px; border-radius: 10px; border: 1px solid var(--border-light); }
.map-pin.client .pin-dot { width: 6px; height: 6px; background: var(--text-muted); box-shadow: none; opacity: 0.6; }
.map-pin.client .pin-pulse { display: none; }
.map-legend { display: flex; gap: 2rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.map-legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.map-legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.clock-region { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.5rem; font-weight: 500; }
.node-status { display: inline-flex; align-items: center; gap: 5px; margin-top: 0.8rem; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border-light); }
.node-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.node-status.active { color: #6ee7a0; border-color: rgba(110,231,160,0.3); }
.node-status.active .dot { background: #6ee7a0; box-shadow: 0 0 8px #6ee7a0; animation: statusPulse 2s infinite; }
.node-status.off .dot { background: var(--text-muted); }
.node-status.off { color: var(--text-muted); }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* --- RESULTS / TRUST SECTION --- */
.result-num { font-size: 2.4rem; font-weight: 800; color: var(--brand-gold); line-height: 1; margin-bottom: 0.6rem; }
.result-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.result-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; opacity: 0.7; }
.region-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; max-width: 900px; margin: 2.5rem auto 0; }
.region-pill { display: flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border-light); border-radius: 30px; padding: 0.6rem 1.2rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.region-pill .flag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-gold); }
@media(max-width: 900px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) {
.btn-wrap{
grid-template-columns: 1fr; 

} .hero {
padding: 8rem 2rem 4rem; } .btn-outline { font-size:10px; } .results-grid { grid-template-columns: 1fr; } }

/* --- ENTERPRISE SECTION --- */
.enterprise-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.enterprise-copy .eyebrow-tag { display: inline-block; font-size: 0.65rem; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; background: rgba(233,196,111,0.12); padding: 0.3rem 0.9rem; border-radius: 20px; margin-bottom: 1.2rem; }
.enterprise-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 200; margin-bottom: 1.2rem; line-height: 1.2; }
.enterprise-copy h2 strong { font-weight: 800; color: var(--brand-gold); }
.enterprise-copy p { color: var(--text-muted); font-weight: 300; margin-bottom: 2rem; max-width: 460px; }
.enterprise-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.enterprise-list li { display: flex; align-items: flex-start; gap: 0.8rem; }
.enterprise-list .check { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--brand-gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.enterprise-list .check svg { width: 11px; height: 11px; stroke: var(--brand-gold); fill: none; stroke-width: 3; }
.enterprise-list .item-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.2rem; }
.enterprise-list .item-desc { color: var(--text-muted); font-size: 0.82rem; font-weight: 300; line-height: 1.5; }
.enterprise-panel { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 28px; padding: 3rem; }
.enterprise-panel h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 1.8rem; }
.enterprise-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.enterprise-stat-row:last-of-type { border-bottom: none; }
.enterprise-stat-row span:first-child { color: var(--text-muted); font-size: 0.85rem; }
.enterprise-stat-row span:last-child { font-weight: 800; color: var(--brand-gold); }
@media(max-width: 900px) { .enterprise-wrapper { grid-template-columns: 1fr; gap: 2.5rem; } }

/* --- INDUSTRIES SECTION --- */


/* FREE DEMO BANNER */
.demo-banner-section { max-width: 1200px; margin: 2.5rem auto; padding: 0 5%; position: relative; z-index: 2; }

/* --- INSTANT SITE SNAPSHOT TOOL --- */
.snapshot-section { max-width: 1200px; margin: 0 auto; padding: 6rem 5% 4rem; position: relative; z-index: 2; }
.snapshot-card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 28px; padding: 3.5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.snapshot-card::before { content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--ai-glow) 0%, transparent 70%); pointer-events: none; }
.snapshot-tag { display: inline-block; font-size: 0.65rem; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; background: rgba(233,196,111,0.12); padding: 0.3rem 0.9rem; border-radius: 20px; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.snapshot-card h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.8rem; position: relative; z-index: 1; }
.snapshot-card > p { color: var(--text-muted); max-width: 560px; margin: 0 auto 2.2rem; font-weight: 300; position: relative; z-index: 1; }
.snapshot-input-row { display: flex; gap: 0.8rem; max-width: 520px; margin: 0 auto; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.snapshot-input { flex: 1; min-width: 240px; background: var(--bg-darker); border: 1px solid var(--border-light); color: var(--text-main); padding: 1rem 1.4rem; border-radius: 30px; font-size: 0.95rem; outline: none; cursor: text; transition: border-color 0.3s; }
.snapshot-input:focus { border-color: var(--brand-gold); }
.snapshot-btn { background: var(--brand-gold); color: var(--gold-ink-on); padding: 1rem 2rem; border-radius: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border: none; font-size: 0.78rem; white-space: nowrap; transition: all 0.3s; }
.snapshot-btn:hover { transform: scale(1.05); box-shadow: 0 10px 25px rgba(233, 196, 111, 0.3); }
.snapshot-btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.snapshot-hint { font-size: 0.72rem; color: var(--text-muted); opacity: 0.7; margin-top: 1rem; position: relative; z-index: 1; }

.snapshot-results { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; display: none; }
.snapshot-results.show { display: block; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.snapshot-top { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin: 2.5rem 0 2rem; }
.snapshot-ring-wrap { position: relative; width: 160px; height: 160px; flex-shrink: 0; }
.snapshot-ring-wrap svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.snapshot-ring-bg { fill: none; stroke: var(--border-light); stroke-width: 8; }
.snapshot-ring-fill { fill: none; stroke: var(--brand-gold); stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.snapshot-ring-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.snapshot-ring-num { font-size: 2.4rem; font-weight: 800; color: var(--text-main); }
.snapshot-ring-sub { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }
.snapshot-verdict { max-width: 340px; text-align: left; }
.snapshot-verdict .domain-echo { font-family: monospace; color: var(--brand-gold); font-size: 0.85rem; margin-bottom: 0.5rem; word-break: break-all; }
.snapshot-verdict p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; font-weight: 300; }

.snapshot-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; text-align: left; }
.snapshot-cat { background: var(--bg-darker); border: 1px solid var(--border-light); border-radius: 16px; padding: 1.4rem 1.5rem; }
.snapshot-cat-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.7rem; }
.snapshot-cat-head span:first-child { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); font-weight: 500; }
.snapshot-cat-head span:last-child { font-size: 0.9rem; font-weight: 800; color: var(--brand-gold); }
.snapshot-cat-bar { height: 5px; border-radius: 3px; background: var(--border-light); overflow: hidden; }
.snapshot-cat-fill { height: 100%; background: var(--brand-gold); width: 0%; border-radius: 3px; transition: width 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); }
.snapshot-cat-tip { font-size: 0.74rem; color: var(--text-muted); margin-top: 0.7rem; font-weight: 300; line-height: 1.5; }

.snapshot-disclaimer { font-size: 0.7rem; color: var(--text-muted); opacity: 0.6; max-width: 640px; margin: 0 auto 2rem; text-align: center; }
.snapshot-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media(max-width: 640px) {  .btn-wrap{
grid-template-columns: 1fr; 
display: flex;
flex-direction: column;
gap: 1rem;

}  .btn-outline { font-size:10px; }
.snapshot-card { padding: 2.5rem 1.5rem; }
.snapshot-top { flex-direction: column; }
.snapshot-verdict { text-align: center; }
}
.demo-banner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: linear-gradient(135deg, rgba(233,196,111,0.12), rgba(233,196,111,0.03)); border: 1px solid var(--border-glow); border-radius: 24px; padding: 2rem 2.5rem; overflow: hidden; }
.demo-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 20%, rgba(233,196,111,0.18), transparent 60%); pointer-events: none; }
.demo-banner-content { z-index: 1; flex: 1; min-width: 260px; }
.demo-banner-tag { display: inline-block; font-size: 0.65rem; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; background: rgba(233,196,111,0.12); padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 0.8rem; }
.demo-banner h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 300; margin: 0 0 0.5rem; line-height: 1.2; }
.demo-banner h3 strong { font-weight: 800; color: var(--brand-gold); }
.demo-banner p { color: var(--text-muted); font-size: 0.9rem; font-weight: 300; margin: 0; max-width: 540px; line-height: 1.6; }
.demo-banner-cta { z-index: 1; }

/* EMBED MODE (estimators iframed into service pages) */
body.embed-mode .cursor-dot, body.embed-mode .cursor-outline { display: none !important; }
body.embed-mode .whatsapp-float { display: none !important; }
body.embed-mode, body.embed-mode * { cursor: auto !important; }
body.embed-mode section { padding: 2rem 5% !important; }
.whatsapp-float { position: fixed; right: 30px; bottom: 100px; z-index: 9995; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.45); transition: transform 0.3s ease; animation: waPulse 2.5s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); } }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@media(max-width: 768px) { .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 84px; } .whatsapp-float svg { width: 26px; height: 26px; } }
/* ===== SLOGAN BAND ===== */
#slogan-band { padding: 5rem 5%; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.sb-inner { text-align: center; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 3.2rem 1.5rem; position: relative; }
.sb-inner::before, .sb-inner::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 60px; height: 1px; background: var(--brand-gold); }
.sb-inner::before { top: -1px; } .sb-inner::after { bottom: -1px; }
.sb-eyebrow { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 3px; color: var(--brand-gold); font-weight: 700; display: block; margin-bottom: 1.2rem; }
.sb-line { font-size: clamp(1.7rem, 4.6vw, 3rem); font-weight: 200; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 1.1rem; }
.sb-line span { font-weight: 800; background: linear-gradient(to right, #ffffff, var(--brand-gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--brand-gold); }
.sb-sub { font-size: 0.92rem; color: var(--text-muted); font-weight: 300; max-width: 620px; margin: 0 auto; line-height: 1.7; }
.sb-sub a { color: var(--brand-gold); text-decoration: none; white-space: nowrap; }
.sb-sub a:hover { text-decoration: underline; }
/* ===== SCROLL PROGRESS ===== */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(to right, var(--brand-gold), #fff); z-index: 10000; transition: width 0.08s linear; pointer-events: none; }
/* ===== RESULT NUMBER TABULAR ALIGNMENT (stops jitter while counting) ===== */
.result-num { font-variant-numeric: tabular-nums; }

/* ---------- 9b. WIDGET & COMPONENT OVERRIDES (post-port polish) ---------- */
.stats-section { padding: 3rem var(--gutter); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; max-width: var(--container); margin: 0 auto; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 3rem 0; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 200; color: var(--brand-gold); line-height: 1; letter-spacing: -2px; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 0.8rem; font-weight: 500; }
.browser-chrome { background: var(--surface-2); }
.browser-dot { background: var(--border-glow); opacity: 0.6; }
.browser-url { color: var(--text-muted); background: var(--surface-2); }
.device-badge { background: var(--surface-2); }
.device-badge svg { stroke: var(--text-muted); }
.portfolio-item { background: var(--bg-darker); }
.portfolio-bg-text { color: var(--text-muted); opacity: 0.18; }
.filter-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter-btn { background: transparent; border: 1px solid var(--border-light); color: var(--text-muted); padding: 0.55rem 1.3rem; border-radius: 30px; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: var(--gold-ink-on); }
/* ===== FAQ — SINGLE SOURCE (v3.33) =========================================
   One definition for BOTH FAQ markup styles used on the site:
     accordion  <button.faq-question> + <div.faq-answer><p>
     static     <h3> + <p>
   The horizontal padding is a variable so a question and its answer can never
   drift out of line again — change it once and both move together.
   ========================================================================= */
:root { --faq-pad-x: 1.5rem; --faq-pad-y: 1.35rem; }
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius); margin-bottom: 0.8rem; background: var(--card-bg); overflow: hidden; transition: border-color 0.3s; }
.faq-item.active, .faq-item:hover { border-color: var(--border-glow); }

/* accordion form */
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%; padding: var(--faq-pad-y) var(--faq-pad-x); background: transparent; border: none; text-align: left; font-size: 1rem; font-weight: 500; line-height: 1.45; color: var(--text-main); cursor: pointer; font-family: inherit; }
.faq-question:hover { color: var(--brand-gold); }
.faq-icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--brand-gold); transition: transform 0.4s ease; }
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.active .faq-answer { max-height: 1200px; }
.faq-answer p { margin: 0; padding: 0 var(--faq-pad-x) var(--faq-pad-y); color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; font-weight: 300; }

/* static form — same box, same left edge as the accordion */
.faq-item > h3 { padding: var(--faq-pad-y) var(--faq-pad-x) 0; margin: 0; font-size: 1rem; font-weight: 600; line-height: 1.45; color: var(--text-main); }
.faq-item > h3 + p { padding: 0.55rem var(--faq-pad-x) var(--faq-pad-y); margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; font-weight: 300; }
@media (max-width: 600px) { :root { --faq-pad-x: 1.1rem; --faq-pad-y: 1.1rem; } .faq-question { font-size: 0.95rem; } }
.testimonial-avatar { background: var(--gold-soft); border: 1px solid var(--border-light); color: var(--brand-gold); }
.blog-meta { display: flex; gap: 1rem; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 1rem; font-weight: 600; }
.read-more-btn { color: var(--brand-gold); text-decoration: none; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: none; border: none; padding: 0; text-align: left; transition: letter-spacing 0.3s; }
.read-more-btn:hover { letter-spacing: 2.5px; }
.contact-form-wrapper { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2.5rem; }
.dynamic-form input, .dynamic-form textarea, .dynamic-form select, .sleek-input, .sleek-select, .newsletter-form input, .snapshot-input, .chat-input-area input { width: 100%; background: var(--surface-2); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 0.95rem 1.1rem; color: var(--text-main); font-weight: 400; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s; }
.dynamic-form input:focus, .dynamic-form textarea:focus, .dynamic-form select:focus, .sleek-input:focus, .sleek-select:focus, .newsletter-form input:focus, .snapshot-input:focus, .chat-input-area input:focus { outline: none; border-color: var(--brand-gold); box-shadow: 0 0 0 4px var(--gold-soft); background: var(--surface-solid); }
.dynamic-form input::placeholder, .dynamic-form textarea::placeholder, .sleek-input::placeholder, .snapshot-input::placeholder { color: var(--text-faint); }
.sleek-select option { background: var(--surface-solid); color: var(--text-main); }
.dynamic-form { display: flex; flex-direction: column; gap: 1rem; }
.dynamic-form textarea { min-height: 130px; resize: vertical; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--border-light); border-radius: 4px; outline: none; margin: 1rem 0; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-gold); border: 3px solid var(--bg-darker); box-shadow: 0 0 0 1px var(--brand-gold); cursor: pointer; transition: transform 0.2s; }
input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--brand-gold); border: 3px solid var(--bg-darker); cursor: pointer; }
input[type=range]:hover::-webkit-slider-thumb { transform: scale(1.15); }
.estimator-wrapper { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-xl); }
.price-output-panel { background: linear-gradient(145deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-glow); }
html[data-theme="light"] .price-output-panel, body.light-mode .price-output-panel { background: linear-gradient(145deg, #ffffff, #f7f3ea); box-shadow: inset 0 0 40px var(--gold-soft), var(--shadow-sm); }
.feature-card { background: var(--surface); }
html[data-theme="light"] .feature-card, body.light-mode .feature-card { background: #fff; }
.mkt-platform-card { background: var(--card-bg); }
html[data-theme="light"] .mkt-platform-card, body.light-mode .mkt-platform-card { background: #fff; }
.chatbot-widget { background: var(--chatbot-bg); border: 1px solid var(--border-light); box-shadow: var(--shadow-md); }
.chatbot-header { padding: 1rem 1.2rem; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.chat-nudge { background: var(--surface-solid); }
.back-to-top { background: var(--surface-solid); }
.modal-content { background: var(--bg-darker); border-left: 1px solid var(--border-light); box-shadow: var(--shadow-lg); }
.modal-content h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.close-modal { position: absolute; top: 1.2rem; right: 1.2rem; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-light); background: var(--surface-2); color: var(--text-main); font-size: 1.4rem; line-height: 1; display: flex; align-items: center; justify-content: center; z-index: 5; }
.close-modal:hover { border-color: var(--brand-gold); color: var(--brand-gold); }
#chat-lang-select { background: var(--surface-2); color: var(--text-main); border: 1px solid var(--border-light); border-radius: 8px; font-size: 0.7rem; padding: 2px 6px; }
.demo-banner { background: linear-gradient(120deg, var(--gold-soft), transparent 70%), var(--card-bg); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.2rem 2.6rem; }
.demo-banner h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 200; margin: 0.4rem 0 0.6rem; }
.demo-banner p { color: var(--text-muted); font-size: 0.92rem; max-width: 560px; }
.demo-banner-tag { margin-bottom: 0; font-size: 0.62rem; padding: 0.3rem 0.8rem; border: 1px solid var(--border-light); border-radius: 30px; }
.snapshot-card h2 { font-weight: 200; }
.enterprise-panel { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2.5rem; }
.enterprise-list li { display: flex; gap: 1rem; margin-bottom: 1.2rem; list-style: none; }
.enterprise-list .check { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.enterprise-list .check svg { width: 12px; height: 12px; stroke: var(--brand-gold); fill: none; stroke-width: 2.5; }
.enterprise-list .item-title { font-weight: 600; display: block; }
.enterprise-list .item-desc { color: var(--text-muted); font-size: 0.88rem; }
.clocks-container { gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.clock-card { border-radius: 0; border: none; background: var(--bg-darker); }
.clock-card:hover { transform: none; box-shadow: none; background: var(--surface-solid); }
.region-pill { background: var(--surface); }
.result-num { font-size: 2.4rem; font-weight: 800; color: var(--brand-gold); line-height: 1; margin-bottom: 0.6rem; font-variant-numeric: tabular-nums; }
.result-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-main); font-weight: 600; }
.result-note { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.5rem; }
.sb-line span { background: linear-gradient(to right, var(--gradient-start), var(--brand-gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
#scroll-progress { background: var(--brand-gold); }
.process-node { border-radius: var(--radius); }
.process-node-num { background: var(--bg-darker); color: var(--brand-gold); font-weight: 800; font-size: 0.85rem; }

/* ---------- 10. FOOTER ---------- */
footer { text-align: center; padding: 5rem var(--gutter) 2.5rem; border-top: 1px solid var(--footer-stroke); background: var(--bg-deep); position: relative; z-index: 2; }
.footer-logo { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 200; letter-spacing: 6px; margin-bottom: 0.8rem; transition: color 0.3s, letter-spacing 0.5s var(--ease); }
.footer-logo:hover { color: var(--brand-gold); letter-spacing: 10px; }
footer > p { color: var(--text-muted); font-size: 0.9rem; }
.footer-social { display: flex; justify-content: center; gap: 0.9rem; margin: 2.2rem 0; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--footer-stroke); display: flex; align-items: center; justify-content: center; transition: all 0.3s; text-decoration: none; }
.footer-social a:hover { border-color: var(--brand-gold); background: var(--gold-soft); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; stroke-width: 1.6; transition: stroke 0.3s, fill 0.3s; }
.footer-social a:hover svg { stroke: var(--brand-gold); }
.footer-social a.filled svg { fill: var(--text-muted); stroke: none; }
.footer-social a.filled:hover svg { fill: var(--brand-gold); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; margin: 0 auto 2.5rem; max-width: 900px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; transition: color 0.3s; }
.footer-links a:hover { color: var(--brand-gold); }
.footer-bottom { border-top: 1px solid var(--footer-stroke); padding-top: 1.8rem; color: var(--text-faint); font-size: 0.72rem; }
.footer-bottom p { line-height: 1.6; }

/* ---------- 11. PROCESS ANIMATIONS  (.gx-anim / .gxp — DOM based; text always wraps & aligns) ---------- */
.gx-anim { max-width: 960px; margin: 1.6rem auto 3.2rem; width: 100%; }
.gx-anim.compact { max-width: 760px; margin: 1rem auto 2.4rem; }
.gx-anim-frame { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 2rem); transition: border-color 0.5s, box-shadow 0.5s; overflow: hidden; }
.gx-anim.on .gx-anim-frame { border-color: var(--border-glow); box-shadow: 0 0 60px var(--gold-soft); }
.gx-anim-caption { text-align: center; color: var(--text-muted); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 0.9rem; font-weight: 600; }
.gxp { --d: 0.35s; font-family: var(--font); }
.gxp * { text-align: center; }
.gxp-title { font-size: 0.66rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brand-gold); font-weight: 700; margin-bottom: 1.2rem; }
/* step rail */
.gxp-steps { list-style: none; display: grid; grid-template-columns: repeat(var(--n, 5), minmax(0, 1fr)); gap: 0.6rem; position: relative; counter-reset: gxp; }
.gxp-steps::before { content: ""; position: absolute; left: 10%; right: 10%; top: 24px; height: 2px; background: repeating-linear-gradient(90deg, var(--border-glow) 0 6px, transparent 6px 12px); opacity: 0.6; }
.gxp-steps::after { content: ""; position: absolute; top: 19px; left: 10%; width: 12px; height: 12px; border-radius: 50%; background: var(--brand-gold); box-shadow: 0 0 0 6px var(--gold-soft); animation: gxp-travel calc(var(--n, 5) * 1.3s) linear infinite; animation-play-state: paused; }
.gx-anim.on .gxp-steps::after { animation-play-state: running; }
@keyframes gxp-travel { 0% { left: 10%; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { left: calc(90% - 12px); opacity: 0; } }
.gxp-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); transition-delay: calc(var(--i) * var(--d)); min-width: 0; }
.gx-anim.on .gxp-step { opacity: 1; transform: none; }
.gxp-num { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-darker); border: 1px solid var(--border-glow); color: var(--brand-gold); font-weight: 800; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; margin-bottom: 0.7rem; box-shadow: 0 0 0 6px var(--bg-dark); }
html[data-theme="light"] .gxp-num, body.light-mode .gxp-num { background: #fff; box-shadow: 0 0 0 6px var(--bg-dark), var(--shadow-sm); }
.gxp-num svg { width: 20px; height: 20px; stroke: var(--brand-gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.gxp-step b { display: block; font-size: 0.82rem; font-weight: 700; line-height: 1.3; overflow-wrap: anywhere; }
.gxp-step small { display: block; font-size: 0.7rem; color: var(--text-muted); line-height: 1.4; margin-top: 0.25rem; overflow-wrap: anywhere; }
.gxp-note { margin-top: 1.4rem; font-size: 0.8rem; color: var(--text-muted); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.gxp-note + .gxp-note { margin-top: 0.4rem; font-size: 0.74rem; }
.gxp-loop { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-gold); font-weight: 700; padding: 0.4rem 0.9rem; border: 1px solid var(--border-light); border-radius: 30px; }
.gxp-loop svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; animation: gxp-spin 3s linear infinite; }
@keyframes gxp-spin { to { transform: rotate(360deg); } }
/* two column: visual + bullets */
.gxp-cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.6rem 2.2rem; align-items: center; }
.gxp-cols .gxp-list, .gxp-cols .gxp-list * { text-align: left; }
.gxp-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.gxp-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.82rem; line-height: 1.5; opacity: 0; transform: translateX(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); transition-delay: calc(0.4s + var(--i) * 0.28s); }
.gx-anim.on .gxp-list li { opacity: 1; transform: none; }
.gxp-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-gold); flex-shrink: 0; margin-top: 0.45rem; }
.gxp-list b { font-weight: 700; } .gxp-list li > div { flex: 1; }
.gxp-list span { color: var(--text-muted); }
/* funnel */
.gxp-funnel { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.gxp-funnel div { --w: 100%; width: var(--w); background: var(--gold-soft); border: 1px solid var(--border-light); border-radius: 10px; padding: 0.55rem 0.8rem; opacity: 0; transform: scaleX(0.6); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); transition-delay: calc(var(--i) * 0.3s); }
.gx-anim.on .gxp-funnel div { opacity: 1; transform: none; }
.gxp-funnel b { display: block; font-size: 0.8rem; }
.gxp-funnel small { display: block; font-size: 0.66rem; color: var(--text-muted); }
.gxp-funnel div:last-child { background: var(--brand-gold); border-color: var(--brand-gold); }
.gxp-funnel div:last-child b, .gxp-funnel div:last-child small { color: var(--gold-ink-on); }
/* charts */
.gxp-charts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gxp-chart b { display: block; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.gxp-chart svg { width: 100%; height: auto; overflow: visible; }
.gxp-chart path { fill: none; stroke: var(--brand-gold); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; }
.gxp-chart .ax { stroke: var(--border-light); stroke-width: 1; }
.gxp-chart .fill { fill: var(--gold-soft); stroke: none; opacity: 0; transition: opacity 0.6s 1.2s; }
.gx-anim.on .gxp-chart path { animation: gxp-draw 2s var(--ease) forwards; animation-delay: calc(var(--i) * 0.5s); }
.gx-anim.on .gxp-chart .fill { opacity: 1; }
@keyframes gxp-draw { to { stroke-dashoffset: 0; } }
/* chip grid */
.gxp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 0.6rem; }
.gxp-grid div { border: 1px solid var(--border-light); background: var(--surface); border-radius: 12px; padding: 0.8rem 0.5rem; font-size: 0.76rem; font-weight: 700; opacity: 0; transform: scale(0.9); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s; transition-delay: calc(var(--i) * 0.08s); }
.gx-anim.on .gxp-grid div { opacity: 1; transform: none; animation: gxp-blink calc(var(--total, 12) * 0.7s) linear infinite; animation-delay: calc(0.6s + var(--i) * 0.7s); }
@keyframes gxp-blink { 0%, 100% { border-color: var(--border-light); } 4% { border-color: var(--brand-gold); box-shadow: 0 0 0 4px var(--gold-soft); } 10% { border-color: var(--border-light); } }
/* hub / network */
.gxp-net { position: relative; height: 240px; }
.gxp-net svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.gxp-net line { stroke: var(--border-glow); stroke-width: 1; stroke-dasharray: 4 5; opacity: 0.7; vector-effect: non-scaling-stroke; animation: gxp-dash 1.2s linear infinite; animation-play-state: paused; } .gx-anim.on .gxp-net line { animation-play-state: running; } @keyframes gxp-dash { to { stroke-dashoffset: -18; } }
.gxp-net circle { fill: var(--brand-gold); }
.gxp-node { position: absolute; transform: translate(-50%, -50%); background: var(--bg-darker); border: 1px solid var(--border-light); border-radius: 40px; padding: 0.5rem 0.9rem; font-size: 0.72rem; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity 0.5s var(--ease); transition-delay: calc(0.3s + var(--i) * 0.2s); z-index: 1; }
html[data-theme="light"] .gxp-node, body.light-mode .gxp-node { background: #fff; box-shadow: var(--shadow-sm); }
.gxp-node.hub { background: var(--brand-gold); color: var(--gold-ink-on); border-color: var(--brand-gold); padding: 0.9rem 1.3rem; font-size: 0.8rem; box-shadow: 0 0 0 10px var(--gold-soft); }
.gx-anim.on .gxp-node { opacity: 1; }
/* pins (local reach / global) */
.gxp-pins { position: relative; height: 220px; border-radius: 16px; background: radial-gradient(circle, var(--border-light) 1px, transparent 1px) 0 0/18px 18px; }
.gxp-pin { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 0.35rem; opacity: 0; transition: opacity 0.5s var(--ease); transition-delay: calc(0.2s + var(--i) * 0.25s); }
.gx-anim.on .gxp-pin { opacity: 1; }
.gxp-pin i { width: 12px; height: 12px; border-radius: 50%; background: var(--brand-gold); position: relative; display: block; }
.gxp-pin i::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--brand-gold); animation: gxp-pulse 2s ease-out infinite; animation-delay: calc(var(--i) * 0.3s); }
@keyframes gxp-pulse { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }
.gxp-pin span { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.5px; background: var(--bg-darker); padding: 2px 8px; border-radius: 20px; border: 1px solid var(--border-light); white-space: nowrap; }
html[data-theme="light"] .gxp-pin span, body.light-mode .gxp-pin span { background: #fff; }
.gxp-pin.hub i { width: 18px; height: 18px; }
/* scan / audit */
.gxp-scan { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: center; }
.gxp-doc { position: relative; border: 1px solid var(--border-light); border-radius: 12px; padding: 1.2rem; background: var(--surface); overflow: hidden; }
.gxp-doc span { display: block; height: 8px; border-radius: 4px; background: var(--border-subtle); margin-bottom: 0.7rem; }
.gxp-doc span:nth-child(2n) { width: 70%; } .gxp-doc span:nth-child(3n) { width: 85%; }
.gxp-doc::after { content: ""; position: absolute; left: 0; right: 0; height: 3px; background: var(--brand-gold); box-shadow: 0 0 14px var(--brand-gold); top: 0; animation: gxp-scanline 3.5s ease-in-out infinite; animation-play-state: paused; }
.gx-anim.on .gxp-doc::after { animation-play-state: running; }
@keyframes gxp-scanline { 0%, 100% { top: 4%; } 50% { top: 94%; } }
.gxp-bars { display: flex; flex-direction: column; gap: 0.7rem; }
.gxp-bars div { display: grid; grid-template-columns: 82px 1fr 34px; align-items: center; gap: 0.6rem; font-size: 0.74rem; }
.gxp-bars b { text-align: left; }
.gxp-bars i { display: block; height: 8px; border-radius: 4px; background: var(--border-subtle); overflow: hidden; }
.gxp-bars i::after { content: ""; display: block; height: 100%; width: 0; background: var(--brand-gold); border-radius: 4px; transition: width 1.4s var(--ease); transition-delay: calc(0.4s + var(--i) * 0.25s); }
.gx-anim.on .gxp-bars i::after { width: var(--v, 70%); }
.gxp-bars small { color: var(--text-muted); text-align: right; }
/* device / build mock (web, app) */
.gxp-mock { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: center; }
.gxp-screen { border: 1px solid var(--border-light); border-radius: 14px; background: var(--surface); padding: 0.9rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.gxp-screen.phone { max-width: 150px; margin: 0 auto; border-radius: 22px; grid-template-columns: 1fr 1fr; }
.gxp-screen span { display: block; height: 30px; border-radius: 6px; background: var(--border-subtle); opacity: 0; transform: translateY(6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); transition-delay: calc(0.3s + var(--i) * 0.2s); }
.gxp-screen span.wide { grid-column: 1 / -1; height: 40px; }
.gxp-screen span.gold { background: var(--brand-gold); height: 22px; }
.gx-anim.on .gxp-screen span { opacity: 1; transform: none; }
/* timeline (video) */
.gxp-timeline { display: flex; gap: 6px; padding: 0.7rem; border: 1px solid var(--border-light); border-radius: 12px; background: var(--surface); position: relative; overflow: hidden; }
.gxp-timeline div { flex: var(--f, 1); background: var(--gold-soft); border: 1px solid var(--border-glow); border-radius: 6px; padding: 0.55rem 0.3rem; font-size: 0.68rem; font-weight: 700; opacity: 0; transition: opacity 0.4s var(--ease); transition-delay: calc(0.3s + var(--i) * 0.25s); }
.gx-anim.on .gxp-timeline div { opacity: 1; }
.gxp-timeline::after { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: var(--brand-gold); left: 0; animation: gxp-playhead 6s linear infinite; animation-play-state: paused; }
.gx-anim.on .gxp-timeline::after { animation-play-state: running; }
@keyframes gxp-playhead { from { left: 0; } to { left: 100%; } }
/* checklist (why us) */
.gxp-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem 2rem; }
.gxp-checks div { display: flex; align-items: center; gap: 0.8rem; font-size: 0.86rem; font-weight: 600; text-align: left; opacity: 0; transform: translateX(-8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); transition-delay: calc(var(--i) * 0.25s); }
.gxp-checks div * { text-align: left; }
.gx-anim.on .gxp-checks div { opacity: 1; transform: none; }
.gxp-checks svg { width: 26px; height: 26px; flex-shrink: 0; }
.gxp-checks circle { fill: none; stroke: var(--brand-gold); stroke-width: 1.4; }
.gxp-checks polyline { fill: none; stroke: var(--brand-gold); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; stroke-dashoffset: 30; transition: stroke-dashoffset 0.6s var(--ease); transition-delay: calc(0.3s + var(--i) * 0.25s); }
.gx-anim.on .gxp-checks polyline { stroke-dashoffset: 0; }
/* q&a bubble */
.gxp-qa { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; }
.gxp-qa .q, .gxp-qa .a { border: 1px solid var(--border-light); border-radius: 18px; padding: 1rem 1.2rem; font-size: 0.86rem; background: var(--surface); }
.gxp-qa .a { border-color: var(--border-glow); background: var(--gold-soft); opacity: 0; transform: translateX(10px); transition: opacity 0.5s 0.9s var(--ease), transform 0.5s 0.9s var(--ease); }
.gx-anim.on .gxp-qa .a { opacity: 1; transform: none; }
.gxp-qa .a b { display: block; margin-bottom: 0.2rem; }
.gxp-qa .a small { color: var(--text-muted); font-size: 0.72rem; }
.gxp-qa .arrow { width: 40px; height: 2px; background: repeating-linear-gradient(90deg, var(--border-glow) 0 5px, transparent 5px 9px); position: relative; }
.gxp-qa .arrow::after { content: ""; position: absolute; top: -4px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--brand-gold); animation: gxp-arrow 1.4s linear infinite; animation-play-state: paused; }
.gx-anim.on .gxp-qa .arrow::after { animation-play-state: running; }
@keyframes gxp-arrow { from { left: 0; } to { left: 30px; } }
/* HUD (game ui) */
.gxp-hud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.gxp-hud div { border: 1px solid var(--border-glow); border-radius: 10px; padding: 0.7rem 0.4rem; font-size: 0.7rem; font-weight: 700; background: var(--surface); }
.gxp-hud i { display: block; height: 6px; border-radius: 3px; background: var(--border-subtle); margin-top: 0.4rem; overflow: hidden; }
.gxp-hud i::after { content: ""; display: block; height: 100%; width: 0; background: var(--brand-gold); transition: width 1.2s var(--ease); transition-delay: calc(0.3s + var(--i) * 0.2s); }
.gx-anim.on .gxp-hud i::after { width: var(--v, 60%); }
@media (max-width: 760px) {
  .gxp-steps { grid-template-columns: 1fr; gap: 0.9rem; justify-items: start; }
  .gxp-steps::before { left: 24px; right: auto; top: 10%; bottom: 10%; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--border-glow) 0 6px, transparent 6px 12px); }
  .gxp-steps::after { display: none; }
  .gxp-step { flex-direction: row; align-items: center; gap: 0.9rem; text-align: left; width: 100%; }
  .gxp-step *, .gxp * .gxp-step { text-align: left; }
  .gxp-step > div, .gxp-step b, .gxp-step small { text-align: left; }
  .gxp-num { margin-bottom: 0; flex-shrink: 0; }
  .gxp-cols, .gxp-scan, .gxp-mock { grid-template-columns: 1fr; }
  .gxp-charts { grid-template-columns: 1fr; }
  .gxp-checks { grid-template-columns: 1fr; }
  .gxp-qa { grid-template-columns: 1fr; }
  .gxp-qa .arrow { width: 2px; height: 30px; margin: 0 auto; background: repeating-linear-gradient(180deg, var(--border-glow) 0 5px, transparent 5px 9px); }
  .gxp-qa .arrow::after { display: none; }
  .gxp-net { height: 300px; }
  .gxp-node { font-size: 0.64rem; padding: 0.4rem 0.7rem; }
  .gxp-pins { height: 260px; }
}

/* ---------- 12. LOCATION / REGION PAGES ---------- */
.loc-page section { max-width: none; }
.loc-page .hero, .loc-page section.hero { min-height: 72svh; padding-bottom: 3rem; }
.glow { position: absolute; width: 70vw; height: 70vw; top: -35vw; left: 15vw; background: radial-gradient(circle, var(--brand-gold) 0%, transparent 70%); opacity: 0.1; filter: blur(120px); pointer-events: none; }
.why-card .num { font-size: 0.68rem; color: var(--brand-gold); font-weight: 800; letter-spacing: 2px; margin-bottom: 0.8rem; }
.why-card { padding: 2rem 1.7rem; }
.services-strip { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.service-pill { border: 1px solid var(--border-light); border-radius: 30px; padding: 0.7rem 1.4rem; font-size: 0.8rem; text-decoration: none; color: var(--text-main); transition: all 0.3s; display: inline-block; background: var(--surface); }
.service-pill:hover { border-color: var(--brand-gold); color: var(--brand-gold); transform: translateY(-2px); }
.district-list { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.6rem; }
.district-tag { font-size: 0.74rem; color: var(--text-muted); border: 1px solid var(--border-light); border-radius: 8px; padding: 0.45rem 0.9rem; letter-spacing: 0.5px; background: var(--surface); }
/* city pages keep the lighter underline treatment — but question and answer share
   the same left edge, which is the alignment bug this replaces (v3.33). */
.loc-page .faq-item, .faq-item.static { border: none; border-bottom: 1px solid var(--border-light); border-radius: 0; background: transparent; padding: 1.4rem 0; max-width: 860px; margin: 0 auto; }
.loc-page .faq-item > h3, .faq-item.static > h3 { padding: 0; margin: 0 0 0.5rem; font-size: 1rem; font-weight: 600; line-height: 1.45; }
.loc-page .faq-item > h3 + p, .faq-item.static > h3 + p { padding: 0; margin: 0; color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.cta-final { text-align: center; background: linear-gradient(135deg, var(--gold-soft), transparent 70%), var(--card-bg); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: 3.6rem 2rem; }
.cta-final h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); font-weight: 200; margin-bottom: 1rem; }
.cta-final p { color: var(--text-muted); margin-bottom: 2rem; }
.city-card { padding: 1.3rem 1.4rem; text-decoration: none; display: block; border-radius: 14px; }
.city-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.city-card span { font-size: 0.74rem; color: var(--text-muted); }
.country-block { margin-bottom: 3rem; }
.country-block > h2 { font-size: 1.2rem; font-weight: 600; color: var(--brand-gold); margin-bottom: 1.2rem; letter-spacing: 1px; }

/* ---------- 13. UTILITIES & RESPONSIVE ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.whatsapp-float { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
@media (max-width: 1024px) { .estimator-wrapper { grid-template-columns: 1fr !important; padding: 2.5rem; gap: 2.5rem; } .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; } .enterprise-wrapper { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 768px) {
  .demo-banner { flex-direction: column; align-items: flex-start; padding: 1.6rem; }
  .estimator-wrapper { padding: 1.6rem; gap: 2rem; border-radius: 20px; }
  .price-output-panel { padding: 2rem 1.5rem; }
  .price-display { font-size: 3rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-timeline-v2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-line { top: 0; bottom: 0; left: 22px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, transparent, var(--brand-gold), transparent); }
  .process-node { text-align: left; padding: 1.5rem 1rem 1.5rem 3rem; }
  .process-node-num { top: 1.5rem; left: 0; transform: translateX(-50%); width: 40px; height: 40px; }
  .process-node-icon { margin: 0 0 0.8rem 0; width: 40px; height: 40px; }
  .portfolio-item { height: 240px; }
  .portfolio-bg-text { font-size: 3rem; }
  .contact-form-wrapper { padding: 1.5rem; }
  .testimonial-card, .blog-card, .service-card, .industry-card, .lab-card { padding: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .clocks-container { grid-template-columns: 1fr 1fr; }
  .clock-card { padding: 1.8rem 1rem; }
  .clock-card .time { font-size: 2rem; }
  .world-map { aspect-ratio: 1.4/1; background-size: 16px 16px; }
  .map-pin .pin-label { font-size: 0.5rem; padding: 2px 5px; bottom: 12px; }
  .chatbot-widget { width: calc(100vw - 20px); right: 10px; bottom: 10px; }
  .chatbot-widget.open { height: 65vh; }
  .back-to-top { left: 10px; bottom: 10px; width: 40px; height: 40px; }
  .modal-content { padding: 4rem 1.5rem 2rem; max-width: 100%; }
  .marquee-content span { font-size: 1.05rem; }
  .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 84px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .cta-final { padding: 2.4rem 1.2rem; }
}
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .clocks-container { grid-template-columns: 1fr; } .section-header h2 { letter-spacing: -0.5px; } }
@media print { .navbar, .faith-banner, .chatbot-widget, .chat-nudge, .whatsapp-float, .back-to-top, #bg-canvas, .cursor-dot, .cursor-outline { display: none !important; } body { background: #fff; color: #000; } }
/* link resets inside card surfaces */
a.blog-card, a.service-card, .service-card a, a.tool-card, .tool-card a, a.city-card, .lab-card a, .blog-card a:not(.read-more-btn), .why-card a, a.industry-card, .industry-card a, .result-card a, .related-card a, a.related-card, .value-card a, .prob-card a, .more-card a { text-decoration: none; color: inherit; }
.service-card h3 a, .blog-card h3 a { color: var(--text-main); }
.hero-section { flex-direction: column; text-align: center; padding-top: calc(var(--nav-top) + 6rem) !important; }
.hero-section > * { width: 100%; }
.hero-section .hero-content { margin: 0 auto; }

/* WhatsApp float — bottom-left, above back-to-top, never under the chat widget */
.whatsapp-float { position: fixed !important; left: 30px !important; right: auto !important; bottom: 92px !important; z-index: 9997 !important; }
@media (max-width: 768px) { .whatsapp-float { left: 12px !important; bottom: 62px !important; } }
body.embed-mode .whatsapp-float { display: none !important; }
/* particles must sit behind everything, incl. translucent legacy cards */
#bg-canvas { z-index: -1 !important; }
.faq-item, .pkg, .pricing-card, .tool-card, .why-card, .lab-card, .service-card { background-color: var(--surface); }

/* ---------- PORTFOLIO v3 (shared by home + /portfolio) — neutral, clickable, opens live site ---------- */
.filter-container { display: flex !important; justify-content: center !important; flex-wrap: wrap; gap: 0.6rem; max-width: var(--container); margin: 0 auto 2.5rem !important; padding: 0 !important; }
.portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important; gap: 1.5rem; max-width: var(--container); margin: 0 auto; padding: 0 0 4rem !important; }
.portfolio-item, a.portfolio-item { display: block; height: 320px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); background: var(--surface); text-decoration: none; color: inherit; cursor: pointer; padding: 0; width: 100%; position: relative; overflow: hidden; transition: transform 0.45s var(--ease), border-color 0.3s, box-shadow 0.45s; }
.portfolio-item:hover { border-color: var(--brand-gold); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-item.hidden { display: none; }
.portfolio-bg { background: var(--surface) !important; }
.portfolio-bg::before { content: ""; position: absolute; inset: 0; opacity: 1; background-image: radial-gradient(circle, var(--border-light) 1px, transparent 1px); background-size: 18px 18px; }
.portfolio-bg-text { font-size: 4.6rem; font-weight: 800; letter-spacing: -2px; color: var(--text-main) !important; opacity: 0.12; position: relative; z-index: 1; transition: opacity 0.4s, color 0.4s; }
.portfolio-item:hover .portfolio-bg-text { opacity: 0.35; color: var(--brand-gold) !important; }
.browser-chrome { background: var(--surface-2); border-bottom: 1px solid var(--border-subtle); }
.browser-dot { background: var(--text-faint); opacity: 0.6; }
.browser-url { color: var(--text-muted); background: var(--surface); font-family: 'Montserrat', sans-serif; letter-spacing: 0.3px; border: 1px solid var(--border-subtle); }
.device-badge { background: var(--surface-2); border: 1px solid var(--border-subtle); } .device-badge svg { stroke: var(--text-muted); }
.portfolio-cat-tag { position: absolute; top: 3.4rem; left: 1.2rem; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; padding: 4px 10px; border-radius: 20px; background: var(--gold-soft); border: 1px solid var(--border-light); color: var(--brand-gold); z-index: 2; }
.portfolio-overlay { opacity: 1; transform: none; position: absolute; left: 0; right: 0; bottom: 0; padding: 4rem 1.5rem 1.4rem; background: linear-gradient(to top, var(--surface) 35%, transparent); }
html[data-theme="light"] .portfolio-overlay, body.light-mode .portfolio-overlay { background: linear-gradient(to top, #ffffff 35%, transparent); }
.portfolio-overlay h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.2rem; }
.portfolio-overlay p { color: var(--text-muted); font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; }
.portfolio-overlay::after { content: "Visit live site ↗"; display: block; margin-top: 0.7rem; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; color: var(--brand-gold); opacity: 0.85; }
.portfolio-item:hover .portfolio-overlay::after { opacity: 1; }
.portfolio-hero { padding-top: calc(var(--nav-top) + 5.5rem) !important; margin-top: 0 !important; }
@media (max-width: 768px) { .portfolio-item, a.portfolio-item { height: 260px; } }
/* live homepage preview inside the browser frame */
.portfolio-bg .browser-chrome { z-index: 3; }
.portfolio-shot { position: absolute; left: 0; right: 0; top: 36px; bottom: 0; width: 100%; height: calc(100% - 36px); object-fit: cover; object-position: top center; opacity: 0; transition: opacity 0.6s ease, transform 6s ease; z-index: 2; }
.portfolio-item.has-shot .portfolio-shot { opacity: 1; }
.portfolio-item.has-shot .portfolio-bg-text { opacity: 0 !important; }
.portfolio-item.has-shot:hover .portfolio-shot { object-position: bottom center; }
.portfolio-item.has-shot .portfolio-overlay { background: linear-gradient(to top, rgba(22,22,24,0.96) 40%, transparent); }
.portfolio-item.has-shot .portfolio-overlay h3 { color: #fff; } .portfolio-item.has-shot .portfolio-overlay p { color: rgba(255,255,255,0.7); }
html[data-theme="light"] .portfolio-item.has-shot .portfolio-overlay, body.light-mode .portfolio-item.has-shot .portfolio-overlay { background: linear-gradient(to top, rgba(22,22,24,0.94) 40%, transparent); }
.portfolio-item.has-shot .device-badges, .portfolio-item.has-shot .portfolio-cat-tag { z-index: 4; }
/* preview at 50% so cards read as a set; full on hover */
.portfolio-item.has-shot .portfolio-shot { opacity: 0.5; }
.portfolio-item.has-shot:hover .portfolio-shot { opacity: 1; }
.portfolio-item.has-shot .portfolio-overlay { background: linear-gradient(to top, rgba(22,22,24,0.98) 30%, rgba(22,22,24,0.4) 70%, transparent); }
.ai-websites, .ai-websites-home { max-width: var(--container); margin: 4rem auto 0; }
.ai-websites { padding: 0 0 3rem; }
.ai-grid { padding-bottom: 0 !important; }
.ai-websites { padding-left: var(--gutter); padding-right: var(--gutter); max-width: none; }
.ai-websites .section-header { max-width: 820px; }
.ai-websites .portfolio-grid { padding-left: 0 !important; padding-right: 0 !important; }
#portfolio-grid.portfolio-grid { padding-left: 0 !important; padding-right: 0 !important; width: calc(100% - 2 * var(--gutter)); }
.filter-container { width: calc(100% - 2 * var(--gutter)); }

/* ---------- CHAT ASSISTANT — classic popup shell (pill header expands upward), v2 inner UX ---------- */
.chat-nudge { position: fixed; bottom: 100px; right: 30px; max-width: 250px; background: var(--surface-solid); border: 1px solid var(--border-glow); border-radius: 16px 16px 4px 16px; padding: 0.8rem 1rem; font-size: 0.82rem; line-height: 1.45; color: var(--text-main); box-shadow: var(--shadow-md); z-index: 99997; opacity: 0; transform: translateY(8px) scale(0.96); pointer-events: none; transition: opacity 0.4s, transform 0.4s var(--ease); }
.chat-nudge.show { opacity: 1; transform: none; pointer-events: auto; cursor: pointer; }
.chat-nudge.dismissed { display: none; }
.chatbot-widget { position: fixed; bottom: 30px; right: 30px; width: 360px; max-width: calc(100vw - 20px); height: 60px; background: var(--chatbot-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--border-light); border-radius: 24px; overflow: hidden; z-index: 99998; display: flex; flex-direction: column; transition: height 0.5s var(--ease), box-shadow 0.3s, border-color 0.3s; box-shadow: var(--shadow-md); padding: 0 !important; opacity: 1; transform: none; pointer-events: auto; }
.chatbot-widget > * { max-width: none; margin-left: 0; margin-right: 0; }
.chatbot-widget:hover { border-color: var(--border-glow); }
.chatbot-widget.open { height: 560px; max-height: calc(100vh - 60px); box-shadow: var(--shadow-lg); border-color: var(--border-glow); }
.chatbot-header { height: 60px; flex-shrink: 0; padding: 0 1rem 0 1.25rem; display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; color: var(--text-main); font-weight: 700; font-size: 0.74rem; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-bottom: 1px solid transparent; background: transparent; }
.chatbot-widget.open .chatbot-header { border-bottom-color: var(--border-light); }
.chatbot-title { display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.chat-online { width: 8px; height: 8px; border-radius: 50%; background: #2fbf71; box-shadow: 0 0 0 3px rgba(47,191,113,0.2); display: inline-block; flex-shrink: 0; }
.chatbot-header-actions { display: flex; align-items: center; gap: 0.6rem; }
#chat-lang-select { background: var(--surface-2); color: var(--text-main); border: 1px solid var(--border-light); border-radius: 8px; font-size: 0.68rem; padding: 3px 6px; max-width: 110px; }
#chat-toggle-icon { font-size: 1.25rem; line-height: 1; width: 22px; text-align: center; }
.chatbot-body { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 0; opacity: 0; transition: opacity 0.3s 0.15s; }
.chatbot-widget.open .chatbot-body { opacity: 1; }
.chat-messages { flex: 1; min-height: 0; overflow-y: auto; padding: 1rem 1rem 0.5rem; display: flex; flex-direction: column; gap: 0.7rem; margin: 0; }
.chat-messages::-webkit-scrollbar { width: 3px; } .chat-messages::-webkit-scrollbar-thumb { background: var(--border-light); }
.msg { padding: 0.75rem 0.95rem; border-radius: 16px; font-size: 0.88rem; line-height: 1.5; max-width: 86%; font-weight: 400; }
.bot-msg { background: var(--msg-bot); align-self: flex-start; border-bottom-left-radius: 4px; color: var(--text-main); }
.user-msg { background: var(--brand-gold); color: var(--gold-ink-on); align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 500; }
.msg.bot-msg strong { color: var(--brand-gold); font-weight: 700; }
.msg a.chat-link { color: var(--brand-gold); text-decoration: underline; text-underline-offset: 2px; }
.msg.bot-msg.translating { display: flex; align-items: center; gap: 6px; opacity: 0.6; font-style: italic; font-size: 0.8rem; }
.chat-home { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; align-self: stretch; max-width: 100%; }
.chat-home button { text-align: left; background: var(--surface); border: 1px solid var(--border-light); border-radius: 14px; padding: 0.75rem 0.8rem; color: var(--text-main); font-size: 0.78rem; font-weight: 600; display: flex; flex-direction: column; gap: 0.2rem; transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s; }
.chat-home button small { font-size: 0.66rem; color: var(--text-muted); font-weight: 400; }
.chat-home button svg { width: 18px; height: 18px; stroke: var(--brand-gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 0.15rem; }
.chat-home button:hover { border-color: var(--brand-gold); background: var(--gold-soft); transform: translateY(-2px); }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0.4rem 1rem 0.2rem; margin: 0; }
.chat-quick-replies:empty { display: none; }
.quick-reply-btn { background: transparent; border: 1px solid var(--border-glow); color: var(--brand-gold); border-radius: 30px; padding: 0.4rem 0.8rem; font-size: 0.76rem; font-weight: 600; text-transform: none; letter-spacing: 0; transition: all 0.25s; white-space: nowrap; }
.quick-reply-btn:hover { background: var(--brand-gold); color: var(--gold-ink-on); }
.chat-tools { display: flex; gap: 0.2rem; padding: 0.3rem 0.7rem 0; overflow-x: auto; scrollbar-width: none; }
.chat-tools::-webkit-scrollbar { display: none; }
.chat-tools button { flex-shrink: 0; background: transparent; border: none; color: var(--text-muted); font-size: 0.66rem; font-weight: 600; padding: 0.35rem 0.5rem; border-radius: 8px; display: inline-flex; align-items: center; gap: 0.35rem; text-transform: none; letter-spacing: 0; }
.chat-tools button svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.chat-tools button:hover, .chat-tools button.on { color: var(--brand-gold); background: var(--gold-soft); }
.chat-input-area { display: flex; align-items: center; gap: 0.4rem; margin: 0.35rem 0.7rem 0.7rem; padding: 0.25rem 0.25rem 0.25rem 0.85rem; border: 1px solid var(--border-light); border-radius: 30px; background: var(--surface-2); transition: border-color 0.3s, box-shadow 0.3s; }
.chat-input-area:focus-within { border-color: var(--brand-gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.chat-input-area input { flex: 1; min-width: 0; background: transparent; border: none; padding: 0.5rem 0; color: var(--text-main); font-size: 0.9rem; outline: none; box-shadow: none; }
.chat-input-area input:focus { box-shadow: none; border: none; background: transparent; }
.chat-input-area button { background: transparent; border: none; color: var(--text-muted); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0; text-transform: none; letter-spacing: 0; transition: background 0.3s, color 0.3s; }
.chat-input-area button:hover { color: var(--brand-gold); background: var(--gold-soft); }
.chat-input-area .chat-send { background: var(--brand-gold); color: var(--gold-ink-on); }
.chat-input-area .chat-send:hover { background: var(--brand-gold-hover); color: var(--gold-ink-on); }
.chat-input-area .chat-send svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.msg.typing { display: flex; align-items: center; gap: 4px; padding: 0.85rem 1rem; }
.msg.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); opacity: 0.5; animation: typing-bounce 1s infinite; }
.msg.typing span:nth-child(2) { animation-delay: 0.15s; } .msg.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce { 0%, 100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-4px); opacity: 1; } }
/* mobile: still a popup, but above the nav and never clipped */
@media (max-width: 768px) {
  .chatbot-widget { width: calc(100vw - 20px); right: 10px; bottom: 10px; }
  .chatbot-widget.open { height: min(72vh, calc(100dvh - 20px)); }
  .chat-nudge { right: 10px; bottom: 80px; max-width: 220px; }
  body.chat-open .whatsapp-float, body.chat-open .back-to-top { display: none !important; }
  .chatbot-header { padding: 0 0.8rem 0 1rem; font-size: 0.7rem; letter-spacing: 1px; }
}

/* ---------- LOCATION ENQUIRY FORM ---------- */
.loc-enquiry-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.5rem; align-items: start; background: var(--card-bg); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 3rem); max-width: var(--container); margin: 0 auto; }
html[data-theme="light"] .loc-enquiry-wrap, body.light-mode .loc-enquiry-wrap { box-shadow: var(--shadow-sm); }
.loc-enquiry-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 200; margin: 0.4rem 0 1rem; }
.loc-enquiry-copy p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.loc-enquiry-points { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.loc-enquiry-points li { position: relative; padding-left: 1.6rem; color: var(--text-muted); font-size: 0.88rem; }
.loc-enquiry-points li::before { content: "\2713"; position: absolute; left: 0; color: var(--brand-gold); font-weight: 700; }
.loc-enquiry-points a { color: var(--brand-gold); text-decoration: none; border-bottom: 1px solid var(--border-light); }
.loc-enquiry-form { display: flex; flex-direction: column; gap: 0.8rem; }
.loc-enquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.loc-enquiry-form input, .loc-enquiry-form select, .loc-enquiry-form textarea { width: 100%; background: var(--surface-2); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 0.9rem 1rem; color: var(--text-main); font-weight: 400; font-size: 0.92rem; }
.loc-enquiry-form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2.4rem; }
.loc-enquiry-form select:invalid { color: var(--text-faint); }
.loc-enquiry-form option { color: var(--text-main); background: var(--surface-solid); }
.loc-enquiry-form textarea { resize: vertical; min-height: 110px; }
.loc-enquiry-form .btn-primary { width: 100%; margin-top: 0.2rem; }
.loc-enquiry-note { text-align: center; font-size: 0.72rem; color: var(--text-faint); margin: 0; }
.loc-enquiry-note a { color: inherit; }
@media (max-width: 860px) { .loc-enquiry-wrap { grid-template-columns: 1fr; gap: 1.6rem; } .loc-enquiry-row { grid-template-columns: 1fr; } }
.loc-enquiry-form input::placeholder, .loc-enquiry-form textarea::placeholder { text-transform: none; letter-spacing: 0; color: var(--text-faint); font-size: 0.9rem; }
.loc-enquiry-form input, .loc-enquiry-form select, .loc-enquiry-form textarea { text-transform: none; letter-spacing: 0; }
/* floating controls layout: chat (right, bottom) · back-to-top (right, above chat) · WhatsApp (left) */
.back-to-top { left: auto !important; right: 30px !important; bottom: 104px !important; width: 44px !important; height: 44px !important; }
@media (max-width: 768px) {
  .back-to-top { right: 12px !important; bottom: 84px !important; width: 40px !important; height: 40px !important; }
  .whatsapp-float { left: 12px !important; bottom: 84px !important; }
  body.chat-open .whatsapp-float, body.chat-open .back-to-top { display: none !important; }
}
/* pricing (solutions) tidy */
.pkg .pkg-tag { margin-bottom: 0.9rem; }
/* estimator v2 controls */
.est-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.est-type { text-align: left; background: var(--surface-2); border: 1px solid var(--border-light); border-radius: 14px; padding: 0.85rem 0.95rem; color: var(--text-main); display: flex; flex-direction: column; gap: 0.15rem; transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease); font: inherit; }
.est-type b { font-size: 0.86rem; font-weight: 700; }
.est-type small { font-size: 0.7rem; color: var(--text-muted); }
.est-type:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.est-type.active { border-color: var(--brand-gold); background: var(--gold-soft); box-shadow: 0 0 0 1px var(--brand-gold); }
.est-seg { display: flex; border: 1px solid var(--border-light); border-radius: 30px; overflow: hidden; background: var(--surface-2); }
.est-seg button { flex: 1; background: transparent; border: none; color: var(--text-muted); font-size: 0.74rem; font-weight: 600; padding: 0.65rem 0.4rem; transition: background 0.3s, color 0.3s; }
.est-seg button.active { background: var(--brand-gold); color: var(--gold-ink-on); }
.est-chip { font-size: 0.68rem; letter-spacing: 0.5px; padding: 0.35rem 0.75rem; border: 1px solid var(--border-light); border-radius: 30px; color: var(--text-muted); background: var(--surface-2); }
.est-chip b { color: var(--text-main); font-weight: 700; }
#est-meta { justify-content: center; }
@media (max-width: 480px) { .est-type-grid { grid-template-columns: 1fr; } .est-seg { flex-direction: column; border-radius: 14px; } }

/* ---------- PLANS ENGINE (activation, membership banner, modal) — shared by solutions, services, portal ---------- */
.pkg.is-active, .pricing-card.is-active { border-color: var(--brand-gold); background: linear-gradient(135deg, rgba(233,196,111,0.12), transparent); box-shadow: 0 0 0 1px var(--brand-gold), 0 20px 50px rgba(233,196,111,0.08); position: relative; }
.active-ribbon { position: absolute; top: 0; left: 0; right: 0; text-align: center; border-radius: 0 0 12px 12px; background: var(--brand-gold); color: var(--gold-ink-on); font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.plan-actions-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.9rem; }
.mini-btn { background: transparent; border: 1px solid var(--border-light); color: var(--brand-gold); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.5rem 0.9rem; border-radius: 18px; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.mini-btn:hover { border-color: var(--brand-gold); background: rgba(233,196,111,0.1); }
.activate-btn { display: block; width: 100%; text-align: center; white-space: normal; background: transparent; border: 1px dashed var(--border-light); color: var(--text-muted); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.6px; line-height: 1.45; padding: 0.55rem 0.9rem; border-radius: 18px; text-decoration: none; font-family: inherit; cursor: pointer; cursor: pointer; font-family: inherit; margin-top: 0.7rem; transition: all 0.2s; }
.activate-btn:hover { border-style: solid; border-color: var(--brand-gold); color: var(--brand-gold); }
/* Active plan banner */
.plan-banner { max-width: 900px; margin: 0 auto 2rem; background: linear-gradient(135deg, rgba(233,196,111,0.12), rgba(233,196,111,0.02)); border: 1px solid var(--brand-gold); border-radius: 20px; padding: 1.6rem 1.8rem; display: none; }
.plan-banner.show { display: block; animation: pbIn 0.5s ease; }
@keyframes pbIn { from { opacity:0; transform: translateY(-8px);} to { opacity:1; transform:none;} }
.pb-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.pb-eyebrow { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 2px; color: var(--brand-gold); font-weight: 700; }
.pb-name { font-size: 1.25rem; font-weight: 800; margin: 0.3rem 0; }
.pb-meta { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }
.pb-countdown { text-align: right; min-width: 130px; }
.pb-days { font-size: 2rem; font-weight: 800; color: var(--brand-gold); line-height: 1; }
.pb-days.warn { color: #f0a04b; }
.pb-days.expired { color: #e07a5f; }
.pb-days-label { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.pb-bar { height: 7px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; margin: 1.1rem 0 0.6rem; }
.pb-fill { height: 100%; background: linear-gradient(to right, var(--brand-gold), #f0d9a0); border-radius: 4px; transition: width 0.6s ease; }
.pb-dates { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-muted); }
.pb-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.pb-renew-note { margin-top: 0.9rem; font-size: 0.78rem; padding: 0.7rem 1rem; border-radius: 10px; display: none; }
.pb-renew-note.show { display: block; }
.pb-renew-note.soon { background: rgba(240,160,75,0.12); border: 1px solid rgba(240,160,75,0.4); color: #f0a04b; }
.pb-renew-note.over { background: rgba(224,122,95,0.12); border: 1px solid rgba(224,122,95,0.4); color: #e07a5f; }
/* Activation modal */
.grx-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.grx-modal.show { display: flex; }
.grx-modal-box { background: var(--bg-darker); border: 1px solid var(--border-glow); border-radius: 22px; padding: 2rem; max-width: 440px; width: 100%; max-height: 90vh; overflow-y: auto; }
.grx-modal-box h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.grx-modal-box p.sub { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; margin-bottom: 1.3rem; }
.grx-modal-box label { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin: 0.9rem 0 0.4rem; }
.grx-modal-box input, .grx-modal-box select { width: 100%; background: var(--bg-dark); border: 1px solid var(--border-light); color: var(--text-main); padding: 0.8rem 1rem; border-radius: 12px; font-size: 0.88rem; outline: none; font-family: inherit; }
.grx-modal-box input:focus, .grx-modal-box select:focus { border-color: var(--brand-gold); }
.modal-actions { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.modal-actions button { flex: 1; padding: 0.8rem; border-radius: 24px; font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; font-family: inherit; border: none; }
.modal-primary { background: var(--brand-gold); color: var(--gold-ink-on); }
.modal-ghost { background: transparent; border: 1px solid var(--border-light) !important; color: var(--text-muted); }
    </style>
.plan-banner-host { max-width: 900px; margin: 0 auto 2rem; display: flex; flex-direction: column; gap: 1rem; }
.plan-banner-host:empty { display: none; }
.pricing-card .plan-actions-row { margin-top: 0.6rem; }
.pricing-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.4rem; }
.pricing-btn-row .btn-primary, .pricing-btn-row .btn-outline { width: 100%; font-size: 0.68rem; padding: 0.75rem 0.6rem; letter-spacing: 0.8px; white-space: normal; }
.pricing-btn-row .btn-outline svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
@media (max-width: 480px) { .pricing-btn-row { grid-template-columns: 1fr; } }
.pricing-card .activate-btn { margin-top: 0.7rem; }
.pricing-card .active-ribbon, .pkg .active-ribbon { left: 0; right: 0; transform: none; padding: 0.4rem 0.8rem; letter-spacing: 1.4px; }
.pricing-card.is-active.featured::after { display: none; }
.pricing-card.is-active, .pkg.is-active { padding-top: 2.6rem; }

/* ---------- UNIVERSAL ENQUIRY FORM — service-specific extra questions (v3.32) ---------- */
.gx-enq-extras { display: flex; flex-direction: column; gap: 0.8rem; padding: 1rem; border: 1px dashed var(--border-light); border-radius: var(--radius-sm); background: var(--gold-soft); }
.gx-enq-field { display: flex; flex-direction: column; gap: 0.4rem; }
.gx-enq-field > label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--brand-gold); font-weight: 700; }
.gx-enq-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gx-enq-chip { background: var(--surface-2); border: 1px solid var(--border-light); color: var(--text-muted); border-radius: 30px; padding: 0.42rem 0.85rem; font: inherit; font-size: 0.76rem; cursor: pointer; transition: all 0.25s var(--ease); }
.gx-enq-chip:hover { border-color: var(--border-glow); color: var(--text-main); }
.gx-enq-chip.on { background: var(--brand-gold); border-color: var(--brand-gold); color: var(--gold-ink-on); font-weight: 700; }
.loc-enquiry-form { position: relative; }
.loc-enquiry-form .enquiry-close { position: absolute; top: -0.4rem; right: -0.4rem; }
/* pricing cards: two ways to ask — form and WhatsApp */
.pricing-btn-row { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.pricing-btn-row .btn-primary, .pricing-btn-row .btn-outline { width: 100%; text-align: center; justify-content: center; cursor: pointer; }
.pricing-btn-row .gx-wa-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; }
.pricing-btn-row .gx-wa-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- plan card: activation code always visible (v3.37) ---------- */
.pb-code { display:flex; align-items:center; flex-wrap:wrap; gap:0.55rem; margin-top:1rem; padding:0.7rem 0.9rem; background:var(--gold-soft); border:1px dashed var(--brand-gold); border-radius:12px; font-size:0.74rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; font-weight:700; }
.pb-code b { font-family:'Courier New',monospace; font-size:0.92rem; letter-spacing:1px; color:var(--text-main); text-transform:none; }
.pb-code span { text-transform:none; letter-spacing:0; font-weight:400; opacity:0.75; }
.pb-copy { background:var(--brand-gold); color:var(--gold-ink-on); border:none; border-radius:20px; padding:0.28rem 0.75rem; font:inherit; font-size:0.66rem; font-weight:800; letter-spacing:0.5px; cursor:pointer; }
