/* ==========================================================================
   Extranova Studio — design system
   Palette + type scale derived from the approved reference direction.
   ========================================================================== */

:root {
  /* Ink */
  --ink:        #0C1A12;
  --ink-soft:   #26352C;
  --muted:      #5C6B62;
  --muted-2:    #7F8B83;

  /* Brand green */
  --green:       #0E9F58;
  --green-bright:#16B364;
  --green-deep:  #0A7E46;
  --green-glow:  #4ADE80;

  /* Surfaces */
  --white:    #FFFFFF;
  --surface:  #F3F8F5;
  --mint:     #E9F8F0;
  --mint-2:   #D4F0DF;
  --cream:    #FBF3E2;
  --amber:    #B4770E;

  /* Lines */
  --line:      #E6ECE8;
  --line-soft: #EFF3F1;

  /* Dark section */
  --dark:      #0C1A12;
  --dark-2:    #12241A;
  --dark-line: #1E3327;
  --dark-text: #A9BCB0;

  /* Shape */
  --r-pill: 999px;
  --r-lg:   22px;
  --r-md:   16px;
  --r-sm:   11px;

  --shadow-sm: 0 1px 2px rgba(12,26,18,.04);
  --shadow-md: 0 1px 2px rgba(12,26,18,.04), 0 12px 32px -14px rgba(12,26,18,.14);
  --shadow-lg: 0 2px 4px rgba(12,26,18,.04), 0 28px 60px -24px rgba(12,26,18,.20);

  --shell: 1180px;
  --pad:   clamp(20px, 5vw, 40px);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.ex-site {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.ex-lock-scroll { overflow: hidden; }

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

a { color: var(--green-deep); text-decoration: none; }
a:hover { color: var(--green-bright); }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.05rem); line-height: .98; letter-spacing: -0.042em; }
h2 { font-size: clamp(1.95rem, 4vw, 2.85rem); line-height: 1.05; letter-spacing: -0.038em; }
h3 { font-size: 1.28rem; letter-spacing: -0.022em; line-height: 1.25; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- layout ---------- */
.ex-shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.ex-section { padding: clamp(64px, 9vw, 116px) 0; }
.ex-section-tight { padding: clamp(48px, 6vw, 76px) 0; }
.ex-soft { background: var(--surface); }

/* ---------- eyebrow + section head ---------- */
.ex-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.ex-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex: none;
}
.ex-dark .ex-eyebrow { color: var(--green-glow); }
.ex-dark .ex-eyebrow::before { background: var(--green-glow); }

.ex-dot { color: var(--green); }
/* The accent dot must not vanish on the green card or the dark band. */
.ex-cta-card .ex-dot { color: #A7F3C4; }
.ex-dark .ex-dot { color: var(--green-glow); }

.ex-section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}
.ex-section-head .ex-eyebrow { justify-content: center; }
.ex-section-head p {
  font-size: 1.09rem;
  color: var(--muted);
  margin: 0;
}
.ex-section-head h2 { margin-bottom: .45em; }

.ex-head-left { text-align: left; margin-inline: 0; }

/* ---------- buttons ---------- */
.ex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: var(--green-deep);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
  box-shadow: 0 10px 22px -12px rgba(10,126,70,.75);
}
.ex-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -12px rgba(10,126,70,.8);
}
.ex-btn svg { flex: none; transition: transform .18s ease; }
.ex-btn:hover svg { transform: translateX(3px); }

.ex-btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.ex-btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--mint-2);
  box-shadow: var(--shadow-md);
}

.ex-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.ex-btn-ghost:hover { background: var(--mint); color: var(--green-deep); border-color: var(--mint-2); }

.ex-btn-small { padding: 11px 20px; font-size: .94rem; }
.ex-btn-wide { width: 100%; }

.ex-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.ex-actions.ex-center { justify-content: center; }

.ex-textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--green-deep);
}
.ex-textlink:hover { gap: 11px; }

/* ---------- chips ---------- */
.ex-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--mint);
  color: var(--green-deep);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.2;
}
.ex-chip-amber { background: var(--cream); color: var(--amber); }

/* ---------- header ---------- */
.ex-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.ex-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.ex-brand { display: inline-flex; align-items: center; flex: none; }
.ex-brand img { height: 30px; width: auto; }

.ex-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}
.ex-menu a {
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -.01em;
}
.ex-menu a:hover { color: var(--green-deep); }

.ex-nav-actions { display: flex; align-items: center; gap: 16px; flex: none; }
.ex-menu > .ex-btn { display: none; }
.ex-nav-actions .ex-signin { font-size: .98rem; font-weight: 600; color: var(--ink-soft); }
.ex-nav-actions .ex-signin:hover { color: var(--green-deep); }

.ex-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}
.ex-menu-toggle .ex-bars { display: grid; gap: 3px; }
.ex-menu-toggle .ex-bars span { display: block; width: 15px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- hero ---------- */
.ex-hero {
  position: relative;
  padding: clamp(52px, 7vw, 92px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.ex-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle at 60% 40%, rgba(22,179,100,.13), rgba(22,179,100,0) 62%);
  pointer-events: none;
}
.ex-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}
.ex-hero h1 { margin-bottom: .34em; }
.ex-hero-text {
  font-size: clamp(1.06rem, 1.5vw, 1.19rem);
  color: var(--muted);
  max-width: 34em;
}
.ex-hero-text strong { color: var(--ink); font-weight: 700; }

.ex-hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  font-size: .95rem;
  color: var(--muted);
}
.ex-hero-proof strong { color: var(--ink); font-weight: 700; }
.ex-proof-dots { display: flex; }
.ex-proof-dots span {
  width: 30px; height: 30px;
  border-radius: var(--r-pill);
  border: 2px solid var(--white);
  margin-left: -9px;
  display: grid; place-items: center;
  font-size: .74rem; font-weight: 800; color: #fff;
}
.ex-proof-dots span:first-child { margin-left: 0; }

/* hero mockup panel */
.ex-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
}
.ex-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.ex-panel-head strong { color: var(--ink); font-size: 1.03rem; font-weight: 700; }
.ex-live {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--mint); color: var(--green-deep);
  font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
}
.ex-live::before { content:""; width: 7px; height: 7px; border-radius: var(--r-pill); background: var(--green); }

.ex-panel-row {
  display: flex; align-items: center; gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  margin-bottom: 16px;
}
.ex-panel-avatar {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.02rem;
}
.ex-panel-row > div { min-width: 0; }
.ex-panel-row > div > strong { display: block; color: var(--ink); font-size: .97rem; font-weight: 700; }
.ex-panel-row > div > span { display: block; font-size: .86rem; color: var(--muted-2); }
.ex-panel-row .ex-chip { margin-left: auto; flex: none; }

.ex-steps { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 17px; }
.ex-steps li { display: flex; align-items: flex-start; gap: 12px; }
.ex-steps .ex-tick {
  width: 26px; height: 26px; flex: none;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
}
.ex-steps .ex-tick.ex-pending { background: var(--mint); color: var(--green-deep); }
.ex-steps b { display: block; color: var(--ink); font-size: .97rem; font-weight: 700; }
.ex-steps span { display: block; font-size: .87rem; color: var(--muted-2); line-height: 1.5; }
.ex-steps time { margin-left: auto; flex: none; font-size: .82rem; color: var(--muted-2); padding-left: 10px; }

.ex-float-card {
  position: absolute;
  left: -34px;
  bottom: -42px;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.ex-float-card .ex-float-icon {
  width: 36px; height: 36px; flex: none;
  border-radius: 10px;
  background: var(--mint);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.ex-float-card strong { display: block; color: var(--ink); font-size: .92rem; font-weight: 700; }
.ex-float-card span { display: block; font-size: .82rem; color: var(--muted-2); }

/* ---------- stats band ---------- */
.ex-stats { background: var(--surface); border-block: 1px solid var(--line-soft); }
.ex-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ex-stats-grid > div {
  padding: clamp(28px, 3.4vw, 44px) 20px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.ex-stats-grid > div:first-child { border-left: 0; }
.ex-stats-grid strong {
  display: block;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--green-deep);
  line-height: 1.1;
}
.ex-stats-grid span { display: block; margin-top: 6px; font-size: .93rem; color: var(--muted); }

/* ---------- card grid ---------- */
.ex-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 22px;
}
.ex-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ex-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mint-2); }
.ex-card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--mint);
  color: var(--green-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.ex-card h3 { margin-bottom: .45em; }
.ex-card p { font-size: .97rem; color: var(--muted); margin: 0; }
.ex-soft .ex-card { background: var(--white); }

/* ---------- dark section ---------- */
.ex-dark {
  position: relative;
  background: var(--dark);
  color: var(--dark-text);
  overflow: hidden;
}
.ex-dark::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 900px; height: 900px;
  background: radial-gradient(circle at 50% 50%, rgba(22,179,100,.20), rgba(22,179,100,0) 60%);
  pointer-events: none;
}
.ex-dark h2, .ex-dark h3 { color: #fff; }
.ex-dark p { color: var(--dark-text); }
.ex-dark-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.ex-dark-lead { font-size: 1.09rem; max-width: 33em; }

.ex-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 26px 32px;
  margin-top: 40px;
}
.ex-metrics strong {
  display: block;
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--green-glow);
  line-height: 1.05;
}
.ex-metrics span { display: block; margin-top: 8px; font-size: .9rem; color: var(--dark-text); line-height: 1.5; }

.ex-note-dark { margin-top: 34px; font-size: .84rem; color: #6E8577; }

.ex-bars { display: grid; gap: 16px; }
.ex-bar-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding: 20px 22px;
}
.ex-bar-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 14px;
}
.ex-bar-top b { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: .97rem; font-weight: 700; }
.ex-bar-top b::before { content: ""; width: 8px; height: 8px; border-radius: var(--r-pill); background: #3E5647; flex: none; }
.ex-bar-card.ex-bar-good .ex-bar-top b::before { background: var(--green-glow); }
.ex-bar-top span { font-size: .85rem; color: #7E9487; text-align: right; }
.ex-bar-track { height: 8px; border-radius: var(--r-pill); background: #1B3024; overflow: hidden; }
.ex-bar-fill { height: 100%; border-radius: var(--r-pill); background: #3E5647; }
.ex-bar-good .ex-bar-fill { background: linear-gradient(90deg, var(--green), var(--green-glow)); }

/* ---------- split feature ---------- */
.ex-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.ex-split-flip .ex-split-media { order: 2; }

.ex-framework { display: grid; gap: 14px; }
.ex-framework-head {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--mint);
  padding: 18px 22px;
}
.ex-framework-head span {
  display: block; font-size: .74rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--green-deep); margin-bottom: 5px;
}
.ex-framework-head strong { color: var(--ink); font-size: 1.05rem; font-weight: 700; }

.ex-framework article {
  display: flex; gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.ex-framework article > span {
  flex: none;
  width: 34px; height: 34px;
  border-radius: var(--r-pill);
  background: var(--mint);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-size: .84rem; font-weight: 800;
}
.ex-framework strong { display: block; color: var(--ink); font-size: 1.02rem; font-weight: 700; margin-bottom: 3px; }
.ex-framework p { font-size: .94rem; margin: 0; }

.ex-check { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 13px; }
.ex-check li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 1rem; }
.ex-check li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: var(--r-pill);
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%230A7E46' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px 13px no-repeat;
}

/* ---------- process ---------- */
.ex-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.ex-process article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ex-process article > span {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  background: var(--green-deep);
  color: #fff;
  font-weight: 800; font-size: .95rem;
  margin-bottom: 18px;
}
.ex-process h3 { margin-bottom: .4em; }
.ex-process p { font-size: .96rem; margin: 0; }

/* ---------- comparison table ---------- */
.ex-compare-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.ex-compare-scroll { overflow-x: auto; }
.ex-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: .95rem;
}
.ex-compare th, .ex-compare td {
  padding: 17px 20px;
  text-align: left;
  vertical-align: middle;
  border-top: 1px solid var(--line-soft);
}
.ex-compare thead th {
  border-top: 0;
  font-size: .88rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -.005em;
}
.ex-compare thead th.ex-col-us { color: var(--ink); }
.ex-compare tbody th {
  font-weight: 700;
  color: var(--ink);
  width: 27%;
}
.ex-compare td { color: var(--muted); }
.ex-col-us { background: var(--mint); }
.ex-compare .ex-col-us { color: var(--ink-soft); font-weight: 600; }
.ex-compare-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 800; }
.ex-mark { display: inline-flex; align-items: center; gap: 9px; }
.ex-mark svg { flex: none; }
.ex-compare-foot {
  padding: 26px 20px 30px;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}

/* ---------- pricing ---------- */
.ex-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 22px;
  align-items: start;
}
.ex-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.ex-price-card.ex-popular {
  border-color: var(--green);
  background: linear-gradient(180deg, #F6FDF9 0%, var(--white) 46%);
  box-shadow: var(--shadow-md);
}
.ex-pill-top {
  position: absolute;
  top: -13px;
  left: 26px;
  padding: 6px 15px;
  border-radius: var(--r-pill);
  background: var(--green-deep);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: -.005em;
}
.ex-price-card h3 { font-size: 1.22rem; margin-bottom: .3em; }
.ex-plan-desc { font-size: .93rem; color: var(--muted); margin: 0 0 22px; }
.ex-price-row { display: flex; align-items: flex-start; gap: 3px; margin-bottom: 6px; }
.ex-price-row .ex-cur { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-top: 8px; }
.ex-price-row .ex-amount {
  font-size: clamp(2.4rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--ink);
  line-height: 1;
}
.ex-price-row .ex-per { align-self: flex-end; font-size: .92rem; color: var(--muted-2); margin-bottom: 5px; margin-left: 4px; }
.ex-plan-term { font-size: .89rem; color: var(--muted-2); margin: 0 0 18px; }
.ex-price-card .ex-chip { margin-bottom: 20px; align-self: flex-start; }
.ex-plan-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.ex-plan-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .95rem; color: var(--ink-soft); }
.ex-plan-list li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230E9F58' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/18px 18px no-repeat;
}
.ex-price-card .ex-btn { margin-top: auto; }
.ex-plan-foot { margin: 16px 0 0; font-size: .86rem; color: var(--muted-2); }
.ex-note {
  margin: 34px auto 0;
  max-width: 780px;
  text-align: center;
  font-size: .9rem;
  color: var(--muted-2);
}

/* ---------- FAQ ---------- */
.ex-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.ex-faq-intro h2 { margin-bottom: .4em; }
.ex-faq-support {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.ex-faq-support strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 5px; }
.ex-faq-support span { display: block; font-size: .93rem; color: var(--muted); margin-bottom: 15px; }

.ex-faq-list { display: grid; gap: 12px; }
.ex-faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ex-faq-list details[open] { border-color: var(--mint-2); box-shadow: var(--shadow-md); }
.ex-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -.015em;
}
.ex-faq-list summary::-webkit-details-marker { display: none; }
.ex-faq-list summary::after {
  content: "";
  flex: none;
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%230A7E46' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/13px 13px no-repeat;
  transition: transform .2s ease;
}
.ex-faq-list details[open] summary::after { transform: rotate(45deg); }
.ex-faq-list details p { padding: 0 0 20px; margin: 0; font-size: .97rem; color: var(--muted); }

/* ---------- CTA card ---------- */
.ex-cta-section { padding: 0 0 clamp(60px, 8vw, 100px); }
.ex-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 34px);
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 52%, var(--green-bright) 100%);
  color: #fff;
  padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 68px);
  text-align: center;
}
.ex-cta-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -55% auto;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.20), rgba(255,255,255,0) 62%);
  pointer-events: none;
}
.ex-cta-card h2 { color: #fff; margin-bottom: .4em; }
.ex-cta-card p { position: relative; color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto; font-size: 1.08rem; }
.ex-cta-card .ex-actions { position: relative; justify-content: center; }
.ex-cta-card .ex-btn {
  background: #fff; color: var(--green-deep);
  box-shadow: 0 12px 26px -14px rgba(0,0,0,.5);
}
.ex-cta-card .ex-btn:hover { background: #fff; color: var(--ink); }
.ex-cta-card .ex-btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.42);
  backdrop-filter: blur(4px);
}
.ex-cta-card .ex-btn-secondary:hover { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }
.ex-cta-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.24);
}
.ex-cta-stats strong { display: block; font-size: 1.6rem; font-weight: 800; letter-spacing: -.035em; color: #fff; }
.ex-cta-stats span { display: block; margin-top: 4px; font-size: .9rem; color: rgba(255,255,255,.82); }

/* ---------- page hero ---------- */
.ex-page-hero {
  position: relative;
  padding: clamp(52px, 6vw, 84px) 0 clamp(34px, 4vw, 52px);
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.ex-page-hero::before {
  content: "";
  position: absolute;
  inset: -60% -10% auto auto;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(22,179,100,.12), rgba(22,179,100,0) 62%);
  pointer-events: none;
}
.ex-page-hero > .ex-shell { position: relative; }
.ex-page-hero h1 { max-width: 15ch; }
.ex-page-hero > .ex-shell > p { font-size: 1.09rem; max-width: 62ch; color: var(--muted); }

.ex-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: end;
}

/* ---------- info card ---------- */
.ex-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.ex-side-label {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.ex-info strong { display: block; color: var(--ink); font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.ex-info p { font-size: .95rem; color: var(--muted); margin-bottom: 14px; }
.ex-info p:last-child { margin-bottom: 0; }

.ex-numbered { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 20px; }
.ex-numbered li { position: relative; padding-left: 46px; counter-increment: step; }
.ex-numbered li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 30px; height: 30px;
  border-radius: var(--r-pill);
  background: var(--mint);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-size: .84rem; font-weight: 800;
}
.ex-numbered strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 3px; }
.ex-numbered span { display: block; font-size: .94rem; color: var(--muted); line-height: 1.55; }

/* ---------- about ---------- */
.ex-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.ex-principles article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.ex-principles article > span {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: .1em;
  margin-bottom: 14px;
}

/* ---------- contact ---------- */
.ex-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: start;
}
.ex-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-md);
}
.ex-form-head { margin-bottom: 26px; }
.ex-form-head h2 { font-size: 1.7rem; margin-bottom: .3em; }
.ex-form-head p { font-size: .98rem; margin: 0; }
.ex-contact-side { display: grid; gap: 20px; }

.ex-form label { display: block; margin-bottom: 16px; color: var(--ink); font-weight: 600; font-size: .95rem; }
.ex-form input[type="text"],
.ex-form input[type="email"],
.ex-form input[type="tel"],
.ex-form input[type="url"],
.ex-form select,
.ex-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.ex-form textarea { min-height: 150px; resize: vertical; }
.ex-form input:focus, .ex-form select:focus, .ex-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(14,159,88,.14);
}
.ex-form input[type="submit"], .ex-form .wpcf7-submit {
  display: inline-flex;
  padding: 15px 30px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--green-deep);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px -12px rgba(10,126,70,.75);
  transition: background .18s ease, transform .18s ease;
}
.ex-form input[type="submit"]:hover, .ex-form .wpcf7-submit:hover { background: var(--green); transform: translateY(-1px); }
.wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 13px 17px !important;
  border-radius: var(--r-sm) !important;
  border-width: 1px !important;
  font-size: .95rem;
}
.wpcf7-not-valid-tip { color: #C0392B; font-size: .86rem; margin-top: 5px; }

/* ---------- policy / prose ---------- */
.ex-policy { max-width: 800px; }
.ex-policy h2 { font-size: 1.75rem; margin: 2em 0 .6em; }
.ex-policy h3 { font-size: 1.22rem; margin: 1.7em 0 .5em; }
.ex-policy h2:first-child, .ex-policy h3:first-child { margin-top: 0; }
.ex-policy p, .ex-policy li { color: var(--muted); }
.ex-policy ul, .ex-policy ol { padding-left: 1.3em; display: grid; gap: 9px; margin: 0 0 1.3rem; }
.ex-policy a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- footer ---------- */
.ex-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: clamp(52px, 6vw, 76px) 0 34px;
}
.ex-footer-grid {
  display: grid;
  /* The business column carries a long street line, so it gets extra width. */
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(24px, 3.2vw, 42px);
}
.ex-footer-brand img { height: 30px; margin-bottom: 18px; }
.ex-footer-about { font-size: .95rem; color: var(--muted); max-width: 34ch; }
.ex-footer h2 {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.ex-footer nav { display: grid; gap: 11px; }
.ex-footer nav a { font-size: .95rem; color: var(--ink-soft); }
.ex-footer nav a:hover { color: var(--green-deep); }
.ex-footer address { font-style: normal; font-size: .93rem; color: var(--muted); line-height: 1.7; }
.ex-footer address a { color: var(--green-deep); }
.ex-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(38px, 5vw, 54px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: var(--muted-2);
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .ex-hero-grid,
  .ex-dark-grid,
  .ex-split,
  .ex-faq-wrap,
  .ex-contact-grid,
  .ex-hero-split { grid-template-columns: minmax(0, 1fr); }
  .ex-split-flip .ex-split-media { order: 0; }
  .ex-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ex-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ex-stats-grid > div:nth-child(odd) { border-left: 0; }
  .ex-stats-grid > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .ex-float-card { left: auto; right: 12px; bottom: -22px; }
}

@media (max-width: 760px) {
  .ex-menu-toggle { display: inline-flex; }
  .ex-nav { min-height: 64px; gap: 12px; }
  .ex-nav-actions { display: none; }
  .ex-menu {
    position: fixed;
    inset: 64px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px var(--pad) 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .ex-menu-open .ex-menu { display: flex; }
  .ex-menu a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .ex-menu a:last-child { border-bottom: 0; }
  .ex-menu > .ex-btn { display: inline-flex; margin-top: 14px; border-bottom: 0; }

  .ex-hero { padding-top: 40px; }
  .ex-float-card { position: static; margin-top: 16px; max-width: none; }
  .ex-panel { padding: 18px; }
  .ex-actions .ex-btn { width: 100%; }
  .ex-footer-grid { grid-template-columns: minmax(0, 1fr); }
  .ex-footer-bottom { flex-direction: column; align-items: flex-start; }
  .ex-steps time { display: none; }
}

@media (max-width: 480px) {
  .ex-stats-grid { grid-template-columns: minmax(0, 1fr); }
  .ex-stats-grid > div { border-left: 0; border-top: 1px solid var(--line); }
  .ex-stats-grid > div:first-child { border-top: 0; }
}

@media print {
  .ex-header, .ex-footer, .ex-cta-section { display: none; }
}

/* ---------- brand lockup ---------- */
.ex-brand { gap: 10px; color: var(--ink); }
.ex-brand:hover { color: var(--ink); }
.ex-brand .ex-mark { width: 30px; height: 30px; flex: none; border-radius: 9px; }
.ex-brand .ex-wordmark {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.038em;
  color: inherit;
  line-height: 1;
}
.ex-footer-brand { margin-bottom: 18px; }
.ex-cta-card .ex-brand, .ex-dark .ex-brand { color: #fff; }

/* ==========================================================================
   Photography
   ========================================================================== */

.ex-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.ex-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ex-media-4x3 { aspect-ratio: 4 / 3; }
.ex-media-3x2 { aspect-ratio: 3 / 2; }
.ex-media-5x4 { aspect-ratio: 5 / 4; }

/* Caption chip floating on an image, same language as the hero panel. */
.ex-media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink);
}
.ex-media-tag svg { color: var(--green-deep); flex: none; }

/* Two overlapping frames — used on the About page. */
.ex-photo-stack {
  position: relative;
  padding-bottom: 58px;
  padding-right: 46px;
}
.ex-photo-stack .ex-media-back { aspect-ratio: 5 / 4; }
.ex-photo-stack .ex-media-front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 4 / 3;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

/* Process cards lead with an image. */
.ex-process article.ex-has-photo { padding: 0; overflow: hidden; }
.ex-process .ex-process-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.ex-process .ex-process-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ex-process .ex-process-body { padding: 26px; position: relative; }
.ex-process article.ex-has-photo > .ex-process-body > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  background: var(--green-deep);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 16px;
  margin-top: -45px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* Texture behind the dark band — kept faint so type stays legible. */
.ex-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/photos/dark-desk.jpg") center/cover no-repeat;
  opacity: .10;
  filter: grayscale(.4);
  pointer-events: none;
}
.ex-dark > .ex-shell { position: relative; z-index: 1; }

/* Services page hero gets an image alongside the copy. */
.ex-page-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
.ex-page-hero-media .ex-media { box-shadow: var(--shadow-lg); }

@media (max-width: 1000px) {
  .ex-page-hero-media { grid-template-columns: minmax(0, 1fr); }
  .ex-photo-stack { padding-bottom: 0; padding-right: 0; }
  .ex-photo-stack .ex-media-front { position: static; width: 100%; margin-top: 16px; border-width: 0; }
}
