/* =========================================================
   MEDIQUEST v3 — CITRUS & TEAL
   Edit :root to retheme the entire site
   ========================================================= */
:root {
  --dark:      #042f2e;   /* deep forest — hero bg, footer, dark sections */
  --dark2:     #0a3d3c;   /* slightly lighter forest for cards */
  --primary:   #0d9488;   /* teal — primary buttons, links */
  --bright:    #84cc16;   /* lime-yellow — eyebrows, accents, pops */
  --amber:     #fbbf24;   /* warm yellow — CTA buttons */
  --amber-dk:  #5c3d00;   /* amber text color */
  --tint:      #f0fdf4;   /* very light green tint — hero bg */
  --tint-mid:  #a7f3d0;   /* card borders, tags — darker for contrast */
  --tint-str:  #6ee7b7;   /* stronger borders */
  --white:     #ffffff;
  --text:      #021a19;   /* near-black forest for high contrast */
  --text-mid:  #042f2e;   /* dark forest for body text */
  --text-muted:#0a5c52;   /* muted but still readable */
  --border:    rgba(4,47,46,0.15);
  --border-str:rgba(4,47,46,0.3);

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'Lora', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--dark); }

/* ── ANIMATIONS ── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
@keyframes fadein { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(300%)} }
@keyframes countdown-pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

.fadein   { animation: fadein 0.55s ease both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.38s; }
.d5 { animation-delay: 0.50s; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(4,47,46,0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(2,16,15,0.3); }

.site-branding { display: flex; align-items: center; gap: 10px; }
.nav-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.nav-mark svg { width: 17px; height: 17px; }
.site-title { margin: 0; }
.site-title a {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.2rem;
  color: white; letter-spacing: -0.02em;
}
.site-title a span { color: var(--bright); }
.custom-logo { height: 36px; width: auto; }

.primary-navigation ul { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.primary-navigation a {
  font-size: 0.87rem; font-weight: 500;
  color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.18s;
}
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a { color: var(--bright); }

.nav-cta {
  background: var(--amber); color: var(--amber-dk);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(251,191,36,0.35);
}
.nav-cta:hover { background: #fcd34d; transform: translateY(-1px); color: var(--amber-dk); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--dark); color: white;
  padding: 0.82rem 1.75rem; border-radius: 50px; border: none;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(4,47,46,0.25);
}
.btn-primary:hover { background: var(--dark2); color: white; transform: translateY(-2px); }

.btn-amber {
  display: inline-block;
  background: var(--amber); color: var(--amber-dk);
  padding: 0.82rem 1.75rem; border-radius: 50px; border: none;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(251,191,36,0.3);
}
.btn-amber:hover { background: #fcd34d; transform: translateY(-2px); color: var(--amber-dk); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--dark);
  padding: 0.82rem 1.75rem; border-radius: 50px;
  border: 1.5px solid var(--dark);
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: var(--tint-mid); color: var(--dark); }

/* ── HERO ── */
.mq-hero {
  min-height: 100vh;
  background: var(--tint);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 8rem 6rem 5rem;
  position: relative; overflow: hidden;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.mq-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='69'%3E%3Cpath d='M30 3L57 18v33L30 66 3 51V18Z' fill='none' stroke='%230d9488' stroke-opacity='.07' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 69px;
  z-index: 0;
}
/* Overlay when background image is present */
.mq-hero.has-bg-image::before {
  background-image: linear-gradient(to right, rgba(2,26,25,0.88) 0%, rgba(2,26,25,0.65) 55%, rgba(2,26,25,0.3) 100%);
  background-size: auto;
  z-index: 1;
}
.mq-hero.has-bg-image .hero-content,
.mq-hero.has-bg-image .hero-visual { position: relative; z-index: 2; }
.mq-hero.has-bg-image .hero-headline { color: white; }
.mq-hero.has-bg-image .hero-headline .hi { color: var(--bright); }
.mq-hero.has-bg-image .hero-tagline { color: rgba(255,255,255,0.75); }
.mq-hero.has-bg-image .hero-body { color: rgba(255,255,255,0.82); }
.mq-hero.has-bg-image .hero-eyebrow { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: white; }
.mq-hero.has-bg-image .hero-stats { border-top-color: rgba(255,255,255,0.2); }
.mq-hero.has-bg-image .stat-num { color: var(--bright); }
.mq-hero.has-bg-image .stat-label { color: rgba(255,255,255,0.6); }
.mq-hero.has-bg-image .stat-div { background: rgba(255,255,255,0.2); }
.mq-hero.has-bg-image .btn-outline { border-color: rgba(255,255,255,0.5); color: white; }
.mq-hero.has-bg-image .btn-outline:hover { background: rgba(255,255,255,0.15); }

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--tint-mid); border: 1px solid var(--tint-str);
  color: var(--dark);
  padding: 0.3rem 0.9rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.eyebrow-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bright);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900; line-height: 1.07;
  color: var(--dark); letter-spacing: -0.03em; margin-bottom: 0.6rem;
}
.hero-headline .hi {
  color: var(--primary); position: relative; display: inline-block;
}
.hero-headline .hi::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 4px;
  background: var(--bright); border-radius: 2px;
}

.hero-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.07rem; color: var(--text-muted); margin-bottom: 1.4rem;
}
.hero-body {
  font-size: 1.02rem; color: var(--text-mid);
  max-width: 460px; line-height: 1.8; margin-bottom: 2.1rem;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.75rem; }

.hero-stats {
  display: flex; align-items: center; gap: 1.75rem;
  padding-top: 2rem; border-top: 1px solid var(--tint-str);
}
.stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; line-height: 1.35; }
.stat-div { width: 1px; height: 34px; background: var(--tint-str); }

/* ── HERO VISUAL ── */
.hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 40px 60px; }
.phone-wrap { position: relative; z-index: 1; }

.float-chip {
  position: absolute;
  background: white; border: 1px solid var(--tint-str);
  border-radius: 12px; padding: 0.6rem 0.875rem;
  box-shadow: 0 8px 24px rgba(4,47,46,0.12);
  font-size: 0.75rem;
  z-index: 10;
  min-width: 160px;
}
.float-chip-a { top: -20px; right: -60px; animation: float 4s 0.3s ease-in-out infinite; }
.float-chip-b { bottom: 20px; left: -60px; animation: float2 5s 0.9s ease-in-out infinite; }
.chip-title { font-weight: 700; color: var(--dark); font-size: 0.73rem; }
.chip-sub { color: var(--text-muted); font-size: 0.67rem; margin-top: 1px; }

.phone {
  width: 330px; background: white;
  border-radius: 26px;
  box-shadow: 0 28px 72px rgba(4,47,46,0.18), 0 4px 12px rgba(4,47,46,0.08);
  overflow: hidden; border: 1px solid var(--tint-str);
  animation: float 5.5s ease-in-out infinite;
}

.phone-hdr {
  background: var(--dark); padding: 1rem 1.2rem 0.9rem;
  display: flex; align-items: center; justify-content: space-between;
}
.phone-hdr-l { display: flex; align-items: center; gap: 8px; }
.phone-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(132,204,22,0.18); border: 1px solid rgba(132,204,22,0.35);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.phone-icon svg { width: 13px; height: 13px; }
.phone-title { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: white; }
.phone-sub { font-size: 0.66rem; color: rgba(255,255,255,0.42); }
.phone-timer {
  background: rgba(251,191,36,0.18); border: 1px solid rgba(251,191,36,0.4);
  color: var(--amber); font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: 6px;
  animation: countdown-pulse 2s ease-in-out infinite;
}

.phone-body { padding: 1.05rem; }
.phone-scenario {
  background: var(--tint); border: 1px solid var(--tint-mid);
  border-radius: 11px; padding: 0.85rem; margin-bottom: 0.85rem;
}
.phone-scenario-label {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.35rem;
}
.phone-scenario-q {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.8rem; color: var(--text-mid); line-height: 1.55;
}

.phone-choices { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.85rem; }
.phone-opt {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 0.7rem; border: 1px solid var(--border);
  border-radius: 8px; background: white;
  font-size: 0.76rem; color: var(--text-mid); cursor: pointer; transition: all 0.16s;
}
.phone-opt:hover { border-color: var(--primary); background: var(--tint); }
.phone-opt.correct { border-color: var(--primary); background: var(--tint); color: var(--dark); }
.phone-opt.wrong { border-color: #fca5a5; background: #fef2f2; color: #991b1b; }
.opt-key {
  width: 19px; height: 19px; flex-shrink: 0; border-radius: 5px;
  background: var(--tint-mid); display: flex; align-items: center; justify-content: center;
  font-size: 0.63rem; font-weight: 700; color: var(--primary);
}
.correct .opt-key { background: var(--bright); color: var(--dark); }

.phone-clue {
  display: flex; align-items: flex-start; gap: 0.55rem;
  background: var(--tint-mid); border: 1px solid var(--tint-str);
  border-radius: 9px; padding: 0.65rem 0.8rem;
  font-size: 0.73rem; color: var(--dark);
}
.clue-key { width: 20px; height: 20px; flex-shrink: 0; border-radius: 5px; background: var(--bright); display: flex; align-items: center; justify-content: center; }
.clue-key svg { width: 11px; height: 11px; }

.phone-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1.05rem; border-top: 1px solid var(--tint-mid); background: var(--tint);
}
.phone-footer-label { font-size: 0.68rem; color: var(--text-muted); }
.phone-dots { display: flex; gap: 4px; }
.phone-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tint-str); }
.phone-dot.on { background: var(--primary); }
.phone-dot.now { background: var(--bright); }

/* ── SECTION BASE ── */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem;
}
.eyebrow::before { content: ''; display: block; width: 18px; height: 2px; border-radius: 1px; background: var(--bright); flex-shrink: 0; }
.eyebrow-lt { color: var(--bright); }
.eyebrow-lt::before { background: var(--bright); }

h2.stitle {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 900; line-height: 1.14;
  color: var(--dark); letter-spacing: -0.025em; margin-bottom: 0.9rem;
}
.stitle-lt { color: white !important; }
.slead { font-size: 1.02rem; color: var(--text-mid); max-width: 560px; line-height: 1.8; }
.slead-lt { color: rgba(255,255,255,0.5) !important; }

/* ── SECTION VARIANTS ── */
.sec-white { background: white; }
.sec-tint { background: var(--tint); position: relative; overflow: hidden; }
.sec-tint::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='69'%3E%3Cpath d='M30 3L57 18v33L30 66 3 51V18Z' fill='none' stroke='%230d9488' stroke-opacity='.07' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 69px; pointer-events: none;
}
.sec-tint .section-inner { position: relative; z-index: 1; }
.sec-dark { background: var(--dark); position: relative; overflow: hidden; }
.sec-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='69'%3E%3Cpath d='M30 3L57 18v33L30 66 3 51V18Z' fill='none' stroke='%2384cc16' stroke-opacity='.06' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 69px; pointer-events: none;
}
.sec-dark .section-inner { position: relative; z-index: 1; }

/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.g2-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* ── PRODUCT CARDS ── */
.prod-card {
  background: white; border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(4,47,46,0.13); }
.prod-card-top { padding: 1.875rem; position: relative; overflow: hidden; }
.prod-card-top::after { content: ''; position: absolute; bottom: -50px; right: -50px; width: 160px; height: 160px; border-radius: 50%; }
.prod-top-dark { background: var(--dark); }
.prod-top-dark::after { background: rgba(132,204,22,0.1); }
.prod-top-amber { background: linear-gradient(140deg, #78350f, #3d1a02); }
.prod-top-amber::after { background: rgba(251,191,36,0.1); }
.prod-ey { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 0.7rem; }
.prod-top-dark .prod-ey { color: var(--bright); }
.prod-top-amber .prod-ey { color: var(--amber); }
.prod-name { font-family: var(--font-display); font-weight: 900; font-size: 1.45rem; color: white; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.prod-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.prod-body { padding: 1.625rem 1.875rem; }
.prod-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.prod-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.87rem; color: var(--text-mid); }
.feat-check { width: 19px; height: 19px; flex-shrink: 0; border-radius: 50%; margin-top: 1px; display: flex; align-items: center; justify-content: center; background: var(--dark); }
.feat-check-green { background: var(--dark); }
.feat-check-amber { background: var(--dark); }
.feat-check svg { width: 9px; height: 9px; }
.prod-btn {
  width: 100%; padding: 0.875rem; border-radius: 11px; border: none;
  cursor: pointer; font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; transition: all 0.18s;
}
.prod-btn-dark { background: var(--dark); color: white; border: 1.5px solid var(--dark); }
.prod-btn-dark:hover { background: var(--primary); color: white; border-color: var(--primary); }
.prod-btn-amber { background: var(--dark); color: white; border: 1.5px solid var(--dark); }
.prod-btn-amber:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ── STEPS ── */
.step-item { display: grid; grid-template-columns: 44px 1fr; gap: 1.2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--tint-mid); }
.step-item:last-child { border-bottom: none; }
.step-n {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--dark); border: 1.5px solid var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 900; color: white;
  transition: all 0.18s;
}
.step-item:hover .step-n { background: var(--primary); border-color: var(--primary); }
.step-h { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; }
.step-p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; }

/* ── WHY CARDS ── */
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 1.625rem; transition: all 0.22s;
}
.why-card:hover { background: rgba(132,204,22,0.1); border-color: rgba(132,204,22,0.35); transform: translateY(-3px); }
.why-h { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: white; margin-bottom: 0.5rem; }
.why-p { font-size: 0.84rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ── AUDIENCE CARDS ── */
.aud-card {
  background: var(--tint); border: 1px solid var(--tint-mid);
  border-radius: 16px; padding: 1.5rem; transition: all 0.22s;
}
.aud-card:hover { background: white; border-color: var(--dark); box-shadow: 0 8px 28px rgba(4,47,46,0.09); transform: translateY(-3px); }
.aud-title { font-family: var(--font-display); font-weight: 700; font-size: 0.93rem; color: var(--text); margin-bottom: 0.35rem; }
.aud-body { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }

/* ── PULL QUOTE ── */
.pull-quote {
  margin-top: 3.5rem; padding: 2.1rem 2.75rem;
  background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.18);
  border-radius: 18px; text-align: center;
}
.pull-quote blockquote { font-family: var(--font-serif); font-style: italic; font-size: 1.28rem; color: rgba(255,255,255,0.85); line-height: 1.62; margin-bottom: 0.8rem; }
.pull-quote cite { font-size: 0.8rem; color: var(--bright); font-style: normal; font-weight: 500; }

/* ── TIMELINE ── */
.timeline-item { border-left: 2px solid var(--tint-str); padding: 0 0 22px 20px; position: relative; margin-left: 8px; }
.timeline-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); border: 2px solid var(--tint); box-shadow: 0 0 0 3px var(--tint-str); }
.tl-date { font-size: 0.72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.tl-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 2px; }
.tl-org { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-bottom: 4px; }
.tl-body { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; }

/* ── GAME CARDS ── */
.game-card { background: var(--tint); border: 1px solid var(--tint-mid); border-radius: 16px; padding: 1.25rem; transition: all 0.22s; }
.game-card:hover { background: white; border-color: var(--dark); box-shadow: 0 8px 24px rgba(4,47,46,0.1); }
.game-setting { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: white; background: var(--primary); display: inline-block; padding: 2px 8px; border-radius: 4px; margin-bottom: 0.5rem; }
.game-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.4rem; }

/* ── CTA SECTION ── */
.cta-center { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-lead { font-size: 1.02rem; color: var(--text-mid); line-height: 1.8; margin: 0.875rem 0 2.25rem; }
.cta-btns { display: flex; justify-content: center; gap: 0.875rem; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.mq-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.35rem; }
.mq-input, .mq-select, .mq-textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--tint-str); border-radius: 11px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: white; transition: border-color 0.18s; outline: none;
}
.mq-input:focus, .mq-select:focus, .mq-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.mq-textarea { resize: vertical; min-height: 140px; }
.form-notice { padding: 0.875rem 1rem; border-radius: 11px; font-size: 0.87rem; margin-top: 1rem; display: none; }
.form-notice.success { background: var(--tint-mid); color: var(--dark); border: 1px solid var(--tint-str); display: block; }
.form-notice.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ── CREDS ── */
.cred-row { display: flex; align-items: center; gap: 0.875rem; background: white; border: 1px solid var(--border); border-radius: 11px; padding: 0.8rem 1.05rem; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0.6rem; }
.cred-ic { width: 32px; height: 32px; border-radius: 8px; background: var(--tint-mid); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cred-ic svg { width: 15px; height: 15px; }
.cred-row strong { color: var(--dark); }

/* ── ABOUT BOX ── */
.about-box { background: var(--dark); border-radius: 22px; padding: 2.1rem; }
.about-box .vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 0.7rem; }
.val-chip { background: rgba(255,255,255,0.05); border: 1px solid rgba(132,204,22,0.15); border-radius: 9px; padding: 0.8rem; }
.val-name { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--bright); margin-bottom: 0.18rem; }
.val-desc { font-size: 0.7rem; color: rgba(255,255,255,0.32); line-height: 1.45; }
.pal-strip { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; margin-top: 1rem; }
.pal-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 0.75rem; }
.pal-swatches { display: flex; gap: 0.5rem; }
.pal-sw { flex: 1; height: 32px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.06); }

/* ── PROFILE PHOTO ── */
.profile-photo-wrap { border-radius: 22px; overflow: hidden; border: 3px solid var(--tint-str); box-shadow: 0 24px 60px rgba(4,47,46,0.14); aspect-ratio: 1; }
.profile-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.profile-placeholder { width: 100%; aspect-ratio: 1; background: var(--tint); border-radius: 22px; display: flex; align-items: center; justify-content: center; border: 3px solid var(--tint-str); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 1.875rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: white; letter-spacing: -0.02em; }
.footer-logo span { color: var(--bright); }
.footer-nav ul { display: flex; gap: 1.625rem; list-style: none; margin: 0; padding: 0; }
.footer-nav a { font-size: 0.81rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s; }
.footer-nav a:hover { color: var(--bright); }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.22); }

/* ── ELEMENTOR INTEGRATION ── */
.elementor-page .mq-page-content { padding-top: 64px; }
.elementor-section { margin: 0 !important; }
.elementor-widget-text-editor p { color: var(--text-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .site-header { padding: 0 1.5rem; }
  .primary-navigation { display: none; }
  .mq-hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; }
  .hero-visual { display: none; }
  .g2, .g2-wide { grid-template-columns: 1fr; gap: 2rem; }
  .g3 { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 1.5rem; }
  .site-footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  .footer-nav ul { justify-content: center; }
}
@media (max-width: 600px) {
  .g3, .g4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
}

/* ── GUTENBERG / ELEMENTOR BLOCK STYLES ── */
.entry-content h1,.entry-content h2,.entry-content h3 { font-family: var(--font-display); color: var(--dark); letter-spacing: -0.025em; margin-bottom: 0.75rem; margin-top: 2rem; }
.entry-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
.entry-content blockquote { border-left: 3px solid var(--bright); padding: 0.75rem 1.25rem; background: var(--tint); border-radius: 0 8px 8px 0; font-family: var(--font-serif); font-style: italic; color: var(--text-mid); }
.alignwide { margin-left: -2rem; margin-right: -2rem; }