/* ==========================================================================
   Retailaer Redesign — Julia Reichel May 2026
   Additive component styles for feature/redesign branch
   ========================================================================== */

/* ---------- SHARED SECTION BASE ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 18px;
}
section { padding: 104px 0; }
section.compact { padding: 64px 0; }

/* ---------- HERO (redesign) ---------- */
.hero-section {
  padding: 120px 0 90px;
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}
.hero-section .container {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}
.hero-content h1.hero-title {
  font-size: clamp(46px, 5.4vw, 72px);
  color: var(--teal);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-content h1.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-content p.hero-subtitle {
  font-size: 21px;
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-note {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.45;
  color: var(--teal);
}
.hero-note strong { color: var(--gold); font-weight: 600; }

/* Hero visual phone stack */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
}
.phone-stack {
  --phone-width: 172px;
  --phone-gap: 22px;
  --phone-top-height: 30px;
  --phone-notch-width: 54px;
  --phone-notch-height: 6px;
  --phone-pad-y: 12px;
  --phone-pad-x: 13px;
  --phone-pad-bottom: 18px;
  --phone-body-font: 10.5px;
  --phone-head-font: 11.5px;
  --phone-title-font: 10.5px;
  --phone-sub-font: 9.5px;
  --phone-tag-font: 8.5px;
  --phone-price-font: 11px;
  --phone-button-font: 10px;
  --phone-card-pad-y: 9px;
  --phone-card-pad-x: 10px;
  --phone-card-gap: 8px;
  --phone-row-pad: 6px;
  display: flex;
  gap: var(--phone-gap);
  justify-content: center;
  align-items: flex-end;
  width: min(100%, 660px);
}
.phone {
  width: var(--phone-width);
  border-radius: 26px;
  background: #fff;
  border: 1px solid #E2E9E8;
  box-shadow: 0 24px 60px rgba(28,71,70,.16);
  overflow: hidden;
  flex-shrink: 0;
}
.phone.tall { transform: translateY(-26px); }
.phone-top {
  height: var(--phone-top-height);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-top::after {
  content: "";
  width: var(--phone-notch-width);
  height: var(--phone-notch-height);
  border-radius: 3px;
  background: #E2E9E8;
}
.phone-body {
  padding: var(--phone-pad-y) var(--phone-pad-x) var(--phone-pad-bottom);
  font-size: var(--phone-body-font);
}
.p-head {
  font-weight: 700;
  font-size: var(--phone-head-font);
  color: var(--teal, #2C6362);
  margin-bottom: var(--phone-card-gap);
}
.p-card {
  border: 1px solid #E7ECEB;
  border-radius: 9px;
  padding: var(--phone-card-pad-y) var(--phone-card-pad-x);
  margin-bottom: var(--phone-card-gap);
  background: #fff;
}
.p-card.hl {
  background: var(--teal-soft, #EAF2F2);
  border-color: var(--teal-soft, #EAF2F2);
}
.p-tag {
  display: inline-block;
  font-size: var(--phone-tag-font);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal, #2C6362);
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 5px;
}
.p-tag.gold {
  background: var(--gold, #D9B88F);
  color: #2B2F2F;
}
.p-title {
  font-weight: 600;
  color: var(--teal, #2C6362);
  font-size: var(--phone-title-font);
}
.p-sub {
  color: var(--slate, #787A7A);
  font-size: var(--phone-sub-font);
  margin-top: 2px;
}
.p-price {
  font-weight: 700;
  color: var(--teal, #2C6362);
  margin-top: 5px;
  font-size: var(--phone-price-font);
}
.p-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #EEF2F1;
  padding: var(--phone-row-pad) 0;
  color: var(--slate, #787A7A);
}
.p-row b { color: var(--teal, #2C6362); }
.p-btn {
  margin-top: var(--phone-card-gap);
  background: var(--teal, #2C6362);
  color: #fff;
  text-align: center;
  border-radius: 7px;
  padding: 7px;
  font-weight: 600;
  font-size: var(--phone-button-font);
}
.phone-caption {
  text-align: center;
  font-size: 12px;
  color: var(--slate, #787A7A);
  margin-top: 10px;
}

/* Legacy whitepaper card styles retained for older variants */
.wp-hero-card {
  background: #fff;
  border: 1px solid #E2E9E8;
  border-top: 4px solid var(--gold);
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(28,71,70,.12);
  max-width: 420px;
}
.wp-hero-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.wp-hero-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.wp-hero-card-sub {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 12px;
  font-style: italic;
}
.wp-hero-card-desc {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 18px;
  line-height: 1.55;
}
.wp-hero-card-meta {
  font-size: 12.5px;
  color: #9AABA9;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.wp-hero-card-dot { opacity: .5; }
.wp-hero-card-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.wp-hero-card-cta:hover { color: var(--gold-hover); }

/* ---------- NUMBERS / STATS (dark teal) ---------- */
.numbers-section {
  background: var(--teal-ink);
  color: #fff;
  padding: 88px 0;
}
.numbers-section .eyebrow { color: var(--teal-tint); }
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 14px;
}
.num-item .big {
  font-size: clamp(48px, 4.6vw, 68px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.num-item p {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--teal-tint);
  max-width: 220px;
}
.num-note {
  margin-top: 44px;
  font-size: 12.5px;
  color: var(--teal-tint);
  opacity: .75;
}
@media (max-width: 768px) {
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ---------- WHY/NARRATIVE SECTION ---------- */
.narrative-section {
  background: #fff;
  padding: 104px 0;
}
.narrative-section h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--teal);
  max-width: 760px;
  letter-spacing: -0.02em;
}
.narrative-section .sec-lead {
  font-size: 19px;
  color: var(--slate);
  max-width: 680px;
  margin-top: 20px;
  margin-bottom: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.why-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 38px 34px;
  border-top: 4px solid var(--gold);
}
.why-card .k {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.why-card p { font-size: 16px; color: var(--slate); }
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- PILLARS SECTION ---------- */
.pillars-section {
  background: #fff;
  padding: 64px 0 104px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.pillar-new {
  background: var(--teal-tint);
  border-radius: var(--radius);
  padding: 40px 36px;
  border-top: 4px solid var(--gold);
}
.pillar-new .pn {
  font-weight: 800;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}
.pillar-new .own {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 12px 0 6px;
}
.pillar-new h3 {
  font-size: 25px;
  color: var(--teal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar-new p { font-size: 15.5px; color: var(--slate); }
@media (max-width: 768px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ---------- ECOSYSTEM / PLATFORM DIAGRAM ---------- */
.eco-section {
  background: var(--mist);
  padding: 104px 0;
}
.eco-section h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--teal);
  letter-spacing: -0.02em;
  max-width: 760px;
}
.eco-section .sec-lead {
  font-size: 19px;
  color: var(--slate);
  margin-top: 20px;
  max-width: 680px;
}
.eco-diagram {
  margin-top: 60px;
  background: #fff;
  border: 1px solid #E2E9E8;
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: 0 18px 50px rgba(28,71,70,.08);
}
.eco-core {
  text-align: center;
  margin-bottom: 38px;
}
.eco-core .eco-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.eco-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.eco-box {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border-top: 4px solid var(--gold);
  text-align: left;
  transition: all .18s;
  text-decoration: none;
  display: block;
}
.eco-box:hover {
  background: var(--teal-deep);
  transform: translateY(-4px);
  color: #fff;
}
.eco-box h3 { font-size: 22px; margin-bottom: 8px; color: var(--gold); letter-spacing: -0.01em; }
.eco-box p { font-size: 14px; color: #CDE0DF; }
.eco-base {
  margin-top: 26px;
  text-align: center;
  font-size: 15px;
  color: var(--slate);
}
.eco-base b { color: var(--teal); }
@media (max-width: 900px) {
  .eco-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .eco-row { grid-template-columns: 1fr; }
  .eco-diagram { padding: 32px 24px; }
}

/* ---------- PLAYBOOK / CTA SECTION ---------- */
.playbook-section {
  background: var(--teal);
  color: #fff;
  padding: 104px 0;
}
.pb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 80px;
  align-items: center;
}
.playbook-section .eyebrow { color: var(--teal-soft); }
.playbook-section h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  color: #fff;
  letter-spacing: 0;
  line-height: 1.15;
}
.playbook-section p.lead {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #D3E2E1;
  margin-top: 24px;
  max-width: 720px;
}
.pb-form {
  background: #fff;
  border-radius: 18px;
  padding: 44px;
  color: var(--teal);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.pb-form h3 { font-size: 28px; color: var(--gold); margin-bottom: 8px; letter-spacing: 0; }
.pb-form .sub { font-size: 18px; color: var(--slate); margin-bottom: 28px; }
.pb-form input, .pb-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1.5px solid #DCE4E3;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 14px;
  font-family: inherit;
  color: var(--teal);
  background: #fff;
}
.pb-form input:focus, .pb-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.pb-form button {
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s;
}
.pb-form button:hover { background: var(--gold-hover); }
.pb-form .fine { font-size: 14px; color: #8C9C9A; margin-top: 18px; text-align: center; }
@media (max-width: 1100px) {
  .pb-grid { grid-template-columns: 1fr; gap: 48px; }
  .pb-form { width: 100%; }
}

/* ---------- NEWS / INSIGHTS CARDS ---------- */
.news-section {
  background: #fff;
  padding: 104px 0;
}
.news-section h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--teal);
  letter-spacing: -0.02em;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.news-card-new {
  border: 1px solid #E7ECEB;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 32px;
  background: #fff;
  transition: all .18s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.news-card-new:hover {
  box-shadow: 0 16px 44px rgba(28,71,70,.10);
  transform: translateY(-3px);
  color: inherit;
}
.news-card-new .date {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.news-card-new h3 {
  font-size: 21px;
  color: var(--teal);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.news-card-new p { font-size: 15px; color: var(--slate); }
.news-card-new .read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ---------- HOW IT WORKS (retail fundamentals) ---------- */
.how-it-works {
  background: var(--teal);
  padding: 104px 0;
}
.how-it-works .section-header h2,
.how-it-works h2.text-white { color: #fff !important; }
.how-it-works .section-subtitle { color: #CDE0DF !important; }
.how-it-works .card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.how-it-works .card .card-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.how-it-works .card .card-title { color: #fff; }
.how-it-works .card .card-text { color: rgba(255,255,255,.8); }

/* ---------- NAV LINK COLORS (override themes.css !important) ---------- */
.navbar-nav a,
.navbar-nav a:link,
.navbar-nav a:visited {
  color: var(--slate) !important;
  border-bottom-color: transparent !important;
}
.navbar-nav a:hover {
  color: var(--teal) !important;
  border-bottom-color: var(--teal) !important;
}
.navbar-nav a.is-active:not(.btn),
.navbar-nav a[aria-current="page"]:not(.btn) {
  color: var(--teal) !important;
  border-bottom-color: var(--teal) !important;
  background: none !important;
}
.navbar-nav .btn,
.navbar-nav .btn:link,
.navbar-nav .btn:visited,
.navbar-nav a.btn {
  color: #fff !important;
  background: var(--teal) !important;
  border-color: var(--teal) !important;
}
.navbar-nav .btn:hover,
.navbar-nav a.btn:hover {
  background: var(--teal-deep) !important;
  border-color: var(--teal-deep) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    background: rgba(44, 99, 98, 0.08) !important;
  }

  .mobile-menu-toggle span {
    background-color: var(--teal, #2C6362) !important;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle.active {
    background: rgba(44, 99, 98, 0.14) !important;
  }

  .mobile-menu-toggle:hover span,
  .mobile-menu-toggle.active span {
    background-color: var(--teal, #2C6362) !important;
  }
}

/* ---------- GLOBAL BUTTONS (redesign) ---------- */
.btn { font-family: inherit; }
.btn-primary {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  transition: all .18s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  transition: all .18s ease;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--teal-tint); }
.btn-light {
  background: #fff;
  color: var(--teal);
  border: 2px solid #fff;
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  transition: all .18s ease;
  text-decoration: none;
}
.btn-light:hover { transform: translateY(-1px); color: var(--teal); }

/* ---------- PARTNERS STRIP ---------- */
.partners-strip {
  padding: 56px 0;
  border-top: 1px solid #ECF1F0;
  background: #fff;
}
.partners-strip .wrap {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.partners-strip .lbl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.plogo {
  font-size: 20px;
  color: #9AABA9;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- SECTION NAV (centered CTA) ---------- */
.section-nav { margin-top: 48px; display: flex; gap: 16px; }
.section-nav.centered-nav { justify-content: center; }

/* ---------- GOLD UTILITIES ---------- */
.gold-em { font-style: normal; color: var(--gold, #D9B88F); }
.gold-h2 { color: var(--gold, #D9B88F) !important; }
.num-pct { font-size: 0.6em; }

/* ---------- THREE PILLARS ---------- */
.pillars-section { background: #fff; padding: 104px 0; }
.pillars-section h2 { font-size: clamp(34px, 3.6vw, 48px); color: var(--teal); max-width: 760px; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.pillar-card { background: var(--teal-soft, #EAF2F2); border-radius: var(--radius, 12px); padding: 40px 36px; border-top: 4px solid var(--gold, #D9B88F); display: flex; flex-direction: column; }
.pillar-n { font-weight: 800; font-size: 46px; color: var(--gold, #D9B88F); line-height: 1; }
.pillar-own { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal, #2C6362); margin: 12px 0 6px; }
.pillar-card h3 { font-size: 22px; color: var(--teal, #2C6362); margin-bottom: 12px; }
.pillar-card p { font-size: 15.5px; color: var(--slate, #787A7A); line-height: 1.65; }
.pillar-note { display: block; margin-top: auto; padding-top: 20px; font-size: 13px; font-weight: 700; letter-spacing: .05em; color: var(--slate, #787A7A); }

/* ---------- PARTNERS STRIP ---------- */
.partners-strip { background: #fff; border-top: 1px solid #E7ECEB; border-bottom: 1px solid #E7ECEB; padding: 56px 0; }
.partners-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.partners-lbl { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate, #787A7A); }
.partners-logo { font-size: 20px; color: #9AABA9; font-weight: 600; letter-spacing: 0; }

/* ---------- PLAYBOOK FORM ---------- */
.pb-form-error { font-size: 0.9rem; color: #c0392b; min-height: 1.2em; margin-bottom: 0.5rem; }
.pb-form button:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- INSIGHT FEATURE CARDS (Insights page) ---------- */
.insight-feature-section { padding-bottom: 0; }
.insight-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.if-card { background: var(--teal, #2C6362); border-radius: 18px; padding: 50px 46px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; border-top: 5px solid var(--gold, #D9B88F); }
.if-card .tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold, #D9B88F); margin-bottom: 18px; }
.if-card h3 { font-size: 32px; color: #fff; margin-bottom: 14px; }
.if-card p { font-size: 16px; color: #C5D8D7; max-width: 420px; line-height: 1.6; }
.if-card .btn { margin-top: 30px; align-self: flex-start; background: var(--gold, #D9B88F); border-color: var(--gold, #D9B88F); color: #fff; }

/* ---------- EVENT LIST (Contact/Meet us page) ---------- */
.event-list { display: flex; flex-direction: column; gap: 16px; }
.event { display: flex; gap: 20px; align-items: flex-start; padding: 16px; background: var(--teal-tint, #EAF2F2); border-radius: 10px; }
.ed { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal, #2C6362); white-space: nowrap; min-width: 72px; padding-top: 2px; }
.event h4 { font-size: 15px; font-weight: 700; color: var(--teal, #2C6362); margin: 0 0 2px; }
.event p { font-size: 13.5px; color: var(--slate, #787A7A); margin: 0; }

/* ---------- TEAM GRID (Company page) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.tcard { background: var(--teal-tint, #EAF2F2); border-radius: var(--radius, 12px); padding: 32px; }
.tcard .avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin-bottom: 16px; background: var(--teal-soft, #EAF2F2); }
.tcard .avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard h4 { font-size: 17px; font-weight: 700; color: var(--teal, #2C6362); margin: 0 0 4px; }
.tcard .role { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold, #D9B88F); margin-bottom: 12px; }
.tcard .bio-text { font-size: 13.5px; color: var(--slate, #787A7A); line-height: 1.6; margin-bottom: 16px; }
.tcard .li { font-size: 13px; font-weight: 600; color: var(--teal, #2C6362); text-decoration: none; border-bottom: 1px solid currentColor; }
.sec-title { font-size: clamp(28px, 3vw, 40px); color: var(--teal, #2C6362); margin-top: 12px; margin-bottom: 0; }

/* ---------- SOLUTIONS PAGE ---------- */
.sol-hero { padding: 96px 0 72px; background: linear-gradient(180deg, #fff 0%, var(--mist, #EAF2F2) 100%); }
.sol-hero h1 { font-size: clamp(40px, 4.6vw, 60px); max-width: 840px; margin-bottom: 20px; }
.sol-hero .sec-lead { font-size: 20px; max-width: 800px; }
.mod-section { padding: 84px 0; border-top: 1px solid #EEF2F1; }
.mod-section.alt { background: var(--mist, #EAF2F2); border-top: none; }
.mod-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: 14px; }
.mod-head .n { font-size: 18px; color: #fff; background: var(--gold, #D9B88F); width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transform: translateY(6px); font-weight: 700; }
.mod-head h2 { font-size: clamp(32px, 3.4vw, 44px); color: var(--teal, #2C6362); }
.mod-sub { font-size: 18px; color: var(--slate, #787A7A); max-width: 700px; margin-bottom: 48px; }
.mod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.mod-card { background: #fff; border: 1px solid #E5EBEA; border-top: 4px solid var(--gold, #D9B88F); border-radius: var(--radius, 14px); padding: 36px 34px; }
.mod-card h3 { font-weight: 700; font-size: 21px; color: var(--teal, #2C6362); margin-bottom: 12px; }
.mod-card p { font-size: 15.5px; color: var(--slate, #787A7A); line-height: 1.65; }
.mod-card .outcome { display: inline-block; margin-top: 18px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #B98A4D; background: #F7EEDF; border-radius: 6px; padding: 6px 12px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .hero-section .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual {
    display: flex !important;
    justify-content: center;
    margin: -10px auto 0;
    width: 100%;
    max-width: 760px;
  }
  .phone-stack {
    --phone-width: clamp(142px, 17vw, 172px);
    --phone-gap: clamp(14px, 2vw, 22px);
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Global section padding */
  section { padding: 72px 0; }

  /* Hero */
  .hero-section { padding: 80px 0 56px; overflow: hidden; }
  .hero-section .container { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual {
    display: flex !important;
    margin: 6px auto 0;
    max-width: 100%;
    overflow: visible;
  }
  .phone-stack {
    --phone-width: clamp(90px, 28vw, 128px);
    --phone-gap: clamp(7px, 2vw, 12px);
    --phone-top-height: clamp(18px, 5vw, 24px);
    --phone-notch-width: clamp(30px, 10vw, 42px);
    --phone-notch-height: 5px;
    --phone-pad-y: clamp(7px, 2vw, 10px);
    --phone-pad-x: clamp(7px, 2vw, 10px);
    --phone-pad-bottom: clamp(10px, 3vw, 14px);
    --phone-body-font: clamp(7.4px, 2.1vw, 9.5px);
    --phone-head-font: clamp(8px, 2.3vw, 10px);
    --phone-title-font: clamp(7.8px, 2.2vw, 9.5px);
    --phone-sub-font: clamp(7px, 2vw, 8.5px);
    --phone-tag-font: clamp(6.4px, 1.8vw, 7.5px);
    --phone-price-font: clamp(8px, 2.2vw, 9.5px);
    --phone-button-font: clamp(7px, 2vw, 8.5px);
    --phone-card-pad-y: clamp(6px, 1.8vw, 8px);
    --phone-card-pad-x: clamp(6px, 1.8vw, 8px);
    --phone-card-gap: clamp(5px, 1.6vw, 7px);
    --phone-row-pad: clamp(4px, 1.4vw, 5px);
    width: 100%;
    max-width: 100%;
  }
  .phone {
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(28,71,70,.14);
  }
  .phone.tall { transform: translateY(-14px); }
  .phone-caption {
    max-width: 320px;
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.4;
  }
  .hero-content h1.hero-title { font-size: clamp(30px, 8vw, 44px); }
  .hero-content p.hero-subtitle { font-size: 16px; max-width: 100%; }
  .hero-cta { flex-direction: column; gap: 12px; width: 100%; }
  .hero-cta .btn { width: 100%; text-align: center; box-sizing: border-box; }
  .hero-note { font-size: 16px; }

  /* Layout grids */
  .pillar-grid, .pillar-loop { grid-template-columns: 1fr; }
  .insight-feature-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .eco-row { grid-template-columns: 1fr 1fr; }
  .pb-grid { grid-template-columns: 1fr; gap: 40px; }
  .meet-grid { grid-template-columns: 1fr; }
  .news-grid-insights { grid-template-columns: 1fr; }
  .team-grid-5 { grid-template-columns: repeat(2, 1fr); }

  /* Partners */
  .partners-strip .wrap { flex-wrap: wrap; gap: 18px; }

  /* News cards */
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-cta .btn {
    font-size: 15px;
    padding: 14px 16px;
  }
}
