/* =============================================================
   Maxicom Singapore — refined brand stylesheet
   Forest green / Refined Gold / Sans-serif body + Serif headings
   Professional B2B UX — refined from playbook §2 spec
   ============================================================= */

:root {
  /* Refined colour palette */
  --c-forest:        #2A4A3E;
  --c-forest-dark:   #1A332B;
  --c-forest-light:  #3F6553;
  --c-forest-tint:   #E8EFEB;        /* very subtle green tint for backgrounds */

  --c-gold:          #C9A769;        /* warmer, honey vs old mustard */
  --c-gold-dark:     #9C7A3A;
  --c-gold-light:    #E0C58C;
  --c-gold-tint:     #F7F1E1;

  --c-rust:          #A85A3C;        /* danger / required-field markers */
  --c-rust-light:    #C97D5C;

  --c-paper:         #FAF7EE;        /* warmer cream page background */
  --c-soft:          #F0EBDC;        /* secondary background — slightly refined */
  --c-card:          #FFFFFF;        /* TRUE WHITE for content surfaces — modern */

  --c-line:          #E2DBC3;        /* refined hairline */
  --c-line-strong:   #C8BD9C;
  --c-line-soft:     #EFEAD8;

  --c-ink:           #0F1A14;        /* near-black with green undertone, headings */
  --c-ink-body:      #2D3530;        /* softer than pure black, easier on eyes */
  --c-ink-muted:     #5A6058;        /* labels, secondary text */
  --c-ink-faint:     #8A8E84;        /* captions, helper text */

  --c-link:          var(--c-forest);
  --c-link-hover:    var(--c-forest-light);

  --c-success:       #1A6F4F;
  --c-warning:       #C9A769;
  --c-danger:        var(--c-rust);

  /* Type — professional B2B mix: Inter body + Crimson Pro headings */
  --f-serif: "Crimson Pro", Georgia, "Times New Roman", serif;
  --f-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-mono:  ui-monospace, SFMono-Regular, "SF Mono", Consolas, monospace;

  --container: 1180px;

  /* Refined effects */
  --t: .22s cubic-bezier(.4, 0, .2, 1);
  --t-fast: .12s cubic-bezier(.4, 0, .2, 1);
  --shadow-xs: 0 1px 2px rgba(15, 26, 20, .04);
  --shadow-sm: 0 2px 6px rgba(15, 26, 20, .06), 0 1px 2px rgba(15, 26, 20, .04);
  --shadow:    0 4px 14px rgba(15, 26, 20, .08), 0 2px 4px rgba(15, 26, 20, .04);
  --shadow-lg: 0 16px 40px rgba(15, 26, 20, .12), 0 4px 10px rgba(15, 26, 20, .06);
  --shadow-focus: 0 0 0 3px rgba(201, 167, 105, .35);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-body);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--c-link);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--c-link-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

/* Skip-to-main accessibility */
.skip-link {
  position: absolute; left: -9999px;
  background: var(--c-forest); color: var(--c-paper);
  padding: 12px 18px; border-radius: 4px; font-family: var(--f-sans);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; outline: 2px solid var(--c-gold); }

/* Focus ring — refined */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Selection */
::selection { background: var(--c-gold-tint); color: var(--c-ink); }

/* Headings — serif for visual hierarchy + brand */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.012em;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); font-weight: 500; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.12rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

h1 em, h2 em, h3 em {
  color: var(--c-gold-dark);
  font-style: italic;
  font-weight: 500;
}

p {
  margin: 0 0 1.1em;
  color: var(--c-ink-body);
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.7;
}

/* Eyebrow — refined */
.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--c-forest);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--c-forest-tint);
  border-radius: 50px;
}

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

/* Section ornament — refined */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 6px auto 24px;
  color: var(--c-gold);
}
.ornament::before, .ornament::after {
  content: ""; flex: 0 0 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.ornament-diamond { width: 6px; height: 6px; transform: rotate(45deg); background: var(--c-gold); }

/* ============================================================
   ANNOUNCE BAR — refined
   ============================================================ */
.announce {
  background: var(--c-forest-dark);
  color: var(--c-paper);
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: .015em;
  padding: 9px 0;
}
.announce .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
}
.announce a {
  color: var(--c-paper);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.announce a:hover { color: var(--c-gold-light); text-decoration: none; }
.announce-badge {
  background: rgba(201, 167, 105, .22);
  border: 1px solid rgba(201, 167, 105, .55);
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .04em;
}

/* ============================================================
   HEADER + NAV — refined
   ============================================================ */
.site-header {
  background: rgba(250, 247, 238, .96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding-top: 16px; padding-bottom: 16px;
}
.logo {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none; line-height: 1;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -.005em;
}
.logo-mark em {
  color: var(--c-gold-dark);
  font-style: italic;
}
.logo-sub {
  font-family: var(--f-sans);
  font-size: 9.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Primary nav */
nav.primary { display: flex; }
nav.primary ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-ink-body);
  padding: 8px 14px;
  cursor: pointer; background: none; border: none;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--t-fast);
}
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -10px; height: 14px;
}
.nav-trigger:hover, .nav-trigger:focus-visible {
  color: var(--c-forest);
  background: var(--c-forest-tint);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px); left: 0;
  min-width: 300px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, visibility .2s, transform .2s;
  transform: translateY(-4px);
  transition-delay: .25s;
}
.nav-dropdown a {
  display: block;
  padding: 9px 22px;
  font-family: var(--f-sans);
  font-size: 13.5px;
  color: var(--c-ink-body);
  text-decoration: none;
  letter-spacing: .005em;
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
}
.nav-dropdown a:hover {
  color: var(--c-forest);
  background: var(--c-forest-tint);
  border-left-color: var(--c-gold);
  text-decoration: none;
  padding-left: 26px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-forest);
  color: var(--c-paper);
  padding: 11px 22px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: var(--shadow-xs);
}
.header-cta:hover {
  background: var(--c-forest-dark);
  color: var(--c-paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: 1px solid var(--c-line-strong);
  padding: 11px; border-radius: 4px; cursor: pointer;
  color: var(--c-forest);
  transition: all var(--t-fast);
  min-width: 44px; min-height: 44px; /* Apple HIG / WCAG 2.5.5 touch target */
}
.hamburger:hover { background: var(--c-forest-tint); border-color: var(--c-forest); }
.hamburger:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }
.hamburger svg { width: 22px; height: 22px; }

/* ============================================================
   BREADCRUMB — visible on every non-home page
   ============================================================ */
.breadcrumbs {
  background: var(--c-soft);
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0;
  font-family: var(--f-sans);
  font-size: 12.5px;
}
.breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: 0;
}
.breadcrumbs li {
  display: inline-flex; align-items: center;
  color: var(--c-ink-muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: var(--c-line-strong);
  font-size: 14px;
}
.breadcrumbs a {
  color: var(--c-ink-muted);
  font-weight: 500;
  transition: color var(--t-fast);
}
.breadcrumbs a:hover {
  color: var(--c-forest);
  text-decoration: none;
}
.breadcrumbs li:last-child {
  color: var(--c-forest);
  font-weight: 600;
}

/* ============================================================
   MARQUEE strip — refined
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--c-forest-dark), var(--c-forest), var(--c-forest-dark));
  color: var(--c-paper);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid var(--c-forest-dark);
  border-bottom: 1px solid var(--c-forest-dark);
}
.marquee-track {
  display: flex; gap: 36px; flex-wrap: nowrap;
  font-family: var(--f-sans);
  font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
  font-weight: 600;
}
.marquee-track > span {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--c-paper);
}
.marquee-track > span::after {
  content: "♦"; color: var(--c-gold-light); font-size: 7px; opacity: .9;
}
.marquee-track > span:last-child::after { content: ""; }

/* ============================================================
   HERO — refined
   ============================================================ */
.hero {
  padding: 88px 0 96px;
  background: var(--c-paper);
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  margin: 16px 0 24px;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--c-ink-body);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
  font-family: var(--f-sans);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* Hero trust signal under CTA */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: var(--c-ink-muted);
}
.hero-trust-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hero-trust-dot::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--c-success);
  border-radius: 50%;
  animation: hero-pulse 2.4s ease-out infinite;
}
@keyframes hero-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.6); opacity: 0; }
}
.hero-trust-text {
  font-weight: 500;
  letter-spacing: .005em;
}

/* Buttons — refined */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--f-sans);
  font-weight: 600; font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  min-height: 48px; /* WCAG 2.5.5 — comfortable touch target */
}
.btn-primary {
  background: var(--c-forest);
  color: var(--c-paper);
}
.btn-primary:hover {
  background: var(--c-forest-dark);
  color: var(--c-paper);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: transparent;
  color: var(--c-forest);
  border-color: var(--c-line-strong);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--c-forest);
  color: var(--c-paper);
  border-color: var(--c-forest);
  text-decoration: none;
}

.hero-visual {
  background: linear-gradient(135deg, var(--c-forest), var(--c-forest-dark));
  border-radius: 8px;
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 167, 105, .35), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(168, 90, 60, .22), transparent 50%);
}
.hero-visual-inner {
  position: relative;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%;
  color: var(--c-paper);
  font-family: var(--f-serif);
}
.hero-visual-inner .h-eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-weight: 600;
  opacity: .9;
}
.hero-visual-inner h2 {
  color: var(--c-paper);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  margin: 14px 0 0;
  line-height: 1.2;
}
.hero-visual-inner h2 em {
  color: var(--c-gold-light);
  font-style: italic;
}
.hero-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.hero-stat {
  border-top: 1px solid rgba(250, 247, 238, .25);
  padding-top: 14px;
}
.hero-stat strong {
  font-family: var(--f-serif);
  font-size: 1.7rem;
  display: block;
  line-height: 1;
  color: var(--c-gold-light);
  font-weight: 500;
}
.hero-stat small {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--c-paper);
  opacity: .82;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

/* ============================================================
   GENERIC SECTIONS — refined
   ============================================================ */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--c-soft); }
.section-forest {
  background: linear-gradient(135deg, var(--c-forest), var(--c-forest-dark));
  color: var(--c-paper);
}
.section-forest h2, .section-forest h3 { color: var(--c-paper); }
.section-forest h2 em, .section-forest h3 em { color: var(--c-gold-light); }
.section-forest p { color: rgba(250, 247, 238, .88); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head p {
  color: var(--c-ink-body);
  font-size: 1.05rem;
}

/* Card grids */
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Card — TRUE WHITE surfaces, refined */
.card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  padding: 28px 26px;
  border-radius: 6px;
  transition: all var(--t);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.card h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.card p {
  font-size: .94rem;
  color: var(--c-ink-body);
  margin-bottom: 14px;
  line-height: 1.6;
}
.card-link {
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-forest);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--t-fast);
}
.card:hover .card-link { gap: 8px; }

/* EEAT stamp — refined */
.eeat {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--c-card);
  border: 1px solid var(--c-line-strong);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}
.eeat::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(26, 111, 79, .15);
}

/* Details (FAQ accordion) — refined */
details.card {
  cursor: pointer;
  transition: all var(--t);
}
details.card[open] {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
}
details.card summary {
  list-style: none;
  position: relative;
  padding-right: 36px;
  font-family: var(--f-sans);
}
details.card summary::-webkit-details-marker { display: none; }
details.card summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--c-gold);
  transition: transform var(--t);
}
details.card[open] summary::after {
  content: "−";
}

/* ============================================================
   CTA STRIP — refined
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--c-forest), var(--c-forest-dark));
  color: var(--c-paper);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 167, 105, .15), transparent 60%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 {
  color: var(--c-paper);
  margin-bottom: 12px;
}
.cta-strip h2 em { color: var(--c-gold-light); }
.cta-strip p {
  color: rgba(250, 247, 238, .88);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}
.cta-strip .btn-primary {
  background: var(--c-gold);
  color: var(--c-forest-dark);
  border-color: var(--c-gold);
}
.cta-strip .btn-primary:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  color: var(--c-forest-dark);
}
.cta-strip .btn-ghost {
  color: var(--c-paper);
  border-color: rgba(250, 247, 238, .4);
}
.cta-strip .btn-ghost:hover {
  background: rgba(250, 247, 238, .12);
  border-color: var(--c-paper);
}

/* ============================================================
   CTA STRIP — multi-channel cluster + 3-step flow + trust signals
   ============================================================ */
.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta-eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 4px 14px;
  background: rgba(201, 167, 105, .15);
  border: 1px solid rgba(201, 167, 105, .35);
  border-radius: 50px;
}
.cta-lead {
  max-width: 640px !important;
  margin: 12px auto 28px !important;
  font-size: 1.02rem !important;
}

/* 3-channel cluster */
.cta-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 36px;
}
.cta-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  background: rgba(250, 247, 238, .07);
  border: 1.5px solid rgba(250, 247, 238, .18);
  border-radius: 8px;
  text-decoration: none;
  color: var(--c-paper);
  transition: all var(--t);
  font-family: var(--f-sans);
  position: relative;
  overflow: hidden;
}
.cta-channel:hover {
  background: rgba(250, 247, 238, .14);
  border-color: var(--c-gold);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--c-paper);
  box-shadow: var(--shadow);
}
.cta-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(201, 167, 105, .15);
  border-radius: 50%;
  margin-bottom: 4px;
}
.cta-channel-primary .cta-channel-icon {
  background: var(--c-gold);
  color: var(--c-forest-dark);
}
.cta-channel-wa .cta-channel-icon {
  background: #25D366;
  color: white;
}
.cta-channel-call .cta-channel-icon {
  background: rgba(250, 247, 238, .12);
  color: var(--c-gold-light);
}
.cta-channel-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-paper);
}
.cta-channel-meta {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(250, 247, 238, .72);
  font-weight: 500;
}
.cta-channel-primary {
  background: rgba(201, 167, 105, .12);
  border-color: rgba(201, 167, 105, .4);
}
.cta-channel-primary:hover {
  background: rgba(201, 167, 105, .22);
  border-color: var(--c-gold);
}

/* 3-step flow */
.cta-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto 32px;
  padding: 18px 20px;
  background: rgba(250, 247, 238, .06);
  border: 1px solid rgba(250, 247, 238, .12);
  border-radius: 8px;
}
.cta-flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 200px;
  text-align: left;
}
.cta-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--c-gold);
  color: var(--c-forest-dark);
  border-radius: 50%;
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.cta-flow-text {
  font-family: var(--f-sans);
  font-size: 13px;
  color: rgba(250, 247, 238, .92);
  line-height: 1.5;
}
.cta-flow-text strong {
  color: var(--c-paper);
  font-weight: 600;
}
.cta-flow-arrow {
  color: var(--c-gold);
  font-size: 22px;
  flex-shrink: 0;
}

/* Trust line */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: rgba(250, 247, 238, .72);
  font-weight: 500;
}
.cta-trust-sep { color: rgba(250, 247, 238, .35); }

/* ============================================================
   FLOATING CTA — desktop sticky bottom-right
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 95;
  display: flex; align-items: center;
  gap: 6px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: 50px;
  padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow-lg);
  font-family: var(--f-sans);
  animation: fab-in .35s cubic-bezier(.4, 0, .2, 1) forwards;
}
.floating-cta[hidden] { display: none; }
@keyframes fab-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.floating-cta-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--c-forest);
  color: var(--c-paper);
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  transition: all var(--t-fast);
}
.floating-cta-primary:hover {
  background: var(--c-forest-dark);
  color: var(--c-paper);
  text-decoration: none;
  transform: translateX(-2px);
}
.floating-cta-pulse {
  position: relative;
  width: 10px; height: 10px;
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.floating-cta-pulse::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--c-gold);
  border-radius: 50%;
  animation: fab-pulse 2s ease-out infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.4); opacity: 0; }
}
.floating-cta-text {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.floating-cta-text strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
.floating-cta-text small {
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-top: 2px;
  font-weight: 500;
}
.floating-cta-channels {
  display: flex; gap: 4px;
  margin-left: 4px;
}
.floating-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-soft);
  color: var(--c-forest);
  text-decoration: none;
  transition: all var(--t-fast);
}
.floating-cta-icon:hover {
  background: var(--c-gold);
  color: var(--c-forest-dark);
  text-decoration: none;
  transform: scale(1.05);
}
.floating-cta-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;  /* enlarged for touch */
  border-radius: 50%;
  background: transparent;
  color: var(--c-ink-muted);
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  margin-left: 4px;
  transition: all var(--t-fast);
}
.floating-cta-close:hover {
  background: var(--c-line-soft);
  color: var(--c-ink);
}

@media (max-width: 720px) {
  .floating-cta { display: none !important; }
}

/* ============================================================
   MID-PAGE CTA — auto-injected on long pages
   ============================================================ */
.midpage-cta {
  display: none;  /* shown by JS after positioning */
  margin: 24px auto;
  max-width: var(--container);
  padding: 0 24px;
}
.midpage-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--c-forest-tint), var(--c-gold-tint));
  border: 1px solid var(--c-line-strong);
  border-left: 4px solid var(--c-gold);
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}
.midpage-cta-text { font-family: var(--f-sans); }
.midpage-cta-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.midpage-cta-text h3 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  color: var(--c-ink);
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.3;
}
.midpage-cta-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--c-ink-body);
  line-height: 1.55;
}
.midpage-cta-text strong { color: var(--c-forest-dark); }
.midpage-cta-action {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .midpage-cta-inner {
    grid-template-columns: 1fr;
    padding: 22px 22px 24px;
  }
  .midpage-cta-action .btn { width: 100%; }
}

/* CTA strip mobile responsive */
@media (max-width: 720px) {
  .cta-channels {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cta-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
  }
  .cta-flow-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
  .cta-flow-step { flex: 1 1 auto; }
  .cta-trust {
    font-size: 11.5px;
    flex-direction: column;
    gap: 6px;
  }
  .cta-trust-sep { display: none; }
}

/* ============================================================
   FOOTER — refined
   ============================================================ */
footer.site-footer {
  background: var(--c-forest-dark);
  color: rgba(250, 247, 238, .82);
  padding: 72px 0 32px;
  font-family: var(--f-sans);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 44px;
}
.footer-grid h4 {
  color: var(--c-gold-light);
  font-family: var(--f-sans);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a {
  color: rgba(250, 247, 238, .82);
  font-family: var(--f-sans);
  font-size: 13.5px;
  transition: color var(--t-fast);
}
.footer-grid a:hover {
  color: var(--c-gold-light);
  text-decoration: none;
}

.footer-brand {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-paper);
  font-weight: 500;
  letter-spacing: -.005em;
}
.footer-brand em { color: var(--c-gold-light); font-style: italic; }

.footer-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(250, 247, 238, .58);
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 238, .12);
  font-weight: 600;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 247, 238, .12);
  font-family: var(--f-sans);
  font-size: 11.5px;
  color: rgba(250, 247, 238, .55);
  margin-top: 24px;
}

/* ============================================================
   MOBILE QUICKBAR — refined
   ============================================================ */
.mobile-quickbar { display: none; }

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .hero { padding: 60px 0 64px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Mobile nav drawer */
  nav.primary {
    position: fixed; top: 0; right: -100%;
    width: min(360px, 90vw); height: 100vh;
    background: var(--c-card);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 80px 28px 32px;
    overflow-y: auto;
    transition: right var(--t);
    z-index: 200;
  }
  body.nav-open nav.primary { right: 0; }
  body.nav-open::before {
    content: ""; position: fixed; inset: 0;
    background: rgba(15, 26, 20, .55);
    backdrop-filter: blur(2px);
    z-index: 150;
  }
  nav.primary ul { flex-direction: column; gap: 6px; width: 100%; }
  .nav-item { width: 100%; border-bottom: 1px solid var(--c-line); }
  .nav-trigger { width: 100%; padding: 14px 4px; justify-content: space-between; border-radius: 0; }
  .nav-trigger:hover { background: transparent; }
  .nav-trigger::after { display: none; }

  .nav-dropdown {
    position: static;
    display: none; opacity: 1; visibility: visible;
    pointer-events: auto; transform: none; transition: none;
    box-shadow: none; border: none; padding: 4px 0 12px;
    background: transparent; min-width: 0;
  }
  .nav-item.is-open .nav-dropdown { display: block; }
  .nav-dropdown a {
    padding-left: 14px;
    border-left: none;
    border-bottom: 1px solid var(--c-line-soft);
  }
  .nav-dropdown a:hover {
    padding-left: 18px;
    background: var(--c-forest-tint);
    border-left: 2px solid var(--c-gold);
  }

  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤720px)
   ============================================================ */
@media (max-width: 720px) {
  body { font-size: 15.5px; padding-bottom: 74px; }
  footer.site-footer { padding-bottom: 90px; }

  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .hero { padding: 40px 0 52px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Mobile quickbar */
  .mobile-quickbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--c-forest-dark);
    border-top: 1px solid var(--c-forest);
    z-index: 90;
    box-shadow: 0 -4px 16px rgba(15, 26, 20, .20);
  }
  .mobile-quickbar a {
    padding: 14px 8px; text-align: center;
    color: var(--c-paper); text-decoration: none;
    font-family: var(--f-sans); font-size: 11px;
    letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600;
    border-right: 1px solid rgba(250, 247, 238, .1);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    transition: background var(--t-fast);
  }
  .mobile-quickbar a:last-child { border-right: none; }
  .mobile-quickbar a:hover, .mobile-quickbar a:active {
    background: var(--c-forest);
    color: var(--c-gold-light);
    text-decoration: none;
  }
  .mobile-quickbar a svg { width: 18px; height: 18px; opacity: .9; }
  .mobile-quickbar a.qb-wa { background: #25D366; }
  .mobile-quickbar a.qb-wa:hover { background: #1FB855; color: white; }

  /* Marquee on mobile */
  .marquee-track { gap: 22px; font-size: 9.5px; }
  .marquee-track > span::after { font-size: 5px; }

  /* Forms */
  .grid-2, .grid-3, .grid-4 { gap: 14px; }
  .card { padding: 22px 20px; }

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

  /* Breadcrumbs on mobile - tighter */
  .breadcrumbs { padding: 10px 0; font-size: 11.5px; }
  .breadcrumbs li:not(:last-child)::after { margin: 0 6px; }
}

/* =========================================================================
   UX POLISH — WhatsApp FAB, footer newsletter, last-updated, print, A11y
   ========================================================================= */

/* Visually hidden (screen-reader only) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* WhatsApp FAB — mobile-only, always visible */
.whatsapp-fab {
  position: fixed;
  bottom: 78px; right: 14px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.14);
  z-index: 95;
  transition: transform .15s ease, background .15s ease;
}
.whatsapp-fab:hover, .whatsapp-fab:focus {
  background: #1FB855;
  color: white;
  text-decoration: none;
  transform: scale(1.06);
}
.whatsapp-fab:active { transform: scale(.96); }

@media (max-width: 1100px) {
  .whatsapp-fab { display: flex; }
}

/* Last-updated stamp */
.last-updated {
  padding: 18px 0 6px;
  border-top: 1px solid var(--c-line);
  background: var(--c-paper-warm, var(--c-paper));
}
.last-updated-text {
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: .03em;
  color: var(--c-ink-2);
  text-align: center;
  margin: 0;
}
.last-updated-icon { color: var(--c-gold); margin-right: 6px; }
.last-updated-text a { color: var(--c-forest); }

/* Footer newsletter strip */
.footer-newsletter {
  border-top: 1px solid rgba(250, 247, 238, .12);
  padding: 32px 0 28px;
  margin-top: 40px;
}
.footer-newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.footer-newsletter h4 {
  color: var(--c-paper);
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.footer-newsletter p {
  color: rgba(250, 247, 238, .65);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.6;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter-form input[type="email"] {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(250, 247, 238, .25);
  background: rgba(250, 247, 238, .06);
  color: var(--c-paper);
  border-radius: 6px;
  font-family: var(--f-sans);
  font-size: 14px;
}
.footer-newsletter-form input[type="email"]::placeholder { color: rgba(250, 247, 238, .4); }
.footer-newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  background: rgba(250, 247, 238, .12);
}
.footer-newsletter-form .btn { white-space: nowrap; }

@media (max-width: 720px) {
  .footer-newsletter-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form .btn { width: 100%; }
}

/* Footer-bottom rows */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 6px 0;
  font-size: 12.5px;
  color: rgba(250, 247, 238, .55);
}
.footer-bottom-links a {
  color: rgba(250, 247, 238, .75);
  margin: 0 2px;
}
.footer-bottom-links a:hover { color: var(--c-gold); }
.footer-uen { font-variant-numeric: tabular-nums; }

@media (max-width: 720px) {
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Skip-to-content link (a11y) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-forest);
  color: var(--c-paper);
  padding: 12px 18px;
  z-index: 10000;
  text-decoration: none;
  font-family: var(--f-sans);
  font-size: 14px;
  border-radius: 0 0 6px 0;
}
.skip-to-content:focus {
  left: 0;
  outline: 3px solid var(--c-gold);
}

/* Reading-time / author block on blog posts */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--c-ink-2);
  font-family: var(--f-sans);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
}
.blog-meta-author {
  display: flex; align-items: center; gap: 10px;
}
.blog-meta-author-img {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-forest), var(--c-forest-dark));
  color: var(--c-gold-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-size: 16px;
}
.blog-meta-dot { color: var(--c-gold); }

/* Print stylesheet */
@media print {
  .site-nav, .announce-bar, .marquee, .breadcrumbs,
  .floating-cta, .whatsapp-fab, .mobile-quickbar,
  .midpage-cta, .cta-strip, .footer-newsletter, .footer-trust,
  .last-updated { display: none !important; }
  body { background: white !important; color: #111 !important; }
  .container { max-width: 100%; padding: 0 12mm; }
  a { color: #111; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
  h1, h2, h3 { page-break-after: avoid; }
  section { page-break-inside: avoid; }
  .site-footer {
    background: white !important;
    color: #111 !important;
    padding: 12mm 0 !important;
    border-top: 1pt solid #999;
  }
  .site-footer * { color: #111 !important; }
}
