:root {
  color-scheme: light;
  --ink: #1f2930;
  --muted: #425f6b;
  --soft: #2c4650;
  --paper: #f7f4ee;
  --bg: #f7f4ee;
  --panel: #ffffff;
  --panel-2: #dfe9ee;
  --line: rgba(45, 78, 91, 0.28);
  --blue: #2f5061;
  --blue-2: #456b7a;
  --navy: #213f4e;
  --silver: #dfe9ee;
  --green: #7f9b8a;
  --green-2: #dce8df;
  --shadow: 0 18px 42px rgba(33, 63, 78, 0.2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(246, 242, 234, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 66px;
  padding: 10px clamp(18px, 4vw, 48px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #ffffff, var(--silver));
  border: 1px solid rgba(47, 111, 125, 0.24);
  border-radius: 6px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

.nav-links {
  align-items: center;
  color: var(--soft);
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  color: var(--green);
  opacity: 1;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.language-switcher {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  padding: 4px;
}

.language-switcher button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  min-height: 32px;
  padding: 0 10px;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--blue);
  color: #ffffff;
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0 16px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 22px rgba(49, 79, 93, 0.16);
  color: #ffffff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  color: var(--navy);
}

.header-cta:hover,
.button:hover {
  box-shadow: 0 14px 28px rgba(49, 79, 93, 0.18);
  transform: translateY(-1px);
}

.hero {
  min-height: 520px;
  overflow: hidden;
  padding: 82px clamp(18px, 5vw, 72px) 24px;
  position: relative;
}

.hero-bg {
  background-image: url("assets/hero-truck-daytime.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.16) brightness(1.05);
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.86) 0%, rgba(251, 250, 246, 0.62) 35%, rgba(251, 250, 246, 0.05) 62%, rgba(251, 250, 246, 0) 100%),
    linear-gradient(180deg, rgba(236, 243, 241, 0) 0%, rgba(251, 250, 246, 0.12) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.hero-brand-lockup {
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(47, 111, 125, 0.16);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(39, 65, 70, 0.08);
  display: inline-flex;
  gap: 14px;
  margin-bottom: 14px;
  padding: 7px 14px 7px 7px;
}

.brand-monogram {
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #eaf2f8);
  border: 1px solid rgba(47, 111, 125, 0.26);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(183, 200, 211, 0.9);
  color: var(--navy);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 950;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 48px;
}

.hero-brand-lockup div {
  display: grid;
  gap: 3px;
}

.hero-brand-lockup strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.hero-brand-lockup small {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.65vw, 2.6rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 12px;
  max-width: 680px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.65vw, 2.6rem);
  line-height: 1;
  margin-bottom: 14px;
}

h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  margin-bottom: 0;
}

h4 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.hero-copy,
.hero-copy-es,
.intro-grid p,
.dispatcher-grid p,
.contact-grid p {
  color: var(--soft);
  font-size: clamp(0.95rem, 1.3vw, 1.06rem);
  line-height: 1.55;
}

.hero-copy {
  max-width: 500px;
}

.hero-promise {
  border-left: 4px solid var(--blue);
  margin: 0 0 14px;
  max-width: 640px;
  padding-left: 18px;
}

.hero-promise p {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.25vw, 2.2rem);
  font-weight: 900;
  line-height: 0.98;
  margin: 0 0 7px;
}

.hero-promise span {
  color: var(--navy);
  display: block;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 950;
  line-height: 1.2;
}

.hero-copy-es {
  color: #1f4e79;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 800;
  line-height: 1.55;
  margin: -10px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 16px;
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 580px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.hero-stats dt {
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 4px 0 0;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 54px clamp(18px, 4vw, 40px);
}

.intro-section {
  background: var(--panel);
  color: var(--ink);
}

.who-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(127, 155, 138, 0.28), transparent 34%),
    linear-gradient(180deg, #dfe9ee 0%, #dce8df 100%);
  border-top: 1px solid rgba(47, 80, 97, 0.24);
}

.who-section[hidden] {
  display: none;
}

.why-strip-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.why-strip {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.38fr) 1fr;
  padding-bottom: 24px;
  padding-top: 24px;
}

.why-strip h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.05;
  margin: 0;
}

.why-strip-points {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-strip-points span {
  background: #eaf2f8;
  border: 1px solid rgba(31, 78, 121, 0.22);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 36px;
  padding: 9px 12px;
  text-align: center;
}

.who-layout {
  display: block;
}

.who-section .section-inner {
  padding-bottom: 44px;
  padding-top: 44px;
}

.founder-portrait {
  flex: 0 0 auto;
  margin: 0;
  position: relative;
}

.founder-portrait::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.66), transparent 34%),
    linear-gradient(135deg, rgba(47, 80, 97, 0.32), rgba(126, 155, 142, 0.36));
  border-radius: 999px;
  content: "";
  inset: 8px -7px -7px 9px;
  position: absolute;
}

.founder-portrait img {
  aspect-ratio: 1 / 1;
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 20px 38px rgba(31, 78, 121, 0.26);
  display: block;
  object-fit: cover;
  position: relative;
  width: clamp(92px, 13vw, 138px);
}

.who-story {
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 233, 238, 0.9), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(47, 80, 97, 0.3);
  border-radius: 28px 10px 28px 10px;
  box-shadow: 0 28px 62px rgba(33, 63, 78, 0.22);
  margin-inline: auto;
  max-width: 1040px;
  padding: clamp(18px, 3vw, 32px);
}

.who-intro {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 30px);
  margin-bottom: clamp(14px, 2vw, 20px);
}

.who-story p,
.approach-panel p {
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.56;
}

.who-story p {
  margin-bottom: 10px;
  max-width: 780px;
}

.who-blocks {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
}

.who-storylet {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(47, 80, 97, 0.24);
  border-radius: 22px 12px 22px 12px;
  box-shadow: 0 18px 42px rgba(33, 63, 78, 0.2);
  padding: 22px 18px 18px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.who-storylet:nth-child(2) {
  transform: translateY(16px);
}

.who-storylet:hover {
  border-color: rgba(126, 155, 142, 0.55);
  box-shadow: 0 24px 52px rgba(33, 63, 78, 0.2);
  transform: translateY(-3px);
}

.who-storylet:nth-child(2):hover {
  transform: translateY(10px);
}

.who-storylet::before {
  align-items: center;
  background: linear-gradient(135deg, #2f5061, #7e9b8e);
  border-radius: 12px;
  color: #ffffff;
  content: "EX";
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  margin-bottom: 14px;
  width: 34px;
}

.who-storylet:nth-child(2)::before {
  content: "BK";
}

.who-storylet:nth-child(3)::before {
  content: "CR";
}

.who-storylet span {
  color: var(--navy);
  display: block;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.who-storylet p {
  margin: 0;
}

.who-highlight {
  background: linear-gradient(135deg, #ffffff, rgba(234, 242, 248, 0.92));
  border: 1px solid rgba(31, 78, 121, 0.24);
  border-radius: 26px 10px 26px 10px;
  box-shadow: 0 18px 40px rgba(31, 78, 121, 0.16);
  margin: 36px 0 0 auto;
  max-width: 780px;
  padding: 20px 22px;
}

.who-highlight p {
  color: var(--navy);
  font-weight: 650;
  margin-bottom: 8px;
}

.who-highlight p:first-child,
.who-highlight p:last-child {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 850;
  line-height: 1.12;
}

.who-highlight p:last-child {
  margin-bottom: 0;
}

.brand-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.brand-pillars span {
  background: #eaf2f8;
  border: 1px solid rgba(31, 78, 121, 0.28);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 13px;
}

.who-closing {
  color: var(--navy) !important;
  font-weight: 900;
}

.brand-guarantee {
  background: linear-gradient(135deg, rgba(31, 78, 121, 0.08), rgba(234, 242, 248, 0.28));
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--ink) !important;
  font-weight: 850;
  margin-top: 20px;
  padding: 14px 16px;
}

.orientation-button {
  margin-top: 8px;
}

.testimonials-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(127, 155, 138, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #dfe9ee 52%, #f7f4ee 100%);
  border-top: 1px solid rgba(47, 80, 97, 0.22);
}

.testimonial-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.testimonial-card {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(47, 80, 97, 0.28);
  border-radius: 24px 10px 24px 10px;
  box-shadow: 0 24px 54px rgba(33, 63, 78, 0.2);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:nth-child(2) {
  transform: translateY(22px);
}

.testimonial-card:hover {
  box-shadow: 0 28px 58px rgba(33, 63, 78, 0.22);
  transform: translateY(-4px);
}

.testimonial-card:nth-child(2):hover {
  transform: translateY(14px);
}

.testimonial-card::before {
  background: linear-gradient(90deg, #2f5061, #7e9b8e);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.testimonial-card::after {
  color: rgba(47, 80, 97, 0.18);
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 14px;
}

.testimonial-card p {
  color: #263d47;
  font-size: 0.96rem;
  line-height: 1.58;
  margin: 0;
}

.testimonial-card p::first-line {
  color: var(--navy);
  font-weight: 900;
}

.testimonial-card footer {
  border-top: 1px solid rgba(31, 78, 121, 0.24);
  display: grid;
  gap: 3px;
  padding-top: 14px;
}

.testimonial-card strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.who-spanish {
  color: var(--green);
  font-weight: 850;
}

.approach-panel {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 42px);
}

.approach-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.55vw, 2.3rem);
  line-height: 1.04;
  margin-bottom: 24px;
}

.approach-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.approach-list li {
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
}

.approach-list span {
  align-items: center;
  border: 1px solid rgba(47, 111, 125, 0.2);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.approach-list strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.approach-list p {
  font-size: 0.96rem;
  margin: 0;
}

.mission-editorial {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 42px;
}

.mission-editorial article {
  display: grid;
  gap: 12px;
}

.mission-editorial span {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-editorial p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.15vw, 1.9rem);
  line-height: 1.16;
  margin: 0;
}

.intro-grid,
.contact-grid,
.dispatcher-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.intro-section .eyebrow {
  color: var(--blue);
}

.intro-grid p {
  color: var(--soft);
}

.services-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, rgba(234, 242, 248, 0.76) 54%, #ffffff 100%);
}

.section-heading {
  max-width: 800px;
}

.section-heading.centered {
  margin: 0 auto 42px;
  max-width: 820px;
  text-align: center;
}

.section-heading.centered p:not(.eyebrow) {
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 720px;
}

.category-block {
  border-top: 1px solid rgba(31, 78, 121, 0.32);
  margin-top: 42px;
  padding-top: 30px;
}

.category-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.category-heading span {
  align-items: center;
  background: #eaf2f8;
  border: 1px solid rgba(31, 78, 121, 0.38);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(31, 78, 121, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 78, 121, 0.19);
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(31, 78, 121, 0.48);
  box-shadow: 0 24px 46px rgba(31, 78, 121, 0.24);
  transform: translateY(-2px);
}

.service-icon {
  align-items: center;
  background: linear-gradient(135deg, #eaf2f8, #ffffff);
  border: 1px solid rgba(31, 78, 121, 0.48);
  border-radius: 6px;
  color: #1f4e79;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 12px;
  min-width: 34px;
  padding: 0 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.service-card h3 {
  color: var(--navy);
  font-weight: 950;
}

.service-card-wide {
  grid-column: span 2;
}

.service-details {
  font-size: 0.86rem;
}

.service-price {
  color: var(--navy) !important;
  font-weight: 950;
}

.service-disclaimer {
  color: var(--soft) !important;
  font-size: 0.78rem !important;
}

.text-button {
  background: transparent;
  border: 0;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  margin-top: auto;
  padding: 0;
  text-align: left;
}

.text-button:hover {
  color: var(--navy);
}

.how-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.how-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.how-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.how-grid span {
  align-items: center;
  background: #eaf2f8;
  border: 1px solid rgba(31, 78, 121, 0.26);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  margin-bottom: 16px;
  width: 38px;
}

.how-grid h3 {
  color: var(--navy);
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  line-height: 1.15;
}

.trust-section {
  background:
    linear-gradient(135deg, #1f4e79 0%, #1f4e79 72%, #2c5f7a 100%);
  color: #ffffff;
}

.trust-section .section-inner {
  padding-bottom: 32px;
  padding-top: 32px;
}

.trust-editorial {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.trust-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.trust-section h2,
.trust-section h3 {
  color: #ffffff;
}

.trust-section .eyebrow {
  color: #eaf2f8;
}

.trust-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 18px 12px 0;
}

.trust-icon {
  align-items: center;
  background: rgba(234, 242, 248, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #eaf2f8;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  height: 32px;
  justify-content: center;
  margin-bottom: 8px;
  min-width: 32px;
  padding: 0 10px;
}

.trust-card h3 {
  font-size: 0.94rem;
  margin-bottom: 5px;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  line-height: 1.38;
  margin-bottom: 0;
}

.dispatcher-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(127, 155, 138, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(33, 63, 78, 0.98), rgba(47, 80, 97, 0.95)),
    linear-gradient(90deg, #213f4e, #456b7a);
  color: #ffffff;
}

.dispatcher-section p,
.dispatcher-section .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.dispatcher-section h2 {
  color: #ffffff;
}

.dispatcher-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dispatcher-grid .button {
  justify-self: end;
  min-height: 46px;
}

.course-grid {
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
}

.course-copy {
  display: grid;
  gap: 14px;
}

.course-meta,
.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-meta span {
  background: rgba(234, 242, 248, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 950;
  padding: 9px 13px;
}

.course-details {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
}

.course-details > div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px 8px 18px 8px;
  box-shadow: 0 18px 42px rgba(12, 32, 41, 0.16);
  padding: 18px;
}

.course-details h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 12px;
}

.course-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-details li {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 10px;
  grid-template-columns: auto 1fr;
  line-height: 1.35;
  padding: 8px 0;
}

.course-details li::before {
  align-items: center;
  background: rgba(127, 155, 138, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  content: "✓";
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  height: 20px;
  justify-content: center;
  margin-top: -1px;
  width: 20px;
}

.faq-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(39, 65, 70, 0.06);
  overflow: hidden;
}

.faq-list summary {
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  gap: 18px;
  font-weight: 950;
  justify-content: space-between;
  line-height: 1.35;
  list-style: none;
  padding: 16px 18px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  align-items: center;
  background: #eaf2f8;
  border: 1px solid rgba(78, 115, 133, 0.18);
  border-radius: 999px;
  color: var(--blue);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1rem;
  height: 28px;
  justify-content: center;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 28px;
}

.faq-list details[open] summary::after {
  background: var(--blue);
  color: #ffffff;
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
  overflow: hidden;
  padding: 0 18px;
}

.faq-list details[open] .faq-answer p {
  padding-bottom: 16px;
}

.appointment-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eaf2f8 100%);
  border-top: 1px solid var(--line);
}

.appointment-layout {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.appointment-copy h3 {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  line-height: 1.05;
  margin: -8px 0 20px;
}

.appointment-copy p {
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.appointment-options {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.calendly-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.calendly-options a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 950;
  padding: 9px 13px;
}

.calendly-options a:hover {
  background: #eaf2f8;
}

.option-button {
  align-items: center;
  background: transparent;
  border-top: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  font: inherit;
  font-weight: 950;
  gap: 2px;
  grid-template-columns: auto 1fr;
  padding: 12px 0;
  text-align: left;
  width: 100%;
}

.option-button span {
  align-items: center;
  background: #eaf2f8;
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 0.78rem;
  height: 34px;
  justify-content: center;
  margin-right: 12px;
  width: 34px;
}

.option-button small {
  color: var(--muted);
  font-weight: 800;
  grid-column: 2;
}

.integration-note,
.appointment-note {
  background: #eaf2f8;
  border: 1px solid rgba(78, 115, 133, 0.18);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
  padding: 12px;
}

.appointment-form {
  background: rgba(255, 255, 255, 0.62);
  border-left: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: clamp(16px, 3vw, 24px) 0 clamp(16px, 3vw, 24px) clamp(20px, 3vw, 34px);
}

.form-heading {
  display: grid;
  gap: 6px;
}

.form-heading span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wide-field {
  grid-column: 1 / -1;
}

.appointment-note {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.contact-section {
  background: var(--panel);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-methods a {
  color: var(--blue);
  font-weight: 800;
}

.contact-reassurance {
  background: #eaf2f8;
  border: 1px solid rgba(78, 115, 133, 0.18);
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  margin: 18px 0 0;
  padding: 12px;
}

.form-confirmation,
.form-error {
  background: #eaf2f8;
  border: 1px solid rgba(47, 111, 125, 0.13);
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.5;
  margin: 0;
  padding: 12px;
}

.form-error {
  background: #ffffff;
  border-color: rgba(78, 115, 133, 0.22);
}

.contact-form {
  background: transparent;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding: 0 0 0 clamp(20px, 3vw, 34px);
}

.spam-field {
  height: 0;
  left: -9999px;
  opacity: 0;
  position: absolute;
  width: 0;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

label {
  color: var(--soft);
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 6px;
}

input,
select,
textarea {
  background: #ffffff;
  border: 1px solid rgba(78, 115, 133, 0.18);
  border-radius: 6px;
  color: var(--ink);
  min-height: 42px;
  outline: 0;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(111, 157, 170, 0.18);
}

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px clamp(18px, 4vw, 56px);
}

.footer-grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.footer-grid > div {
  min-width: 0;
}

.site-footer h3 {
  color: var(--navy);
  font-size: 0.86rem;
  margin: 0 0 14px;
}

.site-footer p,
.site-footer a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer a {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-brand p:first-child {
  color: var(--ink);
  font-weight: 900;
}

.footer-brand p + p {
  margin-top: 8px;
  max-width: 320px;
}

.support-launcher {
  bottom: 22px;
  display: grid;
  gap: 10px;
  justify-items: end;
  position: fixed;
  right: 22px;
  z-index: 50;
}

.floating-whatsapp {
  align-items: center;
  background: linear-gradient(135deg, #1f4e79, #1f4e79);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  bottom: 86px;
  box-shadow: 0 14px 30px rgba(31, 78, 54, 0.22);
  color: #ffffff;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 950;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  position: fixed;
  right: 22px;
  z-index: 49;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 34px rgba(31, 78, 54, 0.28);
  transform: translateY(-1px);
}

.support-toggle {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(47, 111, 125, 0.22);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}

.support-menu {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(39, 65, 70, 0.14);
  display: grid;
  min-width: 240px;
  overflow: hidden;
}

.support-menu[hidden] {
  display: none;
}

.support-menu a,
.support-menu-action {
  background: transparent;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 14px 16px;
  text-align: left;
}

.support-menu a + a,
.support-menu a + .support-menu-action,
.support-menu-action + a {
  border-top: 1px solid var(--line);
}

.support-menu a:hover,
.support-menu-action:hover {
  background: #eaf2f8;
}

.support-copy-status {
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0;
  padding: 10px 16px;
}

.support-copy-status[hidden] {
  display: none;
}

.chat-panel-backdrop {
  align-items: center;
  background: rgba(25, 48, 55, 0.28);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 70;
}

.chat-panel-backdrop[hidden] {
  display: none;
}

.chat-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(39, 65, 70, 0.18);
  display: grid;
  gap: 12px;
  max-width: 420px;
  padding: 28px;
  position: relative;
  width: min(100%, 420px);
}

.chat-panel a,
.chat-panel p {
  color: var(--navy);
  font-weight: 850;
  margin: 0;
  overflow-wrap: anywhere;
}

.chat-panel a:hover {
  color: var(--blue);
}

.chat-panel-close {
  align-items: center;
  background: #eaf2f8;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.1rem;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 32px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-links {
    display: none;
  }

  .service-grid,
  .service-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid,
  .why-strip-points,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .contact-grid,
  .dispatcher-grid,
  .course-grid,
  .appointment-layout,
  .why-strip,
  .who-layout,
  .mission-editorial,
  .trust-editorial,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .course-details {
    grid-template-columns: 1fr;
  }

  .dispatcher-grid .button {
    justify-self: start;
  }

  .hero {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-bottom: 120px;
  }

  body {
    padding-bottom: 112px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .header-cta {
    width: 100%;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }

  .language-switcher {
    justify-content: center;
    width: 100%;
  }

  .language-switcher button {
    flex: 1;
  }

  .hero {
    min-height: 560px;
    padding: 130px 24px 34px;
  }

  .hero-bg {
    background-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.88), rgba(251, 250, 246, 0.5)),
      linear-gradient(180deg, rgba(251, 250, 246, 0.02), rgba(251, 250, 246, 0.64));
  }

  h1 {
    font-size: 1.48rem;
    line-height: 1.08;
    max-width: 100%;
  }

  h2 {
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .hero-content {
    max-width: 350px;
  }

  .hero-brand-lockup {
    align-items: flex-start;
    border-radius: 14px;
    width: 100%;
  }

  .brand-monogram {
    flex: 0 0 auto;
  }

  .hero-brand-lockup strong {
    font-size: 0.9rem;
  }

  .hero-copy,
  .hero-copy-es {
    font-size: 0.86rem;
    line-height: 1.42;
    max-width: 100%;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-actions {
    gap: 9px;
    margin: 12px 0 14px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 14px;
  }

  .who-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-portrait img {
    width: 96px;
  }

  .who-blocks {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .who-story {
    border-radius: 22px 8px 22px 8px;
  }

  .who-storylet {
    padding: 15px;
  }

  .who-storylet:nth-child(2),
  .who-storylet:nth-child(3) {
    transform: none;
  }

  .who-storylet:hover,
  .who-storylet:nth-child(2):hover {
    transform: none;
  }

  .who-highlight {
    border-radius: 22px 8px 22px 8px;
    margin-top: 16px;
    padding: 16px;
  }

  .hero-stats {
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div {
    padding: 8px 6px;
  }

  .hero-stats dt {
    font-size: 0.86rem;
  }

  .hero-stats dd {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .section-inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .category-heading {
    align-items: flex-start;
  }

  .service-grid,
  .service-grid.compact,
  .how-grid,
  .why-strip,
  .why-strip-points,
  .testimonial-grid,
  .trust-grid,
  .mission-editorial,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:nth-child(2),
  .testimonial-card:hover,
  .testimonial-card:nth-child(2):hover {
    transform: none;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .approach-panel,
  .appointment-form,
  .contact-form {
    border-left: 0;
    padding-left: 0;
  }

  .trust-card {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .wide-field {
    grid-column: auto;
  }

  .support-launcher {
    bottom: 12px;
    left: auto;
    right: 14px;
  }

  .floating-whatsapp {
    bottom: 62px;
    font-size: 0.78rem;
    min-height: 38px;
    padding: 0 12px;
    right: 14px;
  }

  .support-toggle {
    font-size: 0.78rem;
    min-height: 40px;
    padding: 0 14px;
    width: auto;
  }

  .support-menu {
    justify-self: end;
    max-width: calc(100vw - 28px);
    min-width: 210px;
    width: auto;
  }

  .service-card {
    min-height: 168px;
  }

  .site-footer {
    padding-bottom: 118px;
  }
}

/* Final UX visual refresh: slate blue + sage authority layer */
body {
  background:
    linear-gradient(180deg, #f7f4ee 0%, #eef3f2 42%, #f7f4ee 100%);
}

.intro-section,
.how-section,
.appointment-section,
.contact-section,
.faq-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f4ee 100%);
}

.services-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(127, 155, 138, 0.18), transparent 26%),
    linear-gradient(180deg, #f7f4ee 0%, #e7eff1 48%, #f7f4ee 100%);
}

.who-section {
  background:
    radial-gradient(circle at 13% 14%, rgba(255, 255, 255, 0.68), transparent 26%),
    radial-gradient(circle at 90% 78%, rgba(127, 155, 138, 0.34), transparent 34%),
    linear-gradient(135deg, #dbe7ed 0%, #dbe8df 100%);
  border-top: 1px solid rgba(47, 80, 97, 0.32);
}

.who-story {
  background:
    radial-gradient(circle at 11% 10%, rgba(127, 155, 138, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fbfdfb 100%);
  border: 1px solid rgba(47, 80, 97, 0.34);
  border-radius: 34px 14px 34px 14px;
  box-shadow: 0 34px 72px rgba(33, 63, 78, 0.26);
}

.who-blocks {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.who-storylet {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  border: 1px solid rgba(47, 80, 97, 0.3);
  border-radius: 28px 12px 28px 12px;
  box-shadow: 0 20px 48px rgba(33, 63, 78, 0.22);
  min-height: 100%;
  padding: 24px 20px 20px;
}

.who-storylet:nth-child(2) {
  transform: translateY(18px);
}

.who-storylet:hover {
  border-color: rgba(127, 155, 138, 0.72);
  box-shadow: 0 30px 64px rgba(33, 63, 78, 0.28);
  transform: translateY(-5px);
}

.who-storylet:nth-child(2):hover {
  transform: translateY(11px);
}

.who-storylet::before {
  background:
    linear-gradient(135deg, #2f5061 0%, #456b7a 52%, #7f9b8a 100%);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(47, 80, 97, 0.28);
  height: 38px;
  width: 38px;
}

.who-storylet span,
.category-heading h3,
.service-card h4 {
  color: #213f4e;
}

.who-storylet p,
.testimonial-card p,
.service-card p {
  color: #2c4650;
}

.who-highlight {
  background:
    linear-gradient(135deg, #ffffff 0%, #edf4f1 100%);
  border: 1px solid rgba(47, 80, 97, 0.34);
  box-shadow: 0 22px 52px rgba(33, 63, 78, 0.2);
}

.service-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  border: 1px solid rgba(47, 80, 97, 0.36);
  box-shadow: 0 18px 44px rgba(33, 63, 78, 0.2);
}

.service-card:hover {
  border-color: rgba(47, 80, 97, 0.56);
  box-shadow: 0 26px 58px rgba(33, 63, 78, 0.26);
}

.service-icon,
.category-heading span,
.how-grid span {
  background:
    linear-gradient(135deg, #2f5061 0%, #456b7a 100%);
  border-color: rgba(33, 63, 78, 0.38);
  color: #ffffff;
}

.testimonials-section {
  background:
    radial-gradient(circle at 78% 10%, rgba(127, 155, 138, 0.2), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #dbe7ed 48%, #f7f4ee 100%);
}

.testimonial-grid {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.testimonial-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  border: 1px solid rgba(47, 80, 97, 0.34);
  border-radius: 30px 12px 30px 12px;
  box-shadow: 0 28px 64px rgba(33, 63, 78, 0.24);
  overflow: hidden;
}

.testimonial-card::before {
  background:
    linear-gradient(90deg, #2f5061 0%, #7f9b8a 100%);
  height: 7px;
}

.testimonial-card::after {
  color: rgba(47, 80, 97, 0.22);
  font-size: 5.2rem;
}

.testimonial-card footer {
  border-top-color: rgba(47, 80, 97, 0.28);
}

.dispatcher-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(127, 155, 138, 0.26), transparent 32%),
    linear-gradient(135deg, #213f4e 0%, #2f5061 58%, #456b7a 100%);
}

.course-grid {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.18);
}

.course-details {
  align-items: stretch;
}

.course-details > div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px 10px 24px 10px;
  box-shadow: 0 22px 48px rgba(12, 32, 41, 0.24);
}

.course-details li::before {
  background: rgba(127, 155, 138, 0.4);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary,
.option-button:hover {
  border-color: rgba(127, 155, 138, 0.46);
}

@media (max-width: 640px) {
  .who-blocks,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .who-storylet,
  .who-storylet:nth-child(2),
  .who-storylet:hover,
  .who-storylet:nth-child(2):hover,
  .testimonial-card,
  .testimonial-card:nth-child(2),
  .testimonial-card:hover,
  .testimonial-card:nth-child(2):hover {
    transform: none;
  }
}

/* Immediate visual authority patch requested before publishing */
:root {
  --blue: #2c3e50;
  --blue-2: #345a70;
  --navy: #223343;
  --green: #77dd77;
  --green-2: #dff4df;
  --line: rgba(44, 62, 80, 0.18);
}

.section-inner {
  padding-bottom: 80px;
  padding-top: 80px;
}

.who-section,
.testimonials-section,
.services-section,
.dispatcher-section,
.trust-section {
  background:
    linear-gradient(135deg, #2c3e50 0%, #345a70 58%, #4c7c82 100%);
}

.who-section .section-heading,
.who-section h2,
.who-section .eyebrow,
.testimonials-section .section-heading,
.testimonials-section h2,
.testimonials-section .eyebrow {
  color: #ffffff;
}

.who-section .section-heading p,
.testimonials-section .section-heading p {
  color: rgba(255, 255, 255, 0.86);
}

.who-story,
.who-storylet,
.testimonial-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-story {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 247, 0.96));
}

.who-storylet,
.testimonial-card,
.service-card {
  background: #ffffff;
}

.who-blocks,
.testimonial-grid {
  display: grid;
  gap: 28px;
}

.who-storylet::before,
.service-icon,
.category-heading span,
.how-grid span {
  background: linear-gradient(135deg, #2c3e50, #345a70);
  border: none;
  color: #ffffff;
}

.who-storylet:hover,
.testimonial-card:hover,
.service-card:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.button-secondary,
.calendly-options a,
.option-button span,
.course-meta span {
  border-color: rgba(119, 221, 119, 0.45);
}

.text-button,
.eyebrow,
.nav-links a:hover {
  color: #2c3e50;
}

.floating-whatsapp {
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.36);
  color: #ffffff;
}

.floating-whatsapp::before {
  content: "";
  background: #ffffff;
  border-radius: 999px;
  display: inline-block;
  height: 8px;
  margin-right: 8px;
  width: 8px;
}

.floating-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.44);
}

@media (max-width: 640px) {
  .section-inner {
    padding-bottom: 58px;
    padding-top: 58px;
  }
}

/* Text-only readability correction for New Carrier Success Session */
.service-card-wide > p:not(.service-price) {
  color: #243b4b;
}

/* Match services intro paragraph to primary corporate blue */
.intro-section .intro-grid > p {
  color: #0f4c81;
}

/* Center services intro section only */
.intro-section .intro-grid {
  display: block;
  text-align: center;
}

.intro-section .intro-grid .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.intro-section .intro-grid > p {
  color: #0f4c81;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

/* CSS-only correction: organic human section + distinct trust/course treatments */
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 34%, #eef5f3 100%);
}

.intro-section,
.how-section,
.appointment-section,
.contact-section,
.faq-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.services-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, rgba(234, 242, 248, 0.76) 54%, #ffffff 100%);
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(31, 78, 121, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 78, 121, 0.19);
}

.service-icon {
  background: linear-gradient(135deg, #eaf2f8, #ffffff);
  border: 1px solid rgba(31, 78, 121, 0.48);
  border-radius: 6px;
  color: #1f4e79;
}

.who-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.76), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(119, 221, 119, 0.16), transparent 30%),
    linear-gradient(135deg, #e7f0f4 0%, #eef7ef 100%);
  color: #1f2f38;
}

.who-section .section-inner {
  padding-bottom: clamp(64px, 8vw, 92px);
  padding-top: clamp(64px, 8vw, 92px);
}

.who-story {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border: none;
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(44, 62, 80, 0.16);
  overflow: hidden;
  position: relative;
}

.who-story::before {
  background:
    linear-gradient(180deg, #2c3e50 0%, #345a70 100%);
  border-radius: 999px;
  content: "";
  height: 180px;
  opacity: 0.12;
  position: absolute;
  right: -72px;
  top: -72px;
  width: 180px;
}

.who-intro {
  position: relative;
  z-index: 1;
}

.who-section h2,
.who-section .eyebrow,
.who-section .section-heading,
.who-storylet span {
  color: #2c3e50;
}

.who-blocks {
  align-items: start;
  display: grid;
  gap: 20px 24px;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  position: relative;
  z-index: 1;
}

.who-storylet {
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.who-storylet:nth-child(1) {
  border-radius: 28px 28px 10px 28px;
}

.who-storylet:nth-child(2) {
  border-radius: 28px 28px 28px 10px;
  transform: translateY(34px);
}

.who-storylet:nth-child(3) {
  border-radius: 28px 10px 28px 28px;
  grid-column: 1 / -1;
  margin-left: auto;
  max-width: 760px;
  transform: translateY(4px);
}

.who-storylet:hover {
  box-shadow: 0 18px 42px rgba(44, 62, 80, 0.16);
  transform: translateY(-4px);
}

.who-storylet:nth-child(2):hover {
  transform: translateY(28px);
}

.who-storylet:nth-child(3):hover {
  transform: translateY(0);
}

.who-storylet::before {
  background: linear-gradient(135deg, #2c3e50, #77dd77);
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(44, 62, 80, 0.18);
}

.who-highlight {
  background:
    linear-gradient(135deg, #2c3e50 0%, #345a70 100%);
  border: none;
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(44, 62, 80, 0.18);
  color: #ffffff;
}

.who-highlight p,
.who-highlight p:first-child,
.who-highlight p:last-child {
  color: #ffffff;
}

.trust-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(119, 221, 119, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eaf2f8 100%);
  color: #1f2f38;
}

.trust-section h2,
.trust-section h3,
.trust-section .eyebrow {
  color: #2c3e50;
}

.trust-section .section-heading p:not(.eyebrow),
.trust-card p {
  color: #425f6b;
}

.trust-card {
  border-top: 1px solid rgba(44, 62, 80, 0.22);
}

.trust-icon {
  background: rgba(44, 62, 80, 0.08);
  border-color: rgba(44, 62, 80, 0.14);
  color: #2c3e50;
}

.dispatcher-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(119, 221, 119, 0.18), transparent 32%),
    linear-gradient(135deg, #2c3e50 0%, #345a70 72%, #456b7a 100%);
  color: #ffffff;
}

.dispatcher-section .section-inner {
  padding-bottom: clamp(64px, 8vw, 90px);
  padding-top: clamp(64px, 8vw, 90px);
}

.course-details > div {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-details li::before {
  background: rgba(119, 221, 119, 0.24);
}

@media (max-width: 640px) {
  .who-blocks {
    grid-template-columns: 1fr;
  }

  .who-storylet,
  .who-storylet:nth-child(2),
  .who-storylet:nth-child(3),
  .who-storylet:hover,
  .who-storylet:nth-child(2):hover,
  .who-storylet:nth-child(3):hover {
    margin-left: 0;
    max-width: none;
    transform: none;
  }
}

/* Human editorial refinement: Who We Are + highlight + client stories only */
.who-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 86% 30%, rgba(119, 221, 119, 0.13), transparent 30%),
    linear-gradient(135deg, #f7fbfc 0%, #eaf2f8 54%, #f4f9f2 100%);
  color: #1f2f38;
}

.who-section .section-inner {
  padding-bottom: clamp(72px, 9vw, 108px);
  padding-top: clamp(72px, 9vw, 108px);
}

.who-story {
  background:
    radial-gradient(circle at 8% 12%, rgba(119, 221, 119, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66));
  border: none;
  border-radius: 44px;
  box-shadow: 0 26px 70px rgba(44, 62, 80, 0.12);
  overflow: visible;
  padding: clamp(24px, 4vw, 48px);
  position: relative;
}

.who-story::before {
  background:
    linear-gradient(135deg, rgba(44, 62, 80, 0.12), rgba(119, 221, 119, 0.18));
  border-radius: 42% 58% 60% 40%;
  content: "";
  height: 220px;
  left: -60px;
  opacity: 0.75;
  position: absolute;
  top: -42px;
  width: 220px;
  z-index: 0;
}

.who-story::after {
  background:
    linear-gradient(135deg, rgba(44, 62, 80, 0.08), rgba(119, 221, 119, 0.14));
  border-radius: 58% 42% 44% 56%;
  bottom: 90px;
  content: "";
  height: 170px;
  opacity: 0.75;
  position: absolute;
  right: -50px;
  width: 170px;
  z-index: 0;
}

.who-intro,
.who-blocks,
.who-highlight {
  position: relative;
  z-index: 1;
}

.who-intro {
  align-items: center;
  border-bottom: 1px solid rgba(44, 62, 80, 0.14);
  margin-bottom: clamp(26px, 4vw, 42px);
  padding-bottom: clamp(22px, 4vw, 34px);
}

.founder-portrait::before {
  background:
    linear-gradient(135deg, rgba(44, 62, 80, 0.18), rgba(119, 221, 119, 0.28));
}

.who-section h2,
.who-section .eyebrow,
.who-storylet span {
  color: #2c3e50;
}

.who-blocks {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 860px;
  padding-left: 34px;
  position: relative;
}

.who-blocks::before {
  background:
    linear-gradient(180deg, rgba(44, 62, 80, 0.08), rgba(44, 62, 80, 0.32), rgba(119, 221, 119, 0.34));
  border-radius: 999px;
  bottom: 18px;
  content: "";
  left: 12px;
  position: absolute;
  top: 8px;
  width: 2px;
}

.who-storylet,
.who-storylet:nth-child(1),
.who-storylet:nth-child(2),
.who-storylet:nth-child(3) {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  max-width: none;
  padding: 0 0 clamp(26px, 4vw, 38px) 28px;
  position: relative;
  transform: none;
}

.who-storylet::before {
  align-items: center;
  background: linear-gradient(135deg, #2c3e50, #77dd77);
  border: 4px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(44, 62, 80, 0.16);
  color: #ffffff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  left: -42px;
  position: absolute;
  top: -4px;
  width: 42px;
}

.who-storylet:hover,
.who-storylet:nth-child(2):hover,
.who-storylet:nth-child(3):hover {
  box-shadow: none;
  transform: none;
}

.who-storylet span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.who-storylet p {
  color: #2d4550;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
  max-width: 760px;
}

.who-highlight {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 242, 0.92));
  border: none;
  border-left: 6px solid #77dd77;
  border-radius: 0 30px 30px 0;
  box-shadow: 0 18px 46px rgba(44, 62, 80, 0.1);
  margin: clamp(22px, 4vw, 40px) auto 0;
  max-width: 900px;
  padding: clamp(22px, 4vw, 34px);
}

.who-highlight p,
.who-highlight p:first-child {
  color: #2c3e50;
}

.who-highlight p:first-child {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.who-highlight p:not(:first-child):not(:last-child) {
  color: #3d5966;
  font-weight: 600;
  line-height: 1.62;
}

.who-highlight p:last-child {
  color: #2c3e50;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.02;
  margin-top: 18px;
}

.testimonials-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(119, 221, 119, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fb 52%, #ffffff 100%);
  color: #1f2f38;
}

.testimonials-section .section-heading,
.testimonials-section h2,
.testimonials-section .eyebrow {
  color: #2c3e50;
}

.testimonials-section .section-heading p {
  color: #425f6b;
}

.testimonial-grid {
  align-items: stretch;
  gap: clamp(24px, 4vw, 38px);
}

.testimonial-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  border: none;
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(44, 62, 80, 0.12);
  color: #1f2f38;
  overflow: hidden;
}

.testimonial-card:nth-child(2) {
  transform: translateY(18px);
}

.testimonial-card:hover {
  box-shadow: 0 24px 58px rgba(44, 62, 80, 0.16);
  transform: translateY(-3px);
}

.testimonial-card:nth-child(2):hover {
  transform: translateY(12px);
}

.testimonial-card::before {
  background: linear-gradient(90deg, #2c3e50, #77dd77);
  height: 6px;
}

.testimonial-card::after {
  color: rgba(44, 62, 80, 0.12);
}

.testimonial-card p {
  color: #2d4550;
}

.testimonial-card footer {
  border-top: 1px solid rgba(44, 62, 80, 0.14);
}

@media (max-width: 640px) {
  .who-story {
    border-radius: 30px;
    padding: 22px;
  }

  .who-intro {
    align-items: flex-start;
  }

  .who-blocks {
    padding-left: 26px;
  }

  .who-blocks::before {
    left: 8px;
  }

  .who-storylet,
  .who-storylet:nth-child(1),
  .who-storylet:nth-child(2),
  .who-storylet:nth-child(3),
  .who-storylet:hover,
  .who-storylet:nth-child(2):hover,
  .who-storylet:nth-child(3):hover,
  .testimonial-card,
  .testimonial-card:nth-child(2),
  .testimonial-card:hover,
  .testimonial-card:nth-child(2):hover {
    transform: none;
  }

  .who-storylet::before {
    height: 34px;
    left: -34px;
    width: 34px;
  }

  .who-highlight {
    border-left-width: 4px;
    border-radius: 0 24px 24px 0;
  }
}

/* Unified premium visual system: petroleum blue, sky highlights, warm editorial feel */
:root {
  --ink: #20262c;
  --muted: #52616b;
  --soft: #334754;
  --bg: #f8f6f1;
  --paper: #f8f6f1;
  --panel: #fffdf8;
  --panel-2: #eef6fb;
  --line: rgba(33, 76, 94, 0.16);
  --blue: #214c5e;
  --blue-2: #2f6f8c;
  --navy: #183746;
  --silver: #eef6fb;
  --green: #9fd3ea;
  --green-2: #e7f4fa;
  --shadow: 0 18px 46px rgba(24, 55, 70, 0.14);
}

body {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f8f6f1 48%, #f1f6f8 100%);
  color: var(--ink);
}

.intro-section,
.how-section,
.appointment-section,
.contact-section,
.faq-section {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f8f6f1 100%);
}

.services-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(159, 211, 234, 0.24), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #eef6fb 52%, #fffdf8 100%);
}

.section-heading p:not(.eyebrow),
.service-card p,
.contact-grid p,
.appointment-copy p,
.faq-list p {
  color: var(--muted);
}

.eyebrow,
.text-button {
  color: var(--blue);
}

.button-primary,
.header-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 30px rgba(33, 76, 94, 0.2);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(33, 76, 94, 0.18);
  color: var(--navy);
}

.service-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  border: 1px solid rgba(33, 76, 94, 0.14);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(24, 55, 70, 0.1);
  padding: 18px;
}

.service-card:hover {
  border-color: rgba(33, 76, 94, 0.24);
  box-shadow: 0 22px 48px rgba(24, 55, 70, 0.15);
}

.service-icon,
.category-heading span,
.how-grid span {
  background:
    linear-gradient(135deg, #eef6fb, #ffffff);
  border: 1px solid rgba(33, 76, 94, 0.22);
  color: var(--blue);
}

.category-block {
  border-top-color: rgba(33, 76, 94, 0.16);
}

.category-heading h3,
.service-card h4,
.how-grid h3 {
  color: var(--navy);
}

.who-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 253, 248, 0.96), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(159, 211, 234, 0.26), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #eef6fb 62%, #f8f6f1 100%);
}

.who-section .section-inner {
  padding-bottom: clamp(76px, 9vw, 112px);
  padding-top: clamp(76px, 9vw, 112px);
}

.who-story {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(33, 76, 94, 0.1);
  border-radius: 46px;
  box-shadow: 0 26px 74px rgba(24, 55, 70, 0.12);
  overflow: visible;
}

.who-story::before {
  background:
    radial-gradient(circle, rgba(159, 211, 234, 0.62), rgba(159, 211, 234, 0.08) 64%, transparent 66%);
  border-radius: 48% 52% 60% 40%;
  height: 250px;
  left: -78px;
  opacity: 0.9;
  top: -62px;
  width: 250px;
}

.who-story::after {
  background:
    radial-gradient(circle, rgba(33, 76, 94, 0.08), rgba(159, 211, 234, 0.12) 62%, transparent 64%);
  border-radius: 58% 42% 44% 56%;
}

.who-intro {
  border-bottom: 1px solid rgba(33, 76, 94, 0.12);
}

.founder-portrait::before {
  background:
    linear-gradient(135deg, rgba(33, 76, 94, 0.18), rgba(159, 211, 234, 0.42));
}

.founder-portrait img {
  box-shadow: 0 22px 44px rgba(24, 55, 70, 0.2);
}

.who-blocks {
  gap: 0;
  grid-template-columns: 1fr;
  max-width: 900px;
  padding-left: 42px;
}

.who-blocks::before {
  background:
    linear-gradient(180deg, rgba(159, 211, 234, 0.28), rgba(33, 76, 94, 0.34), rgba(159, 211, 234, 0.38));
  left: 15px;
  width: 3px;
}

.who-storylet,
.who-storylet:nth-child(1),
.who-storylet:nth-child(2),
.who-storylet:nth-child(3) {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  max-width: none;
  padding: 0 0 clamp(28px, 4vw, 42px) 34px;
  transform: none;
}

.who-storylet::before {
  background:
    linear-gradient(135deg, var(--blue), var(--blue-2));
  border: 5px solid #fffdf8;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(24, 55, 70, 0.18);
  height: 46px;
  left: -50px;
  top: -5px;
  width: 46px;
}

.who-storylet:hover,
.who-storylet:nth-child(2):hover,
.who-storylet:nth-child(3):hover {
  box-shadow: none;
  transform: none;
}

.who-storylet span {
  color: var(--blue);
  letter-spacing: 0.16em;
}

.who-storylet p {
  color: var(--soft);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}

.who-highlight {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(238, 246, 251, 0.92));
  border: 0;
  border-left: 6px solid var(--blue);
  border-radius: 0 34px 34px 0;
  box-shadow: 0 18px 52px rgba(24, 55, 70, 0.12);
}

.who-highlight p,
.who-highlight p:first-child {
  color: var(--navy);
}

.who-highlight p:not(:first-child):not(:last-child) {
  color: var(--soft);
  font-weight: 600;
}

.who-highlight p:last-child {
  color: var(--blue);
  font-size: clamp(1.55rem, 3.1vw, 2.45rem);
}

.testimonials-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(159, 211, 234, 0.2), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #eef6fb 54%, #fffdf8 100%);
  color: var(--ink);
}

.testimonials-section .section-heading,
.testimonials-section h2,
.testimonials-section .eyebrow {
  color: var(--navy);
}

.testimonials-section .section-heading p {
  color: var(--muted);
}

.testimonial-grid {
  align-items: center;
  gap: clamp(26px, 4vw, 44px);
  perspective: 1200px;
}

.testimonial-card {
  background:
    linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  border: 1px solid rgba(33, 76, 94, 0.08);
  border-radius: 8px 28px 10px 28px;
  box-shadow:
    0 18px 42px rgba(24, 55, 70, 0.14),
    10px 10px 0 rgba(159, 211, 234, 0.22);
  color: var(--ink);
  overflow: visible;
  position: relative;
}

.testimonial-card:nth-child(1) {
  transform: rotate(-1.4deg);
}

.testimonial-card:nth-child(2) {
  transform: translateY(24px) rotate(1.2deg);
}

.testimonial-card:hover {
  box-shadow:
    0 24px 54px rgba(24, 55, 70, 0.18),
    12px 12px 0 rgba(159, 211, 234, 0.26);
  transform: rotate(0deg) translateY(-4px);
}

.testimonial-card:nth-child(2):hover {
  transform: rotate(0deg) translateY(16px);
}

.testimonial-card::before {
  background:
    linear-gradient(90deg, rgba(33, 76, 94, 0.26), rgba(159, 211, 234, 0.4));
  border-radius: 999px;
  height: 5px;
  left: 26px;
  right: 26px;
  top: 0;
}

.testimonial-card::after {
  color: rgba(33, 76, 94, 0.1);
  font-size: 5.4rem;
}

.testimonial-card p {
  color: var(--soft);
  line-height: 1.62;
}

.testimonial-card footer {
  border-top: 1px solid rgba(33, 76, 94, 0.12);
}

.testimonial-card strong {
  color: var(--navy);
}

.testimonial-card span {
  color: var(--muted);
}

.dispatcher-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(159, 211, 234, 0.22), transparent 32%),
    linear-gradient(135deg, #214c5e 0%, #2f6f8c 62%, #8bc8e3 100%);
  color: #ffffff;
}

.dispatcher-section p,
.dispatcher-section .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.course-details > div {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 38px rgba(24, 55, 70, 0.16);
}

.course-details li::before {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.36);
}

@media (max-width: 640px) {
  .who-blocks {
    padding-left: 28px;
  }

  .who-blocks::before {
    left: 9px;
  }

  .who-storylet,
  .who-storylet:nth-child(1),
  .who-storylet:nth-child(2),
  .who-storylet:nth-child(3),
  .who-storylet:hover,
  .who-storylet:nth-child(2):hover,
  .who-storylet:nth-child(3):hover,
  .testimonial-card,
  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:hover,
  .testimonial-card:nth-child(2):hover {
    transform: none;
  }

  .who-storylet::before {
    border-width: 4px;
    height: 36px;
    left: -38px;
    width: 36px;
  }

  .testimonial-card {
    box-shadow:
      0 16px 36px rgba(24, 55, 70, 0.14),
      7px 7px 0 rgba(159, 211, 234, 0.2);
  }
}

/* Visual cohesion pass: unified light blue-gray backgrounds */
body {
  background: #f3f5f8;
}

.why-strip-section,
.services-section,
.who-section,
.testimonials-section,
.faq-section {
  background:
    linear-gradient(180deg, #f5f7fa 0%, #f3f5f8 100%);
}

.intro-section,
.how-section,
.appointment-section,
.contact-section {
  background:
    linear-gradient(180deg, #f3f5f8 0%, #f5f7fa 100%);
}

.why-strip-section,
.services-section,
.who-section,
.testimonials-section,
.faq-section,
.how-section,
.appointment-section,
.contact-section {
  border-top: 1px solid rgba(33, 76, 94, 0.12);
}

.why-strip-points span,
.category-heading span,
.service-icon,
.how-grid span {
  background:
    linear-gradient(135deg, #ffffff 0%, #eef6fb 100%);
  border: 1px solid rgba(33, 76, 94, 0.24);
  color: var(--blue);
}

.category-heading h3,
.service-card h4 {
  color: var(--navy);
}

.service-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(33, 76, 94, 0.16);
  box-shadow: 0 16px 36px rgba(24, 55, 70, 0.13);
}

.service-card:hover {
  border-color: rgba(33, 76, 94, 0.32);
  box-shadow: 0 26px 56px rgba(24, 55, 70, 0.2);
  transform: translateY(-3px);
}

.service-card p {
  color: #334754;
}

.text-button {
  color: var(--blue);
}

.text-button:hover {
  color: var(--navy);
}

.who-story {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.82));
}

.who-highlight {
  background:
    linear-gradient(135deg, #ffffff 0%, #eef6fb 100%);
}

.testimonials-section .section-heading,
.testimonials-section h2,
.testimonials-section .eyebrow,
.faq-section .section-heading,
.faq-section h2,
.faq-section .eyebrow {
  color: var(--navy);
}

.testimonial-grid {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(238, 246, 251, 0.72));
  border: 1px solid rgba(33, 76, 94, 0.1);
  border-radius: 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  padding: clamp(18px, 3vw, 30px);
}

.testimonial-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(33, 76, 94, 0.14);
  box-shadow:
    0 18px 42px rgba(24, 55, 70, 0.14),
    8px 8px 0 rgba(33, 76, 94, 0.06);
}

.testimonial-card::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.testimonial-card p {
  color: #334754;
}

.faq-list details {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border-color: rgba(33, 76, 94, 0.14);
  box-shadow: 0 12px 30px rgba(24, 55, 70, 0.1);
}

@media (max-width: 640px) {
  .testimonial-grid {
    padding: 14px;
  }
}

/* Transportation authority palette: confident blue system */
:root {
  --ink: #1e2f3f;
  --muted: #395367;
  --soft: #2f4858;
  --bg: #f4f7fa;
  --paper: #f4f7fa;
  --panel: #ffffff;
  --panel-2: #e7f0f8;
  --line: rgba(15, 76, 129, 0.22);
  --blue: #0f4c81;
  --blue-2: #1b75bc;
  --navy: #1e2f3f;
  --silver: #e7f0f8;
  --green: #1b75bc;
  --green-2: #dcebf7;
  --shadow: 0 18px 44px rgba(15, 76, 129, 0.18);
}

body {
  background: #f4f7fa;
  color: var(--ink);
}

.intro-section,
.why-strip-section,
.services-section,
.who-section,
.testimonials-section,
.how-section,
.appointment-section,
.contact-section,
.faq-section {
  background:
    linear-gradient(180deg, #f4f7fa 0%, #edf3f8 100%);
  border-top: 1px solid rgba(15, 76, 129, 0.16);
}

.section-heading p:not(.eyebrow),
.intro-grid p,
.contact-grid p,
.appointment-copy p,
.faq-list p {
  color: #395367;
}

.eyebrow,
.text-button,
.nav-links a:hover,
.who-storylet span,
.testimonial-card strong {
  color: #0f4c81;
}

h1,
h2,
h3,
h4,
.brand strong {
  color: #1e2f3f;
}

.button-primary,
.header-cta {
  background: linear-gradient(135deg, #0f4c81 0%, #1b75bc 100%);
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.26);
}

.button-secondary,
.language-switcher button[aria-pressed="true"] {
  border-color: rgba(15, 76, 129, 0.22);
}

.language-switcher button[aria-pressed="true"] {
  background: #0f4c81;
}

.why-strip-points span,
.category-heading span,
.service-icon,
.how-grid span,
.trust-icon,
.course-meta span {
  background:
    linear-gradient(135deg, #0f4c81 0%, #1b75bc 100%);
  border: 1px solid rgba(15, 76, 129, 0.26);
  color: #ffffff;
}

.category-block {
  border-top-color: rgba(15, 76, 129, 0.24);
}

.service-card {
  background:
    linear-gradient(180deg, #fafdff 0%, #eaf3fb 100%);
  border: 1px solid rgba(15, 76, 129, 0.26);
  box-shadow: 0 18px 42px rgba(15, 76, 129, 0.16);
}

.service-card:hover {
  border-color: rgba(15, 76, 129, 0.48);
  box-shadow: 0 28px 62px rgba(15, 76, 129, 0.24);
  transform: translateY(-4px);
}

.service-card p {
  color: #2f4858;
}

.text-button:hover {
  color: #1b75bc;
}

.who-story {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 240, 248, 0.84));
  border: 1px solid rgba(15, 76, 129, 0.12);
  box-shadow: 0 28px 76px rgba(15, 76, 129, 0.14);
}

.who-blocks::before {
  background:
    linear-gradient(180deg, rgba(27, 117, 188, 0.22), rgba(15, 76, 129, 0.58), rgba(27, 117, 188, 0.36));
}

.who-storylet::before {
  background:
    linear-gradient(135deg, #0f4c81 0%, #1b75bc 100%);
  box-shadow: 0 12px 28px rgba(15, 76, 129, 0.24);
}

.who-storylet p,
.testimonial-card p {
  color: #2f4858;
}

.who-highlight {
  background:
    linear-gradient(135deg, #ffffff 0%, #e7f0f8 100%);
  border-left-color: #0f4c81;
  box-shadow: 0 18px 50px rgba(15, 76, 129, 0.14);
}

.who-highlight p:last-child {
  color: #0f4c81;
}

.trust-section {
  background:
    linear-gradient(135deg, #0f4c81 0%, #1b75bc 100%);
  color: #ffffff;
}

.trust-section h2,
.trust-section h3,
.trust-section .eyebrow {
  color: #ffffff;
}

.trust-section .section-heading p:not(.eyebrow),
.trust-card p {
  color: rgba(255, 255, 255, 0.86);
}

.trust-card {
  border-top-color: rgba(255, 255, 255, 0.26);
}

.testimonials-section {
  background:
    linear-gradient(180deg, #f4f7fa 0%, #e7f0f8 54%, #f4f7fa 100%);
}

.testimonial-grid {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(220, 235, 247, 0.84));
  border: 1px solid rgba(15, 76, 129, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f0f6fb 100%);
  border: 1px solid rgba(15, 76, 129, 0.18);
  box-shadow:
    0 20px 46px rgba(15, 76, 129, 0.18),
    8px 8px 0 rgba(15, 76, 129, 0.08);
}

.testimonial-card::before {
  background: linear-gradient(90deg, #0f4c81, #1b75bc);
}

.testimonial-card::after {
  color: rgba(15, 76, 129, 0.12);
}

.testimonial-card footer {
  border-top-color: rgba(15, 76, 129, 0.16);
}

.dispatcher-section {
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #0f4c81 0%, #1b75bc 70%, #4d9bd3 100%);
}

.course-details > div {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.faq-list details,
.contact-form,
.appointment-form,
.option-button {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fafe 100%);
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: 0 16px 38px rgba(15, 76, 129, 0.12);
}

/* Reduce stacked-box feeling: continuous blue area + featured success session */
.trust-section,
.dispatcher-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(77, 155, 211, 0.24), transparent 34%),
    linear-gradient(180deg, #0f4c81 0%, #14609f 48%, #1b75bc 100%);
  border-top: 0;
}

.trust-section .section-inner {
  padding-bottom: clamp(54px, 7vw, 78px);
}

.dispatcher-section .section-inner {
  padding-top: clamp(54px, 7vw, 78px);
}

.dispatcher-grid,
.course-grid {
  border-bottom: 0;
  border-top: 0;
}

.trust-card {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.category-block:nth-of-type(2) .service-grid.compact {
  align-items: stretch;
}

.category-block:nth-of-type(2) .service-card-wide {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 900px;
  min-height: 0;
  width: min(100%, 900px);
}

.category-block:nth-of-type(2) .service-card-wide p {
  max-width: 760px;
}

.category-block:nth-of-type(2) .service-card-wide .service-details {
  margin-bottom: 10px;
}

.category-block:nth-of-type(2) .service-card-wide .service-disclaimer {
  margin-bottom: 12px;
}

.service-consultation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.service-consultation-options a {
  flex: 1 1 260px;
  text-align: center;
}

@media (max-width: 900px) {
  .category-block:nth-of-type(2) .service-card-wide {
    max-width: none;
    width: 100%;
  }
}

/* Final cleanup: remove stacked-divider feel and feature the success session card */
.trust-section {
  border-bottom: 0 !important;
  margin-bottom: 0;
}

.dispatcher-section {
  border-top: 0 !important;
  margin-top: 0;
}

.trust-section + .dispatcher-section {
  margin-top: 0;
}

.trust-section .section-inner {
  padding-bottom: clamp(68px, 8vw, 104px);
}

.dispatcher-section .section-inner {
  padding-top: clamp(68px, 8vw, 104px);
}

.dispatcher-grid,
.course-grid {
  border: 0 !important;
}

.service-card-wide {
  grid-column: 1 / -1 !important;
  justify-self: center;
  max-width: 1040px;
  min-height: 0;
  padding: 18px 20px;
  width: min(100%, 1040px);
}

.service-card-wide h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.service-card-wide p {
  line-height: 1.42;
  margin-bottom: 8px;
}

.service-card-wide .service-details {
  font-size: 0.82rem;
}

.service-card-wide .service-price,
.service-card-wide .service-disclaimer {
  margin-bottom: 8px;
}

.service-card-wide .calendly-options {
  margin-top: 6px;
}

@media (min-width: 760px) {
  .service-card-wide {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
  }

  .service-card-wide .service-icon {
    grid-row: 1 / span 6;
    margin-bottom: 0;
    margin-top: 2px;
  }

  .service-card-wide h4,
  .service-card-wide p,
  .service-card-wide .calendly-options {
    grid-column: 2;
  }
}

@media (max-width: 759px) {
  .service-card-wide {
    display: flex;
    width: 100%;
  }
}

/* Paid guidance section emphasis */
.appointment-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(27, 117, 188, 0.12), transparent 30%),
    linear-gradient(180deg, #f4f7fa 0%, #e7f0f8 100%);
}

.appointment-layout {
  align-items: center;
}

#appointment-title {
  color: #1e2f3f;
  font-size: clamp(1.65rem, 3.05vw, 3rem);
  line-height: 0.98;
}

.appointment-copy > p:not(.eyebrow) {
  color: #2f4858;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.consultation-card {
  background:
    linear-gradient(145deg, #ffffff 0%, #eef6fb 100%);
  border: 1px solid rgba(15, 76, 129, 0.24);
  border-left: 5px solid #0f4c81;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(15, 76, 129, 0.18);
  padding: clamp(22px, 3vw, 34px);
}

.consultation-card .form-heading {
  border-bottom: 1px solid rgba(15, 76, 129, 0.16);
  margin-bottom: 8px;
  padding-bottom: 18px;
}

.consultation-card .form-heading span {
  color: #0f4c81;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.consultation-card .form-heading strong {
  color: #1e2f3f;
  display: block;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.32;
  margin-top: 8px;
}

.consultation-card .appointment-options {
  gap: 14px;
  margin-bottom: 0;
}

.consultation-card .option-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 254, 0.94));
  border: 1px solid rgba(15, 76, 129, 0.18);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.12);
  padding: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.consultation-card .option-button:hover {
  border-color: rgba(15, 76, 129, 0.38);
  box-shadow: 0 20px 44px rgba(15, 76, 129, 0.18);
  transform: translateY(-2px);
}

.consultation-card .option-button span {
  background:
    linear-gradient(135deg, #0f4c81 0%, #1b75bc 100%);
  box-shadow: 0 10px 22px rgba(15, 76, 129, 0.22);
  color: #ffffff;
  height: 42px;
  width: 42px;
}

.consultation-card .option-button strong {
  color: #0f4c81;
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
  font-weight: 950;
  letter-spacing: 0;
}

.consultation-card .option-button small {
  color: #2f4858;
  font-size: 0.88rem;
}

.consultation-card .option-button strong::after {
  background: rgba(27, 117, 188, 0.1);
  border: 1px solid rgba(15, 76, 129, 0.18);
  border-radius: 999px;
  color: #1e2f3f;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  margin-left: 8px;
  padding: 5px 9px;
  vertical-align: middle;
}

.consultation-card .option-button:nth-child(1) strong::after {
  content: "30 min";
}

.consultation-card .option-button:nth-child(2) strong::after {
  content: "60 min";
}

@media (max-width: 640px) {
  #appointment-title {
    font-size: 1.55rem;
  }

  .consultation-card {
    border-left-width: 4px;
    border-radius: 22px;
    padding: 18px;
  }

  .consultation-card .option-button strong::after {
    margin-left: 0;
    margin-top: 7px;
  }
}

/* Visual rhythm polish: benefits, featured success session, centered accounting */
.section-inner {
  padding-bottom: clamp(72px, 8vw, 104px);
  padding-top: clamp(72px, 8vw, 104px);
}

.why-strip-section {
  background:
    linear-gradient(180deg, #f4f7fa 0%, #edf3f8 100%);
}

.why-strip {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.why-strip h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  max-width: 680px;
}

.why-strip-points {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1040px;
  width: 100%;
}

.why-strip-points span {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #1e2f3f;
  display: grid;
  font-size: 0.95rem;
  font-weight: 900;
  gap: 12px;
  justify-items: center;
  line-height: 1.25;
  min-height: 0;
  padding: 0 12px;
  text-align: center;
}

.why-strip-points span::before {
  background: linear-gradient(135deg, #0f4c81, #1b75bc);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.18);
  content: "";
  display: block;
  height: 54px;
  mask: var(--benefit-icon) center / 28px 28px no-repeat;
  -webkit-mask: var(--benefit-icon) center / 28px 28px no-repeat;
  width: 54px;
}

.why-strip-points span:nth-child(1) {
  --benefit-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.9 9h-3.1a15.7 15.7 0 0 0-1.2-5 8.1 8.1 0 0 1 4.3 5ZM12 4.1c.7 1 1.4 3.2 1.7 6.9h-3.4c.3-3.7 1-5.9 1.7-6.9ZM4.3 13h3.9c.1 1.8.4 3.5.9 4.9A8.1 8.1 0 0 1 4.3 13Zm3.9-2H4.3a8.1 8.1 0 0 1 4.8-4.9A18 18 0 0 0 8.2 11Zm3.8 8.9c-.7-1-1.4-3.2-1.7-6.9h3.4c-.3 3.7-1 5.9-1.7 6.9Zm2.9-2c.5-1.4.8-3.1.9-4.9h3.9a8.1 8.1 0 0 1-4.8 4.9Zm.9-6.9c-.1-1.8-.4-3.5-.9-4.9a8.1 8.1 0 0 1 4.8 4.9h-3.9Z'/%3E%3C/svg%3E");
}

.why-strip-points span:nth-child(2) {
  --benefit-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 2h8a2 2 0 0 1 2 2h1a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1a2 2 0 0 1 2-2Zm0 4h8V4H8v2Zm9.7 5.3-1.4-1.4-5.1 5.1-2.4-2.4-1.4 1.4 3.8 3.8 6.5-6.5Z'/%3E%3C/svg%3E");
}

.why-strip-points span:nth-child(3) {
  --benefit-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.5 7 11 10.5l-1.4 1.4L7.5 9.8 4.7 12.6 3.3 11.2 7.5 7Zm9 0 4.2 4.2-1.4 1.4-2.8-2.8-2.1 2.1-1.4-1.4L16.5 7ZM4 15h5.3l2.7 2.7 2.7-2.7H20v2h-4.5L12 20.5 8.5 17H4v-2Z'/%3E%3C/svg%3E");
}

.why-strip-points span:nth-child(4) {
  --benefit-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3 5h11v9h1.5l2-3H21v6h-2a2.5 2.5 0 0 1-5 0H9a2.5 2.5 0 0 1-5 0H3V5Zm13.6 8-1 1.5H19V13h-2.4ZM6.5 18.5A1.5 1.5 0 1 0 6.5 15a1.5 1.5 0 0 0 0 3.5Zm10 0A1.5 1.5 0 1 0 16.5 15a1.5 1.5 0 0 0 0 3.5Z'/%3E%3C/svg%3E");
}

.service-card-wide {
  background:
    radial-gradient(circle at 92% 14%, rgba(27, 117, 188, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #e7f0f8 100%);
  border: 1px solid rgba(15, 76, 129, 0.24);
  border-radius: 24px;
  box-shadow: 0 26px 64px rgba(15, 76, 129, 0.18);
  max-width: 1120px;
  padding: clamp(28px, 4vw, 42px);
  width: min(100%, 1120px);
}

.service-card-wide h4 {
  font-size: clamp(1.28rem, 2.1vw, 1.85rem);
}

.service-card-wide .service-price {
  color: #0f4c81 !important;
  font-size: 1.05rem;
}

.service-consultation-options {
  margin-top: 14px;
}

.services-section .category-block:last-child .service-grid.compact {
  grid-template-columns: repeat(2, minmax(240px, 340px));
  justify-content: center;
}

@media (min-width: 760px) {
  .service-card-wide {
    column-gap: 24px;
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .why-strip-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-inner {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .why-strip-points,
  .services-section .category-block:last-child .service-grid.compact {
    grid-template-columns: 1fr;
  }
}

/* Final publication polish: scoped refinements only */
.site-header {
  background: rgba(232, 242, 249, 0.94);
}

.intro-section .section-inner {
  padding-bottom: clamp(34px, 5vw, 52px);
  padding-top: clamp(34px, 5vw, 52px);
}

.services-section .category-block:nth-of-type(4) .service-grid.compact {
  grid-template-columns: repeat(2, minmax(240px, 340px));
  justify-content: center;
}

.services-section > .section-inner > .service-grid.compact:last-of-type {
  margin-top: clamp(30px, 5vw, 48px);
}

.course-details {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
}

.course-details > div:first-child ul {
  column-gap: 18px;
  columns: 2;
}

.course-details > div:first-child li {
  break-inside: avoid;
}

.contact-form {
  border: 1px solid rgba(15, 76, 129, 0.18);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
}

@media (max-width: 900px) {
  .course-details > div:first-child ul {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .services-section .category-block:nth-of-type(4) .service-grid.compact {
    grid-template-columns: 1fr;
  }
}

/* Dispatch course list repair */
.course-details {
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
}

.course-details > div:first-child ul {
  column-gap: normal;
  columns: initial;
}

.course-details li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
}

.course-details li::before {
  content: "✓";
}

@media (max-width: 900px) {
  .course-details {
    grid-template-columns: 1fr;
  }
}

/* Mobile hero layout only */
@media (max-width: 768px) {
  .hero {
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: auto;
    overflow: visible;
    padding: clamp(112px, 24vw, 150px) 24px 30px;
  }

  .hero-content {
    max-width: none;
    order: 1;
    width: 100%;
  }

  .hero-bg {
    aspect-ratio: 16 / 10;
    background-position: center;
    background-size: cover;
    filter: saturate(1.18) contrast(1.16) brightness(1.05);
    inset: auto;
    margin: 2px -24px 0;
    min-height: 240px;
    order: 2;
    position: relative;
    transform: none;
    width: calc(100% + 48px);
  }

  .hero-overlay {
    display: none;
  }

  .hero-brand-lockup,
  .hero .eyebrow,
  .hero h1,
  .hero-promise,
  .hero-copy,
  .hero-actions,
  .hero-stats {
    margin-bottom: 14px;
  }

  .hero-promise {
    max-width: none;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-stats {
    margin-bottom: 0;
    max-width: none;
  }
}

/* iPhone portrait hero isolation only */
@media (max-width: 768px) and (orientation: portrait) {
  html,
  body,
  #top {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .hero *,
  .hero *::before,
  .hero *::after {
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero {
    min-height: 560px;
    overflow: hidden;
    padding: clamp(92px, 20vw, 118px) 20px 22px;
    position: relative;
    width: 100%;
  }

  .hero-content {
    width: 100%;
    z-index: 1;
  }

  .hero-bg {
    background-image: url("assets/hero-truck-daytime.png");
    background-position: 85% top;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(1.18) contrast(1.16) brightness(1.05);
    inset: 0;
    margin: 0;
    position: absolute;
    transform: none;
    width: 100%;
  }

  .hero-overlay {
    display: block;
  }

  .hero-brand-lockup,
  .hero .eyebrow,
  .hero h1,
  .hero-promise,
  .hero-copy,
  .hero-actions,
  .hero-stats {
    width: 100%;
  }
}



