
/* ===== Standard Navigation (overrides old .navbar styles) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  background: url('../images/white-stone.png') center / cover no-repeat;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow-x: hidden;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.site-header .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  position: static;
}
.site-header .nav-logo img {
  height: 96px;
  width: auto;
  max-width: 220px;
}
.nav-inner .nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  flex-shrink: 0;
  min-width: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-inner .nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-inner .nav-links a:hover { color: #a68e46; }
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid #B79C4F;
  border-radius: 8px;
  font-size: 0.8rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-lang-option {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: #888;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-lang-option:hover { color: #4A4A4A; }
.nav-lang-option.active {
  color: #B79C4F;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav-lang-sep {
  color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
}
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-cta-btn.nav-cta-phone {
  background: #1a4d1a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}
.nav-cta-btn.nav-cta-phone:hover {
  background: #083119;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}
.nav-cta-btn.nav-cta-consult {
  background: #B79C4F;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  border-radius: 8px;
}
.nav-cta-btn.nav-cta-consult:hover {
  background: #a68e46;
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}
@media (max-width: 900px) {
  .nav-inner .nav-links { display: none; }
  .nav-lang-toggle { padding: 5px 10px; font-size: 0.8rem; }
  .nav-ctas { gap: 8px; }
  .nav-cta-btn { min-width: 0; padding: 8px 12px; font-size: 0.8rem; }
}
@media (max-width: 768px) {
  /* Row 1: logo + lang toggle | Row 2: both CTA buttons full-width */
  .nav-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
  }
  .site-header .nav-logo {
    flex: 0 0 auto;
    order: 0;
  }
  .nav-lang-toggle {
    margin-left: auto;
    order: 1;
    font-size: 0.75rem;
    padding: 5px 9px;
    flex-shrink: 0;
  }
  .nav-ctas {
    flex: 1 1 100%;
    order: 2;
    display: flex;
    justify-content: stretch;
    gap: 8px;
    margin-top: 2px;
    width: 100%;
  }
  .nav-cta-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.76rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 10px 8px;
    font-size: 0.76rem;
  }
}
@media (max-width: 480px) {
  .nav-inner {
    padding: 8px 0;
    gap: 6px;
  }
  .site-header .nav-logo img {
    height: 52px;
  }
  .nav-lang-toggle {
    font-size: 0.7rem;
    padding: 4px 7px;
  }
  .nav-cta-btn,
  .nav-cta-btn.nav-cta-phone {
    padding: 9px 6px;
    font-size: 0.7rem;
  }
}
/* ===== End Standard Navigation ===== */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #B79C4F;
    --gold-light: #c4a95a;
    --gold-dark: #a68e46;
    --gold-gradient: linear-gradient(135deg, #c4a95a 0%, #B79C4F 50%, #a68e46 100%);
    /* Headline gradient golds */
    --headline-gold-top: #a68e46;
    --headline-gold-main: #B79C4F;
    --headline-gold-center: #c4a95a;
    --emerald: #1B5E3B;
    --emerald-light: #2D5A3D;
    --emerald-dark: #0D3D24;
    --green-button: #1a4d1a;
    --green-button-hover: #083119;
    --white: #FFFFFF;
    --cream: #FFFDF7;
    --marble: #F8F6F3;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 40px rgba(201, 162, 39, 0.2);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --emerald-primary: var(--emerald-dark);
    
    --transition: all 0.3s ease;
    /* Gold CTA button – exact Home Page gold */
    --cta-gold-dark: #a68e46;
    --cta-gold-light: #c4a95a;
    --cta-hover-dark: #967826;
    --cta-hover-light: #b8a05a;
    --cta-gradient: #B79C4F;
    --cta-gradient-hover: #a68e46;
    --cta-text: #1a1a1a;
    --cta-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
    --cta-shadow-hover: 0 4px 12px rgba(201, 162, 39, 0.4);
    --cta-radius: 8px;
    --cta-font-size: 0.875rem;
    --cta-font-weight: 700;
    --cta-reflection: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 70%, transparent 100%);
}

/* Gold CTA – same look as "BOOK MY FREE CONSULTATION" */
.btn-gold-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-height: 44px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', sans-serif;
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cta-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--cta-radius);
    box-shadow: var(--cta-shadow);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.btn-gold-cta:hover {
    background: var(--cta-gradient-hover);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}
.btn-gold-cta.full-width { width: 100%; }
.btn-gold-cta.hero-size { width: 300px; height: 56px; padding: 0 24px; }

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1vw + 10px, 18px);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

section {
    margin: 0;
}

section[id] {
    scroll-margin-top: 200px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    width: 100%;
    box-sizing: border-box;
}

/* ===== SECTION DIVIDERS – gold line between all sections ===== */
.why-it-works-section,
.before-after,
.benefits,
.journey-section,
.science-section,
.compare-section,
.testimonials,
.faq-section,
.contact-section,
.sema-value-section,
.sema-who-section,
.sema-how-section,
.sema-stats-bar,
.sema-program-section,
.sema-why-bp-section,
.sema-commitment-section,
.hero-cta-section,
.related-services-section {
    border-top: 3px solid var(--gold);
}

/* ===== SITE HEADER (fixed wrapper for announcement + nav) ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(90deg, var(--emerald-dark), var(--emerald), var(--emerald-dark));
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.announcement-bar-inner {
    display: flex;
    gap: 4rem;
    animation: announcement-scroll 35s linear infinite;
}

.announcement-bar-inner span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

@keyframes announcement-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== NAVIGATION ===== */
.navbar {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px;
    padding-left: clamp(72px, 14vw, 150px);
    transition: var(--transition);
    background: url('../images/white-marble-bg.jpeg') center/cover;
    overflow-x: hidden;
}

.navbar.scrolled {
    padding: 10px 24px;
    padding-left: clamp(72px, 14vw, 150px);
}

.nav-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
}

/* Logo: fixed at the very left; header texts start after it */
.nav-logo {
    flex: 0 0 auto;
    flex-shrink: 0;
    margin-right: 2rem;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0.5rem;
    position: relative;
    z-index: 3;
    display: block;
}

.nav-logo img {
    height: 96px;
    width: auto;
    max-width: none;
    min-width: 0;
    display: block;
    vertical-align: middle;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 88px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
}

.nav-menu li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 0.95vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    white-space: nowrap;
    padding: 0.4rem 0;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: #000000;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* No underline on nav CTA buttons */
.nav-menu a.nav-cta-btn::after {
    display: none;
}
.nav-menu a.nav-cta-btn:hover::after {
    width: 0;
}

.nav-cta {
    background: var(--emerald-dark);
    color: var(--white) !important;
    padding: clamp(0.6rem, 1vw, 0.85rem) clamp(1.5rem, 2.5vw, 2.25rem);
    border-radius: 999px;
    margin-left: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
    border: 2px solid var(--emerald-dark);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: clamp(0.6rem, 0.85vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(13, 40, 24, 0.25);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--emerald);
    border-color: var(--gold);
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(13, 40, 24, 0.35);
    transform: translateY(-1px);
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(13, 40, 24, 0.25);
}


.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    color: var(--cta-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--cta-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--cta-shadow);
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
    background: var(--cta-gradient-hover);
}

/* Green phone button – matches main site #1a4d1a */
.nav-cta-btn.green-btn {
    background: #1a4d1a;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 0 1px #ffffff;
    -webkit-text-stroke: 0.3px #ffffff;
    box-shadow: 0 2px 8px rgba(26, 77, 26, 0.3);
}

.nav-cta-btn.green-btn:hover {
    background: #083119;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 49, 25, 0.4);
}

.nav-cta-mobile {
    display: flex;
    align-items: center;
}

.nav-cta-mobile:first-of-type {
    margin-left: 0;
}

.nav-cta-mobile .nav-cta-btn {
    padding: 0.4rem 0.65rem;
    font-size: clamp(0.55rem, 0.7vw, 0.65rem);
}

.nav-lang-toggle {
    display: flex;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    flex-shrink: 0;
}

/* Language Toggle Box */
/* Language toggle – exact specs */
.lang-toggle-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid #b8963a;
    border-radius: 6px;
    position: relative;
    z-index: 9999;
    cursor: pointer;
    transition: border-color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.lang-toggle-box:hover {
    border-color: #9A7B2D;
    background: rgba(184, 150, 58, 0.08);
    box-shadow: 0 0 0 1px rgba(184, 150, 58, 0.15);
}

.lang-option {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    color: #5a5a5a;
    white-space: nowrap;
}

.lang-option.active {
    color: #b8963a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lang-option:hover:not(.active) {
    color: #9A7B2D;
}

.lang-separator {
    color: #3a3a3a;
    font-weight: 300;
    font-size: 0.75rem;
}

/* Language toggle in nav bar – visible only on mobile */
.nav-lang-bar-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--emerald);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 850px;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 3px solid var(--gold);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-headline {
    position: absolute;
    top: 180px;
    left: 60px;
    z-index: 10;
    width: 500px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Subtle dark gradient behind headline so text pops off the image */
.hero-headline::before {
    display: none;
}

/* Hero eyebrow with lines */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-eyebrow-text {
    font-family: var(--font-body);
    font-size: clamp(0.65rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    text-shadow: none;
}

.hero-eyebrow-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
}

/* Hero headline – Cormorant Garamond + headline gold (var(--gold) = #c2a75c) */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--gold);
}

.hero-subtitle-visual {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line {
    display: block;
    color: var(--gold);
}

.hero-title .hero-headline-support,
.hero-title .hero-headline-location {
    font-size: 0.45em;
    opacity: 0.9;
    font-weight: 500;
}

.hero-title-accent {
    color: var(--gold);
    text-shadow: none;
}

/* Hero sub-headline – white, sans-serif, uppercase, smaller */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.4vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.5;
    text-shadow: none;
}

.hero-subtitle-line {
    display: block;
}

/* ===== HERO CTA SECTION ===== */
.hero-cta-section {
    position: relative;
    background: url('../images/white-stone.png') center/cover;
    padding: 4rem 0;
    text-align: center;
}

.hero-cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

.hero-cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.gold-text {
    color: #c2a75c !important;
}

.hero-cta-headline .gold-text {
    color: #c2a75c !important;
}

.hero-cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta-stat {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-cta-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.hero-cta-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-height: 44px;
    background: var(--cta-gradient);
    color: var(--cta-text);
    font-family: var(--font-body);
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 0 1px #1a1a1a;
    -webkit-text-stroke: 0.3px #1a1a1a;
    border-radius: var(--cta-radius);
    transition: all 0.3s ease;
    box-shadow: var(--cta-shadow);
}

.hero-cta-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
    background: var(--cta-gradient-hover);
}

.hero-cta-btn-secondary {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--emerald-dark);
    transition: var(--transition);
}

.hero-cta-btn-secondary:hover {
    color: var(--gold);
}

.hero-cta-disclaimer {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    flex-wrap: nowrap;
}

.hero-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-cta-trust-stars {
    color: var(--gold);
    letter-spacing: -2px;
}

.hero-cta-trust-icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-cta-section {
        padding: 3rem 0;
    }
    
    .hero-cta-stats {
        gap: 1rem;
    }
    
    .hero-cta-stat {
        padding: 1.25rem 1.5rem;
        min-width: 140px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-trust {
        gap: 1rem;
        padding: 1.25rem 1rem;
    }
    
    .hero-cta-trust-item {
        font-size: 0.75rem;
    }
}

.hero-form-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 164px 2rem 2rem;
    display: flex;
    justify-content: flex-end;
}

.hero-cta-card {
    background: url('../images/white-marble-bg.jpeg') center/cover;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow);
    text-align: center;
}

.hero-cta-btn {
    width: 100%;
}

/* ===== FORM CARD STYLES ===== */
.form-card {
    background: url('../images/white-marble-bg.jpeg') center/cover;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow);
}

.form-card.large {
    max-width: 450px;
    padding: 3rem 2.5rem;
}

.corner-decor {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.corner-decor.small {
    width: 60px;
    height: 60px;
}

.corner-decor.top-left {
    top: 10px;
    left: 10px;
}

.corner-decor.top-right {
    top: 10px;
    right: 10px;
}

.corner-decor.bottom-left {
    bottom: 10px;
    left: 10px;
}

.corner-decor.bottom-right {
    bottom: 10px;
    right: 10px;
}

.form-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-logo img {
    height: 100px;
    width: auto;
    margin: 0 auto;
}

.form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.25rem;
}

.form-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

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

.submit-btn {
    background: var(--cta-gradient);
    color: var(--cta-text);
    font-family: var(--font-body);
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 0 1px #1a1a1a;
    -webkit-text-stroke: 0.3px #1a1a1a;
    padding: 16px 24px;
    min-height: 44px;
    border: none;
    border-radius: var(--cta-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: var(--cta-shadow);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
    background: var(--cta-gradient-hover);
}

/* ===== WHY IT WORKS SECTION ===== */
.why-it-works-section {
    width: 100%;
    background: url('../images/white-stone.png') center/cover;
    padding: 5rem 0;
    position: relative;
    margin-top: -12px;
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.why-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.why-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.why-title em {
    font-style: italic;
    color: var(--gold);
}

.why-intro {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.75rem;
    border-top: 3px solid var(--gold);
    position: relative;
}

.why-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.why-card-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-dark);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.why-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-card-text:last-child {
    margin-bottom: 0;
}

.why-card-subtext {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-it-works-section {
        padding: 4rem 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-header {
        margin-bottom: 3rem;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.section-title.dark {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
}

.section-subtitle.dark {
    color: var(--gold-light);
}

.title-divider {
    width: 80px;
    height: 2px;
    background: var(--emerald);
    margin: 1.5rem auto 0;
}

.title-divider.gold {
    background: var(--gold);
}

/* ===== BEFORE & AFTER SECTION ===== */
.before-after {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.ba-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-stone.png') center/cover;
    z-index: 0;
}

.before-after .container {
    position: relative;
    z-index: 1;
}

.ba-layout {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    max-width: 1300px;
    margin: 0 auto;
}

.ba-header-card {
    flex: 0 0 clamp(280px, 25vw, 340px);
    background: url('../images/white-marble-bg.jpeg') center/cover;
    background-color: var(--white);
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ba-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gold);
}

.ba-header-card h2 {
    font-family: 'Playfair Display', var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    background: linear-gradient(
        90deg,
        var(--gold-dark) 0%,
        var(--gold) 25%,
        var(--gold-light) 50%,
        var(--gold) 75%,
        var(--gold-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.ba-header-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

.ba-header-card p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ba-header-card .ba-arrow {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.ba-showcase {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.ba-card {
    position: relative;
    background: url('../images/white-marble-bg.jpeg') center/cover;
    background-color: var(--white);
    padding: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--gold);
}

.ba-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--gold);
    pointer-events: none;
    z-index: 2;
}

.ba-card .ba-image {
    width: 100%;
    max-width: 100%;
    height: clamp(300px, 40vw, 450px);
    object-fit: cover;
    display: block;
    border: 3px solid var(--gold);
    box-shadow: inset 0 0 20px rgba(201, 162, 39, 0.2);
}

.ba-label {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: var(--emerald);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.5rem;
    z-index: 5;
}

.ba-label.after {
    background: var(--gold-gradient);
}

.ba-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.ba-arrow svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-stone.png') center/cover;
    z-index: 0;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.benefits-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    line-height: 1.15;
}

.benefits-title em {
    font-style: italic;
    color: var(--gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.benefit-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin-bottom: 0.75rem;
}

.benefit-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 4rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ===== YOUR JOURNEY SECTION (Timeline) ===== */
.journey-section {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    overflow: hidden;
}

.journey-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-stone.png') center/cover;
    z-index: 0;
}

.journey-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.journey-header {
    margin-bottom: 3.5rem;
}

.journey-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.journey-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    line-height: 1.15;
}

.journey-title em {
    font-style: italic;
    color: var(--gold);
}

.journey-timeline {
    position: relative;
    padding-left: 2rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.journey-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.journey-item:last-child {
    padding-bottom: 0;
}

.journey-dot {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold), 0 2px 8px rgba(201, 162, 39, 0.3);
    z-index: 2;
}

.journey-content {
    padding-left: 1rem;
}

.journey-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.journey-item-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--emerald-dark);
    margin-bottom: 0.75rem;
}

.journey-item-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .journey-section {
        padding: 4rem 0;
    }
    
    .journey-timeline {
        padding-left: 1.75rem;
    }
    
    .journey-dot {
        left: -1.75rem;
        width: 12px;
        height: 12px;
    }
    
    .journey-content {
        padding-left: 0.75rem;
    }
    
    .journey-item {
        padding-bottom: 2rem;
    }
}

/* ===== SCIENCE SECTION ===== */
.science-section {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    overflow: hidden;
}

.science-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-stone.png') center/cover;
    z-index: 0;
}

.science-section .container {
    position: relative;
    z-index: 1;
}

.science-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    padding: clamp(2rem, 4vw, 3.5rem);
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.science-content {
    max-width: 100%;
}

.science-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.science-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    margin: 0 0 2rem 0;
    line-height: 1.2;
    max-width: 700px;
}

.science-title em {
    font-style: italic;
    color: var(--gold);
}

.science-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.science-text-block p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 1.25rem 0;
}

.science-text-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .science-section {
        padding: 4rem 0;
    }
    
    .science-card {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }
    
    .science-text-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .science-title {
        margin-bottom: 1.5rem;
    }
}

/* ===== HOW WE COMPARE SECTION ===== */
.compare-section {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    overflow: hidden;
}

.compare-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-stone.png') center/cover;
    z-index: 0;
}

.compare-section .container {
    position: relative;
    z-index: 1;
}

.compare-header {
    margin-bottom: 3rem;
    text-align: center;
}

.compare-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.compare-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    line-height: 1.15;
}

.compare-title em {
    font-style: italic;
    color: var(--gold);
}

.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.9rem;
    min-width: 800px;
}

.compare-table thead th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 2px solid rgba(201, 162, 39, 0.3);
    vertical-align: bottom;
}

.compare-table thead th.compare-th-label {
    width: 140px;
}

.compare-table thead th.compare-th-highlight {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(229, 200, 99, 0.1) 100%);
    color: var(--emerald-dark);
    font-weight: 700;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.compare-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-table tbody tr:last-child {
    border-bottom: none;
}

.compare-table tbody td {
    padding: 1.25rem 1rem;
    vertical-align: top;
    color: var(--text-light);
    line-height: 1.5;
}

.compare-row-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.compare-highlight {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(229, 200, 99, 0.05) 100%);
    color: var(--emerald-dark) !important;
    font-weight: 500;
}

.compare-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    margin-right: 0.6rem;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.compare-dash {
    display: inline-block;
    width: 12px;
    height: 2px;
    background: var(--text-light);
    margin-right: 0.6rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

@media (max-width: 992px) {
    .compare-section {
        padding: 4rem 0;
    }
    
    .compare-table {
        font-size: 0.85rem;
    }
    
    .compare-table thead th,
    .compare-table tbody td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 768px) {
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-stone.png') center/cover;
    z-index: 0;
}

.faq-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.faq-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.15;
}

.faq-title em {
    font-style: italic;
    color: var(--gold);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    font-style: normal;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    padding-right: 3rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    transition: transform 0.3s ease;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    padding-top: 1rem;
    margin-top: 0;
}

.faq-answer p {
    margin: 0 0 0.75rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 0.35rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    position: relative;
    padding: 1.5rem 0 4rem;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-marble-bg.jpeg') center/cover;
    z-index: 0;
}

.testimonials-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.testimonials-logo {
    text-align: left;
    margin-bottom: 0.75rem;
}

.testimonials-logo img {
    height: clamp(140px, 18vw, 220px);
    width: auto;
    max-width: 420px;
    margin: 0;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.3));
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

.testimonials-left {
    padding-right: 1rem;
}

.testimonials-logo-headline-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin-right: auto;
}

.testimonials-desc {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.testimonials-cta {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}

.testimonials-cta:hover {
    color: var(--emerald);
}

.testimonials-cta span {
    font-size: 1.1em;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Gold frame container – border only, no fill */
.testimonials-headline-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px 16px;
    background: transparent;
    border: 10px solid #c9a84c;
    border-radius: 0;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.45),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        0 0 28px rgba(201, 168, 76, 0.45),
        0 6px 24px rgba(143, 111, 34, 0.28);
}

/* Optional: gold gradient on the frame (border area) */
.testimonials-headline-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    padding: 10px;
    background: linear-gradient(165deg, #e8d5a3 0%, #d4af37 20%, #f5e6b8 50%, #c9a84c 80%, #9a7b2d 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
}

/* Shine effect – only on the gold frame (border), not the text */
.testimonials-headline-frame::after {
    content: '';
    position: absolute;
    inset: -10px;
    padding: 10px;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 248, 220, 1) 50%,
        rgba(255, 255, 255, 0.8) 60%,
        transparent 80%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    animation: frameShimmer 2.5s linear infinite;
}

@keyframes frameShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.testimonials-headline {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--emerald-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.25;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonials-headline-line {
    display: block;
}

/* Stacked testimonial cards – white, rounded */
.testimonials-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonials .testimonial-card {
    background: var(--white);
    padding: 1.15rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: none;
    text-align: left;
}

.testimonials .testimonial-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0 0 0.75rem 0;
}

.testimonial-attribution {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

/* ===== BLOG SECTION ===== */
.blog {
    position: relative;
    padding: 4rem 0 5rem;
    min-height: 750px;
    overflow: hidden;
}

.blog-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/blog-image-final.jpeg') center/cover;
    z-index: 0;
}

.blog .container {
    position: relative;
    z-index: 1;
}

.blog-header-spacer {
    height: 260px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.blog-card-inner {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--emerald);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.blog-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.blog-link:hover {
    color: var(--emerald);
    border-bottom-color: var(--emerald);
}

.blog-link span {
    transition: var(--transition);
}

.blog-link:hover span {
    transform: translateX(5px);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/white-stone.png') center/cover;
    z-index: -1;
}

.contact-section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--emerald-dark);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.contact-section-title em {
    font-style: italic;
    color: var(--gold);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 400;
    color: var(--emerald-dark);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.contact-headline em {
    font-style: italic;
    color: var(--gold);
}

.contact-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.contact-item-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-item-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--emerald-dark);
}

.contact-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
}

.contact-benefits-list li svg {
    flex-shrink: 0;
    color: var(--emerald);
}

.contact-timeline-box {
    background: rgba(13, 40, 24, 0.05);
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.timeline-box-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--emerald-dark);
    margin-bottom: 0.5rem;
}

.timeline-box-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form-wrapper .form-card {
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
}

.contact-form-wrapper .form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--emerald-dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-form-wrapper .form-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.75rem;
    text-align: left;
}

.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-wrapper .form-group {
    margin-bottom: 1rem;
}

.contact-form-wrapper .form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--emerald-dark);
    margin-bottom: 0.4rem;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-wrapper .form-group input::placeholder {
    color: #adb5bd;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.contact-form-wrapper .submit-btn {
    width: 100%;
    padding: 16px 24px;
    min-height: 44px;
    font-family: var(--font-body);
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cta-text);
    text-shadow: 0 0 1px #1a1a1a;
    -webkit-text-stroke: 0.3px #1a1a1a;
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--cta-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: var(--cta-shadow);
}

.contact-form-wrapper .submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
    background: var(--cta-gradient-hover);
}

.form-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1.25rem;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-wrapper .form-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 3.5rem 0;
    }
    
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper .form-card {
        padding: 1.75rem;
    }
}

/* ===== RELATED SERVICES (marble layout – matches rest of site) ===== */
.related-services-section {
    background: var(--marble);
    background-image: url('../images/white-stone.png');
    background-size: cover;
    background-position: center;
    padding: 70px 40px;
}
.related-services-section .related-services-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--text-light);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 10px;
}
.related-services-section .related-services-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--emerald-dark);
    text-align: center;
    margin: 0 0 36px;
    border: none;
    background: none;
}
.related-services-section .related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.related-services-section .related-services-card {
    text-decoration: none;
    display: block;
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-top: 2px solid var(--cta-gradient);
    padding: 28px 24px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s, transform 0.3s;
}
.related-services-section .related-services-card:hover {
    border-color: var(--cta-gradient-hover);
    transform: translateY(-3px);
}
.related-services-section .related-services-card h3 {
    font-family: var(--font-display);
    color: var(--emerald-dark);
    font-size: 1.05rem;
    margin: 0 0 8px;
}
.related-services-section .related-services-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0 0 14px;
    line-height: 1.6;
}
.related-services-section .related-services-card .related-services-cta {
    color: var(--cta-gold-dark);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}
.related-services-section .related-services-card:hover .related-services-cta {
    color: var(--cta-gradient-hover);
}
@media (max-width: 600px) {
    .related-services-section { padding: 50px 20px; }
}

/* ===== FOOTER ===== */
.footer-simple {
    background: url('../images/white-marble-bg.jpeg') center/cover;
    padding: 2.5rem 0;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.footer-simple .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-info {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--emerald-dark);
}

.footer-info a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--gold);
}

.footer-keywords {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

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

.footer-legal-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gold-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-simple {
        padding: 2rem 1rem;
    }
    
    .footer-info {
        font-size: 0.8rem;
    }
    
    .footer-keywords {
        font-size: 0.7rem;
    }
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: url('../images/white-marble-bg.jpeg') center/cover;
    background-color: var(--white);
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

/* Hero form popup: close button and content */
.hero-form-modal .modal-content {
    padding: 1.5rem;
    max-width: 420px;
}

.hero-form-modal .form-card {
    box-shadow: none;
}

.hero-form-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--emerald-dark);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    transition: var(--transition);
}

.hero-form-modal-close:hover {
    background: var(--emerald);
    transform: scale(1.08);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav-container {
        justify-content: space-between;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        flex-direction: column;
        background: url('../images/white-marble-bg.jpeg') center/cover;
        background-color: var(--white);
        padding: 164px 2rem 2rem;
        gap: 1.25rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.95);
        z-index: -1;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    }
    
    .nav-lang-toggle {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .lang-toggle-box {
        padding: 5px 12px;
        gap: 5px;
    }
    
    .lang-option {
        font-size: 0.7rem;
    }
    
    .nav-menu .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .nav-cta-mobile {
        display: block !important;
        margin-top: 0.5rem;
    }
    
    .nav-cta-mobile .nav-cta-btn {
        min-width: unset;
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-lang-bar-mobile {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 12px;
    }

    .nav-lang-bar-mobile .lang-toggle-box {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-form-container {
        justify-content: center;
    }
    
    .ba-layout {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .ba-header-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
    
    .ba-header-card .ba-arrow {
        transform: rotate(90deg);
    }
    
    .ba-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .ba-header-card h2 {
        font-size: 3rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-header-spacer {
        height: 140px;
    }
    
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-left {
        padding-right: 0;
        text-align: center;
    }
    
    .testimonials-logo-headline-wrap {
        margin: 0 auto;
    }
    
    .testimonials-logo {
        text-align: center;
    }
    
    .testimonials-desc {
        text-align: center;
    }
    
    .testimonials-cta {
        justify-content: center;
    }
    
    .testimonials {
        padding: 2.5rem 0 3.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .benefits-inner {
        max-width: 100%;
    }
    
    .benefits-title,
    .benefits-subtitle {
        text-align: center;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header-spacer {
        height: 120px;
    }
    
    .blog {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .testimonials-logo img {
        height: clamp(120px, 22vw, 180px);
    }
    
    .testimonials {
        padding: 2rem 0 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo-link {
        margin: 0 auto 1.5rem;
        display: block;
    }
    
    .footer-hours li {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
}

@media (max-width: 480px) {
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    .corner-decor {
        width: 50px;
        height: 50px;
    }
    
    .ba-card .ba-image {
        height: 350px;
        max-width: 100%;
    }
    
    .ba-card {
        padding: 1rem;
    }
    
    .ba-label {
        top: 1.75rem;
        left: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 1.25rem;
    }
    
    .contact-info h2 {
        font-size: 2.25rem;
    }
}

/* ===== COMPREHENSIVE MOBILE STYLES ===== */

/* Tablet - 992px and below */
@media (max-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .hero {
        height: auto;
        min-height: 700px;
    }
    
    .hero-headline {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 600px;
        padding: 180px 2rem 3rem;
        margin: 0;
    }
    
    .hero-image {
        object-position: 70% center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-headline {
        padding: 160px 1.5rem 2.5rem;
        max-width: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 60%, transparent 100%);
    }
    
    .hero-image {
        object-position: 75% center;
    }
    
    .hero-eyebrow {
        margin-bottom: 1rem;
    }
    
    .hero-eyebrow-text {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero-title-line {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero-title-accent {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    /* Testimonials mobile */
    .testimonials-headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .testimonials-headline-frame {
        padding: 10px 20px 12px;
        border-width: 8px;
    }
    .testimonials-headline-frame::before,
    .testimonials-headline-frame::after {
        inset: -8px;
        padding: 8px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* FAQ mobile */
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1rem;
        padding-right: 2.5rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1.25rem;
    }
    
    /* Journey mobile */
    .journey-item {
        padding: 1.5rem;
    }
    
    .journey-item-title {
        font-size: 1.1rem;
    }
    
    .journey-item-text {
        font-size: 0.9rem;
    }
    
    /* Why cards mobile */
    .why-card {
        padding: 1.5rem;
    }
    
    .why-card-title {
        font-size: 1.1rem;
    }
    
    /* Science section mobile */
    .science-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contact section mobile */
    .contact-section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .contact-headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-benefits-list {
        align-items: center;
    }
    
    .contact-benefits-list li {
        justify-content: center;
    }
    
    /* Timeline box mobile */
    .timeline-box {
        padding: 1.25rem;
    }
    
    .timeline-box-title {
        font-size: 0.9rem;
    }
    
    .timeline-box-text {
        font-size: 0.85rem;
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-headline {
        padding: 140px 1rem 2rem;
        background: linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 70%, transparent 100%);
    }
    
    .hero-title-line {
        font-size: 1.5rem;
    }
    
    .hero-title-accent {
        font-size: 1.75rem;
    }
    
    .hero-eyebrow-text {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }
    
    .hero-eyebrow-line {
        width: 20px;
    }
    
    /* Hero CTA section mobile */
    .hero-cta-section {
        padding: 2rem 0;
    }
    
    .hero-cta-content {
        padding: 0 1rem 2rem;
    }
    
    .hero-cta-headline {
        font-size: 1.75rem;
    }
    
    .hero-cta-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-cta-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-stat {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.25rem;
        min-width: unset;
    }
    
    .hero-cta-btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-cta-trust {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    /* Section headers mobile */
    .section-header {
        padding: 0 1rem;
    }
    
    .section-eyebrow {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Benefits mobile */
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    /* Journey mobile small */
    .journey-label {
        font-size: 0.65rem;
    }
    
    .journey-item-title {
        font-size: 1rem;
    }
    
    .journey-item-text {
        font-size: 0.85rem;
    }
    
    /* Why section mobile small */
    .why-eyebrow, .journey-eyebrow, .science-eyebrow, .faq-eyebrow {
        font-size: 0.65rem;
    }
    
    .why-title, .journey-title, .science-title, .faq-title {
        font-size: 1.5rem;
    }
    
    .why-intro {
        font-size: 0.9rem;
    }
    
    .why-card-text {
        font-size: 0.9rem;
    }
    
    /* Testimonials mobile small */
    .testimonials-headline {
        font-size: 1.25rem;
    }
    
    .testimonials-headline-frame {
        padding: 8px 16px 10px;
        border-width: 6px;
    }
    .testimonials-headline-frame::before,
    .testimonials-headline-frame::after {
        inset: -6px;
        padding: 6px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
    
    /* FAQ mobile small */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
        padding-right: 2.5rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Contact mobile small */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .contact-headline {
        font-size: 1.25rem;
    }
    
    .contact-desc {
        font-size: 0.9rem;
    }
    
    .contact-item-label {
        font-size: 0.7rem;
    }
    
    .contact-item-value {
        font-size: 0.95rem;
    }
    
    /* Form mobile small */
    .form-card {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
    
    .form-input {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }
    
    /* Navigation logo smaller on mobile */
    .nav-logo img {
        height: 76px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 70px;
    }
    
    /* Floating referral smaller */
    #floatingReferral .floating-referral-btn {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
    }
    
    #floatingReferral .floating-referral-close {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
}

/* Extra small mobile - 360px and below */
@media (max-width: 360px) {
    .hero-headline {
        padding: 130px 0.75rem 1.5rem;
    }
    
    .hero-title-line {
        font-size: 1.35rem;
    }
    
    .hero-title-accent {
        font-size: 1.5rem;
    }
    
    .hero-cta-headline {
        font-size: 1.5rem;
    }
    
    .section-title, .why-title, .journey-title, .science-title, .faq-title {
        font-size: 1.35rem;
    }
    
    .testimonials-headline {
        font-size: 1.1rem;
    }
    
    .contact-section-title {
        font-size: 1.35rem;
    }
    
    .nav-logo img {
        height: 64px;
    }
}

/* Landscape mobile */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
    }
    
    .hero-headline {
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .nav-logo img {
        height: 64px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 58px;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a,
    .faq-question,
    .submit-btn,
    .hero-cta-btn-primary,
    .hero-cta-btn-secondary,
    .lang-option,
    .testimonials-cta {
        -webkit-tap-highlight-color: rgba(201, 162, 39, 0.2);
    }
    
    .faq-question:active {
        background: rgba(201, 162, 39, 0.05);
    }
    
    .submit-btn:active,
    .hero-cta-btn-primary:active {
        transform: scale(0.98);
    }
}

/* ===== FLOATING REFERRAL BUTTON (dark green + gold – high specificity so nothing overrides) ===== */
#floatingReferral.floating-referral {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: flex-end;
    gap: 0;
    flex-direction: column;
    transition: var(--transition);
}

#floatingReferral.floating-referral.dismissed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#floatingReferral .floating-referral-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0D2818 !important;
    border: 2px solid #c2a75c !important;
    color: #ffffff !important;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    margin-left: auto;
    padding: 0;
    transition: var(--transition);
    flex-shrink: 0;
}

#floatingReferral .floating-referral-close:hover {
    background: #1A4D2E !important;
    transform: scale(1.08);
}

/* Main pill: dark green background, gold border – NOT yellow */
#floatingReferral .floating-referral-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #0D2818 !important;
    background-image: none !important;
    color: #d4bc70 !important;
    padding: 0.9rem 1.4rem;
    border: 3px solid #c2a75c !important;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

#floatingReferral .floating-referral-btn:hover {
    background: #1A4D2E !important;
    background-image: none !important;
    color: #d4bc70 !important;
    border-color: #c2a75c !important;
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

#floatingReferral .floating-referral-label {
    white-space: nowrap;
    color: #d4bc70 !important;
}

/* Badge: gold tint on dark green, not white */
#floatingReferral .floating-referral-btn .discount-badge {
    background: rgba(201, 162, 39, 0.25) !important;
    color: #d4bc70 !important;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    border: 1px solid #c2a75c;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

#floatingReferral .floating-referral-btn .floating-referral-arrow,
#floatingReferral .floating-referral-btn svg {
    width: 18px;
    height: 18px;
    stroke: #d4bc70 !important;
    fill: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== REFERRAL MODAL (LIMITED OFFER – Semaglutide) ===== */
.referral-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.referral-modal.active {
    opacity: 1;
    visibility: visible;
}

.referral-modal-content {
    background: #0D2818;
    padding: 2.25rem 2rem 2rem;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    border: 5px solid var(--gold);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.2), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.referral-modal.active .referral-modal-content {
    transform: scale(1);
}

/* Close: dark green circle, white X, thin gold border */
.referral-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0D2818;
    border: 2px solid var(--gold);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
}

.referral-close:hover {
    background: var(--emerald);
    transform: scale(1.08);
}

.referral-headline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
}

.referral-offer-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.35;
    color: #d4bc70;
    text-align: left;
    margin-bottom: 0.25rem;
}

.referral-offer-sub {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.35;
    color: #d4bc70;
    text-align: left;
    margin-bottom: 1.5rem;
}

/* CTA button: exact gold specs with white reflection */
.referral-modal .referral-cta-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, #b8963a 0%, #d4b84e 30%, #f0e6c8 50%, #d4b84e 70%, #b8963a 100%) !important;
    color: #1a1a1a !important;
    border: none;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 0 0 1px #1a1a1a;
    -webkit-text-stroke: 0.3px #1a1a1a;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(184, 150, 58, 0.3);
}

.referral-modal .referral-cta-btn:hover {
    background: linear-gradient(180deg, #9a7b2d 0%, #b8973b 30%, #e8dbb8 50%, #b8973b 70%, #9a7b2d 100%) !important;
    color: #1a1a1a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 150, 58, 0.4);
}

/* Form revealed after CLAIM 15% OFF */
.referral-form-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.referral-form-wrap.visible {
    max-height: 400px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.referral-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.referral-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.referral-form input {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    transition: var(--transition);
}

.referral-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.referral-form input:focus {
    border-bottom-color: var(--gold);
}

.referral-form .submit-btn {
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    #floatingReferral.floating-referral {
        bottom: 20px;
        right: 20px;
    }
    
    #floatingReferral .floating-referral-close {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
    }
    
    #floatingReferral .floating-referral-btn {
        padding: 0.75rem 1.1rem;
        font-size: 0.7rem;
        gap: 0.6rem;
    }
    
    #floatingReferral .floating-referral-label {
        white-space: normal;
        max-width: 120px;
        line-height: 1.2;
    }
    
    .referral-modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .referral-offer-text,
    .referral-offer-sub {
        font-size: 1.2rem;
    }
    
    .referral-form-wrap.visible {
        max-height: 500px;
    }
    
    .referral-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Semaglutide One-Pager — New Sections
   ============================================================ */

/* ── Shared section header ── */
.sema-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.sema-section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 0.75rem;
    display: block;
}
.sema-section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--emerald-dark);
    line-height: 1.2;
    margin: 0 0 1rem;
}
.sema-section-headline em {
    font-style: italic;
    font-weight: 400;
}
.sema-section-intro {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Value Framework: Why Nothing Else Worked ── */
.sema-value-section {
    background: url('../images/white-stone.png') center / cover no-repeat;
    padding: 90px 0;
}
.sema-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.sema-value-card {
    background: #fff;
    border: 1px solid rgba(183, 156, 79, 0.2);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.sema-value-icon {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}
.sema-value-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 0.5rem;
    display: block;
}
.sema-value-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}
.sema-value-body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ── Who This Is For ── */
.sema-who-section {
    background: url('../images/white-stone.png') center / cover no-repeat;
    padding: 90px 0;
}
.sema-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.sema-who-card {
    background: #fff;
    border: 1px solid rgba(183, 156, 79, 0.2);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.sema-who-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(183, 156, 79, 0.22);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}
.sema-who-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}
.sema-who-body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ── How Semaglutide Actually Works ── */
.sema-how-section {
    background: url('../images/white-stone.png') center / cover no-repeat;
    padding: 90px 0;
}
.sema-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
}
.sema-how-card {
    background: #fff;
    border: 1px solid rgba(183, 156, 79, 0.2);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.sema-how-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: rgba(183, 156, 79, 0.25);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.sema-how-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.sema-how-body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ── Stats Bar ── */
.sema-stats-bar {
    background: url('../images/white-stone.png') center / cover no-repeat;
    border-bottom: 3px solid var(--gold);
    padding: 56px 0;
}
.sema-stats-bar-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sema-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}
.sema-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.sema-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-dark);
    line-height: 1.4;
    max-width: 150px;
    margin: 0 auto 0.25rem;
}
.sema-stat-source {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    color: var(--text-light);
    opacity: 0.7;
}
.sema-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(183, 156, 79, 0.3);
    flex-shrink: 0;
}

/* ── Your Program Section ── */
.sema-program-section {
    background: url('../images/white-stone.png') center / cover no-repeat;
    padding: 90px 0;
}
.sema-program-timeline {
    max-width: 740px;
    margin: 0 auto;
    position: relative;
}
.sema-program-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(183,156,79,0.35) 8%, rgba(183,156,79,0.35) 92%, transparent);
}
.sema-program-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}
.sema-program-step:last-child { margin-bottom: 0; }
.sema-step-marker {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-dark);
    flex-shrink: 0;
    z-index: 1;
}
.sema-step-marker-check {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    font-size: 0.85rem;
}
.sema-step-content { padding-top: 8px; flex: 1; }
.sema-step-phase {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.4rem;
}
.sema-step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 0.6rem;
    line-height: 1.3;
}
.sema-step-body {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── Why BP Royal ── */
.sema-why-bp-section {
    background: url('../images/white-stone.png') center / cover no-repeat;
    padding: 90px 0;
}
.sema-why-bp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
}
.sema-why-bp-card {
    background: #fff;
    border: 1px solid rgba(183, 156, 79, 0.2);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
    text-align: center;
}
.sema-why-bp-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}
.sema-why-bp-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}
.sema-why-bp-body {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ── Our Commitment ── */
.sema-commitment-section {
    background: url('../images/white-stone.png') center / cover no-repeat;
    padding: 90px 0;
}
.sema-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.sema-commitment-card {
    background: #fff;
    border: 1px solid rgba(183, 156, 79, 0.2);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.sema-commitment-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}
.sema-commitment-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}
.sema-commitment-body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ── Mobile responsive for all new sema sections ── */
@media (max-width: 768px) {
    .sema-value-section,
    .sema-who-section,
    .sema-how-section,
    .sema-program-section,
    .sema-why-bp-section,
    .sema-commitment-section {
        padding: 60px 20px;
    }
    .sema-stats-bar {
        padding: 48px 20px;
    }
    .sema-value-grid,
    .sema-who-grid,
    .sema-commitment-grid {
        grid-template-columns: 1fr;
    }
    .sema-how-grid {
        grid-template-columns: 1fr;
    }
    .sema-why-bp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sema-stats-bar-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    .sema-stat-divider {
        width: 60px;
        height: 1px;
    }
    .sema-program-timeline::before {
        left: 20px;
    }
    .sema-section-header {
        padding: 0 4px;
    }
    .sema-program-step {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .sema-why-bp-grid {
        grid-template-columns: 1fr;
    }
}


