/* ========== Check List ========== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--color-sage);
  font-weight: 700;
  font-size: 1rem;
}

/* ========== Contact Page ========== */
.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    align-items: flex-start;
  }
}

.contact-panel,
.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg, 1rem);
  padding: 2rem;
  border: 1px solid var(--color-border, rgba(10, 27, 42, 0.08));
}

.contact-form-card {
  box-shadow: 0 18px 45px rgba(10, 27, 42, 0.06);
}

.contact-form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy, #0a1b2a);
}

.form-input,
.form-textarea {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md, 0.75rem);
  border: 1px solid var(--color-border, rgba(10, 27, 42, 0.12));
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-navy, #0a1b2a);
  box-shadow: 0 0 0 3px rgba(10, 27, 42, 0.06);
  background-color: #ffffff;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .form-submit-row {
    flex-direction: row;
    align-items: center;
  }
}

.form-footer-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-disclaimer,
.form-note {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}

@media (min-width: 900px) {
  .form-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

:root {
  --color-navy: #0A1B2A;
  --color-red: #E63946;
  --color-sage: #7CB69D;
  --color-bg: #F7F7FB;
  --color-text: #2F3340;
  --color-border: #E1E3EC;
  
  /* Retaining legacy colors for compatibility */
  --color-charcoal: #3B3B3B;
  --color-white: #FFFFFF;
  --color-red-dark: #C82333;
  --color-bg-alt: #ffffff; /* mapped to white in new design usually, or just keep as is? User said section--alt is #ffffff */

  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-pill: 999px;
  --radius-sm: 0.5rem;

  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 18px 45px rgba(10, 27, 42, 0.12);
  --shadow-subtle: 0 6px 20px rgba(10, 27, 42, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

/* Page layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
  padding-bottom: 4rem;
}

/* Skip link */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}


/* Trust Strip */
.trust-strip {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  background-color: #ffffff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  text-align: left;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
}

.trust-icon {
  color: var(--color-sage);
  font-weight: 800;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .trust-row {
    justify-content: flex-start;
    gap: 0.75rem;
  }
  
  .trust-item {
    width: 100%;
    font-size: 0.9rem;
  }
}

/* Proof Strip */
.section--tight {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  background-color: #ffffff;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  text-align: left;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(124, 182, 157, 0.10);
  border: 1px solid rgba(10, 27, 42, 0.06);
}

.proof-icon {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #E63946, #E67D6B);
  box-shadow: 0 0 0 2px rgba(230, 125, 107, 0.28);
  flex-shrink: 0;
}

.proof-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555A66;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .proof-strip {
    justify-content: flex-start;
  }

  .proof-item {
    width: 100%;
  }

  .proof-text {
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .proof-strip {
    justify-content: center;
  }
}


.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}

.section--alt {
  padding: 3rem 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--color-navy);
}

.section-subtitle {
  margin: 0 auto;
  max-width: 640px;
  color: #565A66;
  font-size: 0.97rem;
}

/* Grid */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ========== Header & Nav ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(10, 27, 42, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Logo */

.logo-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.logo-group .byline {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-align: center;
  width: 100%;
}

.logo-group .byline:hover {
  color: rgba(255, 255, 255, 0.7);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 40%;
  background: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--color-white);
}

/* Nav */

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.nav-link--active {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.nav-cta {
  font-size: 0.85rem;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  margin: 4px 0;
  border-radius: 999px;
}

/* Mobile nav behaviour */

@media (max-width: 800px) {
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background-color: var(--color-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1.25rem;
    gap: 0.75rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .site-nav.nav--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-cta {
    align-self: stretch;
    justify-content: center;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn--nav {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .btn--nav {
    width: 100%;
    text-align: center;
  }
}

.closing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.footer-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-cta-text {
  font-size: 0.9rem;
  color: #F0F2F4;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #555A66;
  line-height: 1.6;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.btn--primary {
  background-color: var(--color-red);
  color: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.btn--primary:hover {
  background-color: var(--color-red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--secondary {
  background-color: var(--color-navy);
  color: #ffffff;
}

.btn--secondary:hover {
  background-color: #07121f;
}

.btn--ghost {
  background-color: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.btn--ghost:hover {
  background-color: rgba(10, 27, 42, 0.05);
}

.btn--ghost-invert {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn--ghost-invert:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn--small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

/* Dropdown Nav */

.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link-dropdown::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.nav-link-dropdown:hover::after,
.nav-link-dropdown[aria-expanded="true"]::after {
  border-top-color: #ffffff;
}

.nav-link-dropdown[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  list-style: none;
  z-index: 100;
  border: 1px solid rgba(10, 27, 42, 0.08);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.15s ease;
}

.dropdown-item:hover {
  background-color: rgba(10, 27, 42, 0.04);
}

@media (max-width: 800px) {
  .nav-item-dropdown {
    width: 100%;
  }
  
  .nav-link-dropdown {
    width: 100%;
    justify-content: space-between;
    padding: 0.4rem 0.65rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    padding: 0.5rem;
    display: none;
  }
  
  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu {
    display: block;
  }
  
  .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
  }
  
  .dropdown-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* ========== Hero ========== */

.hero {
  background: radial-gradient(circle at top left, rgba(124, 182, 157, 0.26), transparent 55%),
              radial-gradient(circle at bottom right, rgba(230, 57, 70, 0.22), transparent 50%),
              var(--color-navy);
  color: #ffffff;
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  }
}

.hero-copy {
  max-width: 620px;
}

/* Eyebrow / page hero */
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  color: #555A66; /* Darker for better visibility on light backgrounds */
  font-weight: 600;
}

.hero .eyebrow,
.page-hero .eyebrow,
.hero-kicker {
  color: rgba(255, 255, 255, 0.7); /* Default: Light on dark hero backgrounds */
}

/* Specific override for light sage backgrounds */
.section-bg-sage .eyebrow,
.page-hero.section-bg-sage .eyebrow,
.section-bg-sage .hero-kicker,
.page-hero.section-bg-sage .hero-kicker {
  color: #0A1B2A !important; /* Navy text on Sage background */
  opacity: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-highlight {
  color: var(--color-sage);
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-guarantee {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Hero side card */

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card-legacy {
  background-color: #ffffff;
  color: var(--color-charcoal);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
  margin-left: auto;
}

.hero-card-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
}

.hero-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.95rem;
}

.hero-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-sage);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
}

.hero-link:hover {
  text-decoration: underline;
}

/* ========== Logos Section ========== */

.section--logos {
  padding: 2.5rem 0;
  text-align: center;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.logos-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9aa0a6;
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.logos-img {
  max-width: 300px;
  height: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
  mix-blend-mode: multiply;
}

.logos-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* Pricing Table */
.pricing-table-container {
  overflow-x: auto;
  margin-top: 2rem;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  background: #fff;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.pricing-table th {
  background-color: #f9fafb;
  font-weight: 600;
  color: var(--color-navy);
  text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-navy);
  background-color: #fff;
  position: sticky;
  left: 0;
  z-index: 1;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .check-icon {
  color: var(--color-sage);
  font-weight: bold;
}

.pricing-table .dash-icon {
  color: #ccc;
}

/* Feature Grid (Section 2) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-text);
}

.feature-item-icon {
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 0.2rem;
}


.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.3rem;
  box-shadow: 0 8px 24px rgba(10, 27, 42, 0.04);
  position: relative;
}

.card--warning {
  border-color: rgba(230, 57, 70, 0.4);
}

.card--success {
  border-color: rgba(124, 182, 157, 0.5);
}

.card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-navy);
}

.card-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.card-list li + li {
  margin-top: 0.4rem;
}

/* Steps */

.step {
  text-align: left;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(230, 57, 70, 0.08);
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: 1rem;
}

.step-text {
  margin: 0;
  font-size: 0.95rem;
  color: #565A65;
}


/* Steps Grid */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.step-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(10, 27, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 27, 42, 0.06);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-navy);
  margin: 0 0 0.75rem;
}

.step-card .contact-text {
  font-size: 0.95rem;
  color: #555A66;
  margin: 0;
  line-height: 1.5;
}

/* Section CTA */

.section-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Contact FAQ */
.contact-faq {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

/* Booking Embed */
.booking-embed iframe {
  width: 100%;
  min-height: 650px;
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
}

.booking-embed-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.faq-list {
  margin: 1rem 0 0;
}

.faq-list dt {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.faq-list dd {
  margin: 0 0 1rem;
  color: #555A66;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-list dd:last-child {
  margin-bottom: 0;
}

.faq-list a {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 500;
}

.faq-list a:hover {
  text-decoration: underline;
}

/* Trust tools strip */

.trust-section {
  padding: 2.5rem 0;
}

.trust-inner {
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #F8FAFB, #EEF3F5);
  border: 1px solid rgba(10, 27, 42, 0.06);
  box-shadow: 0 10px 24px rgba(10, 27, 42, 0.05);
}

.trust-heading {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0A1B2A;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.trust-text {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #9CA3AF;
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: default;
}

.trust-text:hover {
  transform: translateY(-1px);
}

.brand-google:hover { color: #EA4335; }   /* Red */
.brand-microsoft:hover { color: #7FBA00; } /* Green */
.brand-calendly:hover { color: #006BFF; }  /* Blue */
.brand-stripe:hover { color: #635BFF; }    /* Blurple */
.brand-wix:hover { color: #111111; }       /* Black */
.brand-godaddy:hover { color: #1BDBDB; }   /* Teal */

.trust-note {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: #6C717A;
}

@media (max-width: 720px) {
  .trust-inner {
    padding: 1.25rem 1rem;
  }

  .trust-logos {
    gap: 1.1rem;
  }

  .trust-logo img {
    max-height: 22px;
  }
}

/* ========== Footer ========== */

.site-footer {
  background-color: #0A1B2A;
  color: #F2F4F7;
  padding: 2.5rem 0 2.75rem;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-logo-link {
  text-decoration: none;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.footer-tagline {
  margin: 0.65rem 0 1rem;
  font-size: 0.9rem;
  color: #D0D4DB;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-cta-text {
  font-size: 0.9rem;
  color: #F0F2F4;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #D0D4DB;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

/* Footer bottom row */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #8D95A1;
}

.footer-meta-links {
  display: flex;
  gap: 0.75rem;
}

.footer-meta-links a {
  color: #8D95A1;
  text-decoration: none;
}

.footer-meta-links a:hover {
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========== Responsive tweaks ========== */

/* Page-specific helpers */

.page-hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(124, 182, 157, 0.26), transparent 55%),
              radial-gradient(circle at bottom right, rgba(230, 57, 70, 0.22), transparent 50%),
              var(--color-navy);
  color: #ffffff;
}

.page-hero .container {
  max-width: 1080px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.dashboard-card {
  background: linear-gradient(145deg, #FFFFFF, #F7F9FA);
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 45px rgba(6, 18, 32, 0.45);
  border: 1px solid rgba(10, 27, 42, 0.14);
  max-width: 22rem;
  color: #0A1B2A;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dashboard-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.dashboard-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background-color: rgba(124, 182, 157, 0.16);
}

.dashboard-metrics {
  margin-bottom: 1rem;
}

.metric {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.metric-label {
  color: #3B3B3B;
}

.metric-value {
  font-weight: 600;
}

.metric-value--done {
  color: #1B7F4A;
}
.metric-value--active {
  color: #E67D6B;
}
.metric-value--pending {
  color: #7A7F88;
}

.dashboard-timeline {
  border-top: 1px solid rgba(10, 27, 42, 0.06);
  padding-top: 0.75rem;
}

.timeline-step {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.timeline-step p {
  margin: 0.15rem 0 0;
  color: #555A66;
}

.timeline-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background-color: #E63946;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .dashboard-card {
    max-width: 100%;
  }
}

.section-header--left {
  text-align: left;
}

.section-subtitle--left {
  margin-left: 0;
}

/* Services */

.services-grid {
  align-items: stretch;
}

/* CTA band */

.section-cta-band {
  background-color: var(--color-navy);
  color: #ffffff;
  padding: 3rem 0;
}

.section-cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.section-cta-band-copy .section-title {
  color: #ffffff;
}

.section-cta-band-copy .section-subtitle {
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
}

.section-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .section-cta-band-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Pricing */

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(10, 27, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.pricing-card--highlight {
  border-color: rgba(230, 57, 70, 0.7);
  box-shadow: 0 20px 50px rgba(10, 27, 42, 0.15);
}

.pricing-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--color-red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-navy);
}

.pricing-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #5b5f6b;
}

.pricing-numbers {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.pricing-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c8090;
}

.pricing-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy);
}

.pricing-features {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.pricing-features li + li {
  margin-top: 0.3rem;
}

.pricing-note {
  margin: 0;
  font-size: 0.85rem;
  color: #6a6f7a;
}

.btn--block {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}

/* Plan Card (Session) */
.plan-card {
  /* Inherit base pricing card styles manually if needed or just use these */
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(10, 27, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.plan-card--session {
  border-color: var(--color-sage);
  background-color: rgba(124, 182, 157, 0.04);
}

.plan-name {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-navy);
}

.plan-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

.plan-description {
    margin: 0;
    font-size: 0.9rem;
    color: #5b5f6b;
}

.plan-features {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

.plan-features li + li {
    margin-top: 0.3rem;
}

/* Independence card */

.independence-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(10, 27, 42, 0.08);
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .independence-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
    align-items: center;
  }
}

.independence-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-navy);
}

.independence-price {
  margin: 0.35rem 0 0.2rem;
  font-weight: 700;
}

.independence-note {
  margin: 0;
  font-size: 0.9rem;
  color: #5e6370;
}

.independence-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.independence-list li + li {
  margin-top: 0.3rem;
}

.independence-actions {
  margin-top: 0.75rem;
}

/* Comparison */

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background-color: rgba(10, 27, 42, 0.02);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-navy);
  font-weight: 600;
}

.comparison-table td {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:nth-child(4),
.comparison-table th:nth-child(4) {
  background-color: rgba(124, 182, 157, 0.06);
  font-weight: 600;
  color: var(--color-navy);
  font-weight: 600;
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 0;
  }
  .hero {
    padding: 3.25rem 0 3rem;
  }
  .hero-card {
    max-width: 100%;
  }
}

/* About / Timeline / Values */

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-item {
  padding: 1.4rem 1.25rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 22px rgba(10, 27, 42, 0.04);
}

.timeline-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
}

.timeline-text {
  margin: 0;
  font-size: 0.95rem;
  color: #555b66;
}

.values-grid {
  align-items: stretch;
}

.value-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.3rem;
}

.value-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-navy);
}

.value-text {
  margin: 0;
  font-size: 0.9rem;
  color: #565a66;
}

/* Founder */

.founder {
  max-width: 800px;
}

.founder-text {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(10, 27, 42, 0.06);
}

.founder-body {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.founder-signoff {
  margin: 1.1rem 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.founder-signature {
  font-family: "Barlow", sans-serif; /* or script font if loaded */
  font-size: 1.1rem;
  color: var(--color-navy);
  font-weight: 700;
}

/* Home pillar */

.home-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #0A1B2A;
  color: #0A1B2A;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: none;
  margin-bottom: 1rem;
}

.home-card-title {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin: 0.5rem 0 0.75rem;
  font-size: 1.15rem;
}

.home-pillar {
  padding: 1.75rem 1.5rem;
  padding-top: 4.5rem;
  position: relative;
}

.home-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

.home-list li + li {
  margin-top: 0.4rem;
}

/* Home who grid */

.home-who-grid {
  gap: 1rem;
}

.home-who-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.who-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background-color: rgba(10, 27, 42, 0.06);
  color: #0A1B2A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.home-who-card .home-card-title {
  margin: 0;
}

.home-text-small {
  font-size: 0.9rem;
  margin: 0;
  color: #555;
}

/* Home steps */

.home-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .home-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.home-steps h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.home-steps p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

/* Soft off-white */
.section-bg-offwhite {
  background-color: #F8FAFB;
}

/* Soft sage tint */
.section-bg-sage {
  background-color: rgba(124, 182, 157, 0.08);
}

/* Ensure Page Hero with Sage bg is actually light */
.page-hero.section-bg-sage {
  background: rgba(124, 182, 157, 0.08);
  color: var(--color-navy);
}

/* Data-backed proof section */

.data-proof-section {
  padding: 3.5rem 0;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 600px) {
  .data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .data-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.data-point {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: 0 12px 24px rgba(10, 27, 42, 0.05);
}

.data-number {
  font-size: 2rem;
  font-weight: 700;
  color: #E63946;
  display: block;
  margin-bottom: 0.5rem;
}

.data-point p {
  margin: 0;
  font-size: 0.9rem;
  color: #555A66;
}

.data-source {
  display: block;
  font-size: 0.75rem;
  color: #868C95;
  margin-top: 0.25rem;
}

/* Roadmap Section */
.roadmap-section {
  padding: 4rem 0;
}

.roadmap-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.roadmap-line::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(10,27,42,0.16), rgba(10,27,42,0.04));
  z-index: 0;
}

.roadmap-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1;
}

.roadmap-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background-color: #E63946;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.25rem;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18);
}

.roadmap-body h3 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
  color: var(--color-navy);
}

.roadmap-body p {
  font-size: 0.9rem;
  margin: 0;
  color: #555A66;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .roadmap-line {
    grid-template-columns: minmax(0, 1fr);
  }

  .roadmap-line::before {
    top: auto;
    left: 1rem;
    right: auto;
    bottom: 0.5rem;
    width: 2px;
    height: calc(100% - 2.5rem);
  }
}

/* Home Who Layout */
.home-who-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.home-who-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-who-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
}

.who-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: rgba(10, 27, 42, 0.06);
  color: #0A1B2A;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 160px; /* Force wrapping to save horizontal space */
}

.home-who-row p {
  margin: 0;
  font-size: 0.9rem;
  color: #555A66;
}

.home-who-aside h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: 1.1rem;
}

.home-who-aside p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #555A66;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .home-who-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Steps List (How It Works) */
.steps-list {
  list-style: none;
  margin: 3rem auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 600px;
}

.step-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 2px solid #0A1B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.15rem;
  color: var(--color-navy);
}

.step-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--color-navy);
}

.step-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #555A66;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .step-row {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home guarantee section */

.section-home-guarantee {
  padding: 3.5rem 0;
}

.home-guarantee-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .home-guarantee-inner {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    align-items: center;
  }
}

.section-home-guarantee .section-title {
  margin-bottom: 0.75rem;
}

.section-home-guarantee .section-subtitle {
  max-width: none;
  margin: 0;
}

.home-guarantee-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center; /* Vertical alignment */
}

/* Fix for round button issue */
.section-home-guarantee .btn {
  white-space: nowrap;
  border-radius: 999px;
  width: auto; /* Prevent full width stretching which might distort shape */
  min-width: 180px; /* Ensure reasonable click area */
}

@media (min-width: 800px) {
  .home-guarantee-actions {
    justify-content: flex-end;
  }
}

.section-home-guarantee .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.section-home-guarantee .btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Home two col */

.home-two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) {
  .home-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.home-text {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: #444;
}

.home-highlight {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
}

.home-highlight h3 {
  margin-top: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
}

.home-highlight ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.home-highlight li {
  margin-bottom: 0.5rem;
}

/* Resources grid */
.resources-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.resource-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.resource-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-sage);
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.resource-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    color: var(--color-navy);
    line-height: 1.3;
}

.resource-title a {
    color: inherit;
    text-decoration: none;
}

.resource-title a:hover {
    color: var(--color-red);
}

.resource-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.resource-meta {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-weight: 500;
}

.resources-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.resources-note {
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
}

.form-input, .form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: #fdfdfd;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(10, 27, 42, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Callout */
.callout {
    background-color: var(--color-navy);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.callout .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.callout .contact-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.callout .contact-text strong {
    color: #fff;
}

/* Plan Fit Grid */

.plan-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.plan-fit-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 6px 16px rgba(10, 27, 42, 0.04);
}

.plan-fit-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-navy);
}

.plan-fit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555A66;
}

/* Quick Plan Comparison */
.plan-compare {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.plan-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.plan-compare-row:last-child {
  border-bottom: none;
}

.plan-compare-row--head {
  background-color: rgba(10, 27, 42, 0.02);
}

.plan-compare-cell {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #555A66;
  border-right: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.plan-compare-cell:last-child {
  border-right: none;
}

.plan-compare-cell strong {
  color: var(--color-navy);
  font-family: var(--font-heading);
}

.plan-compare-row--head .plan-compare-cell {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .plan-compare {
    display: block;
    overflow-x: auto;
  }
  .plan-compare-row {
    min-width: 600px; /* Force scroll on small screens */
  }
}


/* Plan Fit Grid */
.plan-fit-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.plan-fit-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 12px rgba(10, 27, 42, 0.03);
}

.plan-fit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.plan-fit-card .contact-text {
  font-size: 0.9rem;
  color: #555A66;
  margin: 0;
  line-height: 1.5;
}

/* Quick Plan Comparison */
.plan-compare {
  margin-top: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #ffffff;
}

.plan-compare-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--color-border);
}

.plan-compare-row:last-child {
  border-bottom: none;
}

.plan-compare-row--head {
  background-color: rgba(10, 27, 42, 0.02);
  display: none; /* Hide header on mobile */
}

.plan-compare-cell {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

/* Plan Labels (Hidden on Desktop) */
.plan-label {
  display: none;
}

@media (max-width: 768px) {
  .plan-compare {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .plan-compare-row {
    display: grid;
    grid-template-columns: 100%; /* Stack all cells vertically */
    border-bottom: 1px solid var(--color-border);
  }

  .plan-compare-row.plan-compare-row--head {
    display: none; /* hide header row on mobile */
  }

  .plan-compare-cell {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
  
  /* Feature name styling for mobile */
  .plan-compare-cell:first-child {
    padding-top: 1rem;
    padding-bottom: 0.25rem;
    font-weight: 700;
    color: var(--color-navy);
    background-color: rgba(10, 27, 42, 0.02);
  }
  
  .plan-compare-cell:last-child {
    padding-bottom: 1rem;
  }

  .plan-compare-cell strong {
    font-size: 0.9rem;
  }

  .plan-label {
    display: inline;
    font-weight: 600;
    margin-right: 4px;
    color: var(--color-navy);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .plan-compare-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  
  .plan-compare-row--head {
    display: grid;
  }
  
  .plan-compare-cell {
    border-right: 1px solid var(--color-border);
  }
  
  .plan-compare-cell:last-child {
    border-right: none;
  }
  
  .plan-compare-row:not(.plan-compare-row--head) .plan-compare-cell:first-child {
    font-weight: 600;
    color: var(--color-navy);
    background-color: rgba(10, 27, 42, 0.01);
  }
}

/* =========================
   MOBILE UX TIGHTENING
   ========================= */

/* Tablet and down */
@media (max-width: 900px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .section-header {
    text-align: left;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.98rem;
  }

  /* Hero layout: stack text over visual */
  .page-hero-layout,
  .page-hero-grid,
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .page-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-main {
    text-align: left;
  }

  .hero-kicker {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-cta-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero-cta-row .btn {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  /* Card grids → 2-column where it makes sense */
  .grid,
  .home-pillar-grid,
  .data-grid,
  .success-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  /* Roadmap timeline spacing */
  .roadmap-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .roadmap-line {
    gap: 1.25rem;
  }

  .roadmap-body h3 {
    font-size: 0.92rem;
  }

  .roadmap-body p {
    font-size: 0.88rem;
  }

  /* Who we serve layout already stacks; just soften spacing */
  .home-who-layout {
    gap: 1.75rem;
  }

  /* Steps list readability */
  .steps-list {
    gap: 1.1rem;
  }

  .step-body p {
    font-size: 0.9rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Comparison Page Styles */
/* -------------------------------------------------------------------------- */

.compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(10, 27, 42, 0.05);
  font-size: 0.95rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(10, 27, 42, 0.08);
}

.compare-table thead {
  background: #0A1B2A;
  color: #ffffff;
}

.compare-table thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 1.2rem 1.25rem;
  border-bottom: none;
}

/* Highlight "Franchise Free" column header */
.compare-table thead th:last-child {
  background: #E63946; /* Brand accent color if applicable, or a lighter navy */
  color: #fff;
  position: relative;
}

.compare-table th:first-child,
.compare-table td:first-child {
  font-weight: 600;
  width: 20%;
  color: #1A3C5E;
  background: #fdfdfd;
}

.compare-table tbody tr:nth-child(even) {
  background: #F8FAFB;
}

.compare-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.compare-table tbody tr:hover {
  background: #EEF3F6;
}

/* Last row border removal */
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Compare Cards Layout */
.compare-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.compare-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: 0 10px 22px rgba(10, 27, 42, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.compare-card--highlight {
  border-color: #E63946;
  box-shadow: 0 14px 28px rgba(230, 57, 70, 0.15);
  position: relative;
}

/* Optional "Best Fit" badge if desired */
.compare-card--highlight::before {
  content: "Recommended for Independents";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #E63946;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  color: #0A1B2A;
}

.compare-card p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: #4A5568;
  line-height: 1.6;
}

.compare-card .checklist {
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Pushes content down so cards can align if fixed height */
}

/* Button utility for full width inside card */
.btn--block {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .compare-fit-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff; /* Ensure bg covers scrolling content */
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
  }
  
  .compare-table tbody tr:nth-child(even) td:first-child {
    background: #F8FAFB;
  }
}

/* -------------------------------------------------------------------------- */
/* Founder Section */
/* -------------------------------------------------------------------------- */

.founder-section {
  background: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 4rem;
  align-items: center;
}

.founder-bio .kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7CB69D;
  margin-bottom: 0.5rem;
}

.founder-bio .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.founder-bio .section-subtitle {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  color: #3B3F47;
}

.founder-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 1.25rem;
}

.founder-highlights {
  margin: 1.5rem 0 2rem;
  padding-left: 1.2rem;
  list-style: none;
}

.founder-highlights li {
  margin-bottom: 0.6rem;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.founder-highlights li::before {
  content: "✔";
  position: absolute;
  left: -1.2rem;
  color: #7CB69D;
  font-weight: bold;
}

.founder-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.founder-side {
  display: flex;
  justify-content: center;
}

.founder-card {
  background: #F8FAFB;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  text-align: center;
  box-shadow: 0 12px 24px rgba(10, 27, 42, 0.06);
  max-width: 320px;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  background: #0A1B2A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.founder-meta {
  margin-bottom: 1.25rem;
}

.founder-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  color: #0A1B2A;
}

.founder-title {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: #6C717A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }
  
  .founder-side {
    order: -1; /* Show founder card first on mobile? Or keep bottom? Let's keep bottom for flow */
    order: 0; 
    justify-content: flex-start;
  }
  
  .founder-card {
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .founder-avatar {
    margin: 0;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .founder-meta {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 600px) {
  .founder-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .founder-avatar {
    margin-bottom: 1rem;
  }
  
  .founder-cta {
    flex-direction: column;
  }
  
  .founder-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* -------------------------------------------------------------------------- */
/* Pricing layout */
/* -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-alt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.plan-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: 0 10px 22px rgba(10, 27, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.plan-card--popular {
  border-color: #E63946;
  box-shadow: 0 16px 30px rgba(230, 57, 70, 0.18);
  position: relative;
}

.plan-card--independence {
  opacity: 0.92;
}

.plan-card--consult {
  border-color: rgba(10, 27, 42, 0.12);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.4rem;
  background: #E63946;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.plan-header {
  margin-bottom: 0.2rem;
}

.plan-name {
  margin: 0;
  font-size: 1.15rem;
}

.plan-tagline {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #6C717A;
}

.plan-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plan-price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem;
}

.plan-price-main {
  font-size: 1.4rem;
  font-weight: 700;
}

.plan-price-note {
  font-size: 0.8rem;
  color: #6C717A;
}

.plan-price-secondary .plan-price-main {
  font-size: 1.1rem;
  font-weight: 600;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0.5rem;
  font-size: 0.9rem;
  color: #414550;
}

.plan-features li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1.1rem;
}

.plan-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #E63946;
}

.plan-cta {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-ideal {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #6C717A;
}

.btn--outline {
  border: 1px solid #0A1B2A;
  background: transparent;
  color: #0A1B2A;
}

.btn--outline:hover {
  background: #0A1B2A;
  color: #FFFFFF;
}

.plan-secondary-note {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0.78rem;
  color: #6C717A;
  text-align: left;
  cursor: pointer;
}

.help-choose {
  max-width: 54rem;
}

.help-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.help-choose-card {
  background: #F8FAFB;
  border-radius: 0.9rem;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(10, 27, 42, 0.06);
  font-size: 0.9rem;
}

.help-choose-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.guarantee {
  text-align: center;
  max-width: 42rem;
}

.guarantee-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #3B3F47;
}

/* Responsive tweaks for pricing */

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

  .pricing-alt-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .help-choose-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .plan-card {
    padding: 1.4rem 1.1rem 1.25rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Services overview */
/* -------------------------------------------------------------------------- */

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.services-intro .kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7CB69D;
  margin-bottom: 0.5rem;
}

.services-intro-list {
  margin: 1.25rem 0 1.25rem;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #3B3F47;
}

.services-intro-list li {
  margin-bottom: 0.4rem;
}

.services-intro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Service pillars */

.services-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-pill {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.3rem 1.2rem 1.2rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: 0 10px 22px rgba(10, 27, 42, 0.05);
}

.service-pill-bar {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #E63946;
  margin-bottom: 0.7rem;
}

.service-pill-bar--accent {
  background: #7CB69D;
}

.service-pill-bar--dark {
  background: #0A1B2A;
}

.service-pill-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.service-pill-text {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #4A4F58;
}

.service-pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: #3F434C;
}

.service-pill-list li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1.1rem;
}

.service-pill-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: #E63946;
  font-size: 0.85rem;
}

/* Services flow "mini diagrams" */

.services-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.flow-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: 0 10px 22px rgba(10, 27, 42, 0.05);
  font-size: 0.9rem;
}

.flow-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 0.98rem;
}

.flow-card p {
  margin: 0;
  color: #3F434C;
}

.flow-visual {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  background: #F8FAFB;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
}

.flow-node {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(10, 27, 42, 0.12);
  font-size: 0.75rem;
}

.flow-node--primary {
  background: #0A1B2A;
  color: #FFFFFF;
  border-color: #0A1B2A;
}

.flow-arrow {
  font-size: 0.8rem;
  color: #6C717A;
}

/* Responsive */

@media (max-width: 960px) {
  .services-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-pillars {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-pill {
    flex: 1 1 min(280px, 100%);
  }

  .services-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-flow-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-intro-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Phone-sized screens */
@media (max-width: 640px) {
  .section {
    padding: 2.25rem 0;
  }

  /* 
     Removed .container reset so it keeps its default padding (1.25rem)
     This fixes the hero section which relies on container padding,
     and prevents double-padding in sections since we removed horizontal padding from .section above.
  */

  .section-header {
    margin-bottom: 1.25rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  /* Global text sizing */
  body {
    font-size: 0.95rem;
  }

  p {
    line-height: 1.55;
  }

  /* Buttons: bigger tap targets */
  .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.98rem;
    justify-content: center;
  }

  .btn--nav {
    width: 100%;
    text-align: center;
  }

  .closing-cta {
    flex-direction: column;
    align-items: stretch;
  }

  /* Trust section tightening */
  .trust-inner {
    padding: 1.25rem 1rem;
  }

  .trust-logos {
    gap: 1rem;
  }

  .trust-logo img {
    max-height: 20px;
  }

  /* FAQ / data cards spacing */
  .faq-grid,
  .data-grid {
    gap: 1.25rem;
  }

  .faq-item h3 {
    font-size: 0.9rem;
  }

  .faq-item p {
    font-size: 0.88rem;
  }

  /* Success section cards */
  .success-section {
    padding: 2.5rem 1rem;
  }

  .success-card {
    padding: 1.25rem 1rem;
  }

  /* Footer tightening */
  .site-footer {
    padding: 1.75rem 1rem 2.5rem;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-text {
    font-size: 0.85rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Proof Section */
/* -------------------------------------------------------------------------- */

.proof-section {
  background: #F8FAFB;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.proof-card {
  background: #ffffff;
  padding: 1.4rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(10, 27, 42, 0.09);
  text-align: center;
  box-shadow: 0 8px 22px rgba(10, 27, 42, 0.07);
}

.proof-number {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #E63946;
}

.proof-label {
  margin: 0.6rem 0 0.4rem;
  font-size: 0.95rem;
  color: #333;
}

.proof-note {
  margin: 0;
  font-size: 0.75rem;
  color: #777;
}

.proof-cta {
  text-align: center;
  margin-top: 2.4rem;
}

/* Responsive */
@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================
   MOBILE POLISH – HEADER & HERO
   ========================= */

@media (max-width: 768px) {
  /* Header spacing */
  .site-header {
    padding: 0.6rem 0;
  }

  .nav-inner,
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: nowrap;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-text {
    font-size: 1rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
  }

  /* If your nav links sit horizontally, make them a bit smaller */
  .nav-list a,
  .nav-link {
    font-size: 0.85rem;
  }

  /* Hero tweaks */
  .page-hero {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .page-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .page-subtitle {
    font-size: 0.95rem;
    margin-top: 0.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 1.1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   MOBILE POLISH – GRIDS & CARDS
   ========================= */

@media (max-width: 900px) {
  /* Two-column max on tablets */
  .pricing-grid,
  .services-flow-grid,
  .proof-grid,
  .home-pillar-grid,
  .data-grid,
  .success-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  /* One column on phones */
  .pricing-grid,
  .services-flow-grid,
  .proof-grid,
  .services-pillars,
  .compare-fit-layout,
  .help-choose-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .services-pillars {
    display: flex;
    flex-direction: column;
  }

  .plan-card,
  .service-pill,
  .flow-card,
  .proof-card,
  .compare-card {
    padding: 1.25rem 1.05rem;
  }
}

/* =========================
   INDUSTRIES LAYOUTS
   ========================= */

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.industry-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: #3F434C;
}

.industry-list li {
  margin-bottom: 0.35rem;
}

.industry-side-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: 0 10px 24px rgba(10, 27, 42, 0.06);
  font-size: 0.95rem;
}

.industry-side-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.industry-side-card ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.1rem;
}

.industry-cta {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Packages grid */
.industry-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 2rem;
}

.industry-package-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: 0 8px 20px rgba(10, 27, 42, 0.05);
  font-size: 0.95rem;
}

.industry-package-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.industry-package-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

/* Reuse mini-faq styling if not already defined */
.mini-faq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.mini-faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-navy);
}

/* Responsive */
@media (max-width: 960px) {
  .industry-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .industry-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .industry-packages-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.home-guarantee-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #9CA3AF;
  max-width: 320px;
}

.footer-bottom-link {
  margin: 0;
}

.footer-bottom-link a {
  font-size: 0.85rem;
  color: #9CA3AF;
  text-decoration: none;
}

.footer-bottom-link a:hover {
  color: #E5E7EB;
  text-decoration: underline;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 600px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* FAQ Accordion */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
  color: #0A1B2A;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  color: #0A1B2A;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.5;
}

/* Booking Embed */
.booking-embed iframe {
  width: 100%;
  height: 600px;
  border: none;
  min-height: 500px;
}


/* Pricing Cards */
.plan-features-wrapper {
  margin-bottom: 2rem;
}

.feature-detail summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-detail summary::-webkit-details-marker {
  display: none;
}

.feature-detail summary::after {
  content: 'ⓘ';
  font-size: 0.8rem;
  opacity: 0.5;
  margin-left: auto;
}

.feature-explanation {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--color-border);
  line-height: 1.5;
}

.plan-outcome {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.plan-features li {
  margin-bottom: 0.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(10, 27, 42, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

