/* ============================================================
   Laura Unwin Coaching & Consultancy
   Stylesheet
   ============================================================ */

/* --- Variables --- */
:root {
  /* Brand colours (from design brief) */
  --bg-color:        #F9F7F2;   /* Warm Parchment */
  --primary-header:  #2D4033;   /* Deep Forest Green */
  --body-text:       #3D3D3D;   /* Dark Charcoal */
  --accent:          #D9AE94;   /* Soft Terracotta */
  --secondary-text:  #566878;   /* Slate Blue — darkened for AA contrast (5.4:1) */

  /* Logo palette */
  --slate-blue:      #4A4C70;   /* Primary interactive colour */
  --lavender:        #6A869B;
  --lavender2:       #B491C8;
  --sage:            #81B3A9;   /* Teal/sage — accent highlights */
  --teal:            #55988D;
  --forest:          #416C5E;

  /* UI */
  --border-color:  #E2DED7;
  --card-bg:       #FFFFFF;
  --nav-height:    112px;
  --max-width:     100%;
  --section-pad:   96px;
  --radius:        4px;
  --radius-lg:     10px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.05);
  --transition:    200ms ease;
}


/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
  scroll-padding-top: var(--nav-height);
}

body {
  padding-top: var(--nav-height);
  background-color: var(--bg-color);
  color: var(--body-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-header);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.35rem, 3.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; }


/* --- Layout Helpers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section-sub {
  color: var(--secondary-text);
  font-size: 1.65rem;
  margin-bottom: 3rem;
  max-width: 580px;
  line-height: 1.7;
}


/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background-color: var(--slate-blue);
  color: #ffffff;
  border-color: var(--slate-blue);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--primary-header);
  border-color: var(--primary-header);
}

.btn-ghost {
  background-color: var(--forest);
  color: #ffffff;
  border-color: var(--forest);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background-color: var(--primary-header);
  border-color: var(--primary-header);
}

.btn-shadow {
  background-color: var(--lavender2);
  color: #ffffff;
  border-color: var(--lavender2);
}

.btn-shadow:hover,
.btn-shadow:focus-visible {
  background-color: var(--primary-header);
  border-color: var(--primary-header);
}

.btn-nav {
  background-color: var(--slate-blue);
  color: #ffffff !important;
  margin-right: 1rem;
  padding: 0.55rem 1.4rem;
  font-size: 1.4rem;
}

.btn-nav:hover {
  background-color: var(--primary-header);
}

.btn--outline {
  background-color: transparent;
  color: var(--slate-blue);
  border-color: var(--slate-blue);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--slate-blue);
  color: #ffffff;
}

.btn:focus-visible {
  outline: 2px solid var(--slate-blue);
  outline-offset: 3px;
}


/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  will-change: transform;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

.nav-logo {
  height: 96px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--primary-header);
  font-weight: 500;
  white-space: nowrap;
}

.nav-brand .brand-sub {
  font-size: 1.7rem;
  color: var(--secondary-text);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--body-text);
  transition: color var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--slate-blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin: -6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--body-text);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--section-pad) * 1.5);
  padding-bottom: calc(var(--section-pad) * 1.5);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg img {
  position: absolute;
  top: 50%;
  left: 66.67%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 700px;
  height: auto;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
}


.hero-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}


.hero-photo img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hero-eyebrow {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-header);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.9rem;
  color: var(--body-text);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}


/* --- Who Section ("Is this where you are?") --- */
.who-section {
  background-color: #ffffff;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.card-title {
  color: var(--slate-blue);
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border-color);
}

.card-subtitle {
  color: var(--slate-blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: -10px; /* Pulls it closer to the h3 */
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--body-text);
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--sage);
}

/* Card Container Base */
.card {
  padding: 24px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background-color: #F9F7F2; /* Warm Parchment */
  transition: all 0.3s ease; /* Smooth transition effect */
}

/* Hover Effect: The "Lift" and Color Change */
.card:hover {
  transform: translateY(-10px); /* Lifts the card up */
  border-color: #2D4033;       /* Changes border to Forest Green */
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Adds a soft shadow */
}

/* --- Goals Section ("Do you want to…") --- */
.goals-section {
  background-color: var(--bg-color);
}

.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 3rem;
  margin-top: 2.5rem;
}

.goal-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.goal-icon {
  color: var(--sage);
  min-width: 22px;
  padding-top: 2px;
  flex-shrink: 0;
}

.goal-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary-header);
  margin-bottom: 0.3rem;
}

.goal-item p {
  font-size: 1.5rem;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.65;
}


/* --- About Section --- */
.about-section {
  background-color: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  margin-top: 2rem;
  align-items: start;
}

.about-text h3 {
  color: var(--slate-blue);
  font-size: 1.65rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.credentials-list li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.65;
}

.credentials-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 600;
  font-size: 1.45rem;
}
.badge-link {
  text-decoration: none; /* Removes the underline */
  color: inherit;        /* Keeps your existing text color */
  display: flex;         /* Maintains the layout of the icon and text */
  align-items: center;
  gap: 12px;
}

.credential-badge:hover {
  opacity: 0.8;          /* Gives a subtle visual cue when hovered */
  cursor: pointer;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.credential-badge {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.badge-icon {
  color: var(--sage);
  flex-shrink: 0;
}

.badge-image {
  width: 100%;
  height: auto;
  display: block;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.badge-text strong {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-header);
}

.badge-text span {
  font-size: 1.4rem;
  color: var(--secondary-text);
}

.pull-quote {
  background-color: var(--bg-color);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.25rem 1.5rem;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--primary-header);
  line-height: 1.65;
  margin: 0;
}


/* --- Services Section --- */
.services-section {
  background-color: var(--bg-color);
}

.services-section h2,
.services-section .section-sub {
  max-width: 100%;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-cta {
  margin-top: 1.5rem;
  align-self: flex-start;
}

.hidden {
  display: none !important;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card--featured {
  border-color: var(--slate-blue);
  border-width: 2px;
}

.service-tier {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.service-name {
  color: var(--slate-blue);
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-for {
  font-size: 1.45rem;
  color: var(--secondary-text);
  font-style: italic;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.55;
}

.service-desc {
  font-size: 1.5rem;
  line-height: 1.7;
  flex: 1;
  color: var(--body-text);
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}


/* --- Testimonials Section --- */
.testimonials-section {
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  flex: 1;
  font-style: italic;
  color: var(--body-text);
  line-height: 1.8;
  font-size: 1.5rem;
  position: relative;
  padding-top: 2rem;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.5;
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
}

.testimonial-card blockquote p {
  margin: 0;
}

.testimonial-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.testimonial-name {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--primary-header);
}

.testimonial-context {
  font-size: 1.4rem;
  color: var(--secondary-text);
  font-style: italic;
  margin-top: 0.1rem;
}


/* --- Contact Section --- */
.contact-section {
  background-color: var(--bg-color);
}



/* --- Footer --- */
.site-footer {
  background-color: var(--primary-header);
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-inner .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #ffffff;
  display: block;
  font-weight: 500;
}

.footer-inner .brand-sub {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 0.2rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-nav a {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-nav a:hover { color: #ffffff; }

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-badges a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  transition: opacity var(--transition);
}

.footer-badges a:hover {
  opacity: 0.9;
}

.footer-badges img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-social a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer-legal {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 1.25rem;
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.8); }


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

@media (min-width: 769px) {
  .hero-content {
    width: 66.666%;
    margin-left: 8.333%;
  }
}

/* Two-row nav for sizes between hamburger and full desktop */
@media (max-width: 1150px) and (min-width: 901px) {
  :root { --nav-height: 130px; }

  .nav-logo { height: 70px; }
  .nav-brand .brand-name { font-size: 2.2rem; }
  .nav-brand .brand-sub { font-size: 1.5rem; }

  .nav {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0;
    padding: 0.5rem 0;
  }

  .nav-brand {
    flex: 1 1 auto;
  }

  .nav-links {
    flex: 0 0 100%;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .credential-badge {
    flex: 1;
    min-width: 220px;
  }

  .pull-quote {
    flex-basis: 100%;
  }
}

/* Nav collapses to hamburger at 900px — covers iPad sizes */
@media (max-width: 900px) {
  :root { --nav-height: 70px; }

  .nav-logo { height: 54px; }
  .nav-brand .brand-name { font-size: 2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-brand .brand-sub { font-size: 1.3rem; white-space: nowrap; }
  .nav-brand { min-width: 0; overflow: hidden; flex-shrink: 1; }
  .nav-brand-text { min-width: 0; overflow: hidden; }

  /* Mobile nav dropdown */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }

  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  html { font-size: 12px; }
  :root { --section-pad: 56px; }

  .container { padding: 0 1.5rem; }

  /* Hero */
  .hero-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-photo img {
    width: 120px;
    height: 120px;
  }

  /* Sections */
  .three-col { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }

  .footer-nav ul { gap: 0.3rem; }
  .footer-badges img { height: 50px; }
}

@media (max-width: 560px) {
  .nav-brand .brand-sub { display: none; }
  .nav-brand .brand-name { font-size: 1.8rem; }
  .nav-logo { height: 44px; }

  .services-grid { grid-template-columns: 1fr; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }
}
.lu-contact-card {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #eee;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--slate-blue);
  }

  .lu-field-group {
    margin-bottom: 20px;
  }

  .lu-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .lu-input, .lu-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    background-color: var(--off-white);
    font-size: 1rem;
    color: var(--slate-blue);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }

  .lu-input:focus, .lu-textarea:focus {
    outline: none;
    border-color: var(--sage);
    background-color: #fff;
  }

  /* Journey Section */
  .lu-journey-section {
    margin: 25px 0;
  }

  .lu-radio-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .lu-radio-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 0;
  }

  .lu-radio-item input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--teal);
  }

/* Consent Section */
  .lu-consent-group {
    margin: 25px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  .lu-checkbox-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    cursor: pointer;
    line-height: 1.4;
    color: var(--lavender);
  }
  .lu-checkbox-item input {
    margin-top: 3px;
    margin-right: 12px;
    min-width: 16px;
    accent-color: var(--teal);
  }

  /* Submit Button */
  .lu-btn {
    background-color: var(--slate-blue);
    color: white;
    padding: 16px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background 0.3s;
  }

  .lu-btn:hover {
    background-color: var(--forest);
  }
/* --- SILKTIDE MOBILE VISIBILITY FIX --- */

/* 1. Force the banner and the little 'fingerprint' icon to show */
.silktide-consent-manager, 
.silktide-consent-manager-pc, 
#silktide-consent-manager-banner,
.silktide-consent-manager-icon {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* 2. Set Z-index higher than your header (1000) */
    z-index: 999999 !important; 
}

/* 3. Specifically position the icon so it doesn't overlap your 'Get in Touch' button */
.silktide-consent-manager-icon {
    bottom: 20px !important;
    left: 20px !important;
    position: fixed !important;
}

/* The Horizontal Line */
.pricing-container {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.pricing-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    width: 100%;
    margin-bottom: 2.5rem;
    display: block;
}

/* The Text Style */
.pricing-philosophy {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: transparent;   /* Removes the box look */
    border: none;              /* Removes the border */
    padding: 0;                /* Removes extra padding */
}

.pricing-philosophy p {
    color: var(--forest);      /* Using your main green for the text */
    line-height: 1.8;
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;              /* Makes it feel a bit softer/gentler */
}
