
/* ===== 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) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
  .site-header .nav-logo {
    flex: 0 0 auto;
  }
  .nav-lang-toggle {
    margin-left: auto;
  }
  .nav-ctas {
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
  }
  .nav-cta-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .nav-inner {
    padding: 8px 10px;
    gap: 8px;
  }
  .nav-lang-toggle { padding: 4px 8px; font-size: 0.75rem; }
  .site-header .nav-logo img {
    height: 56px;
  }
  .nav-cta-btn {
    min-width: 0;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}
/* ===== End Standard Navigation ===== */

/* ===== CSS Variables ===== */
:root {
    --gold: #B79C4F;
    --gold-light: #c4a95a;
    --gold-dark: #a68e46;
    --emerald: #0D5C3D;
    --emerald-dark: #064028;
    --emerald-light: #1A7A52;
    --white: #FFFFFF;
    --off-white: #F8F6F2;
    --cream: #FDF9F0;
    --black: #1A1A1A;
    --gray: #6B6B6B;
    --gray-light: #E5E5E5;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.3);
    --transition: all 0.3s ease;
    
    --nav-height: 160px;
    /* 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 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* ===== Gold line between sections ===== */
.hero::after,
.stats::after,
.benefits::after,
.blog::after,
.testimonials::after,
.faq::after,
.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 10;
}

/* ===== Marble Backgrounds ===== */
.marble-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,246,242,0.95) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 1;
}

.marble-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(13, 92, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(201, 162, 39, 0.03) 45%, rgba(201, 162, 39, 0.05) 50%, rgba(201, 162, 39, 0.03) 55%, transparent 60%);
}

.marble-bg.dark {
    background: 
        linear-gradient(135deg, rgba(13, 92, 61, 0.97) 0%, rgba(6, 64, 40, 0.98) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.marble-bg.dark::before {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(201, 162, 39, 0.05) 45%, rgba(201, 162, 39, 0.08) 50%, rgba(201, 162, 39, 0.05) 55%, transparent 60%);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--emerald-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    margin: 0 auto 50px;
    border-radius: 2px;
}

/* ===== Buttons (Gold CTA with white reflection) ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-height: 44px;
    box-sizing: border-box;
    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);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--cta-radius);
    box-shadow: var(--cta-shadow);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: var(--cta-gradient-hover);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--emerald-dark);
}

/* ========== NAVBAR (fixed bar) ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 1000;
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
    background: url('../images/white-stone.png') center center / cover no-repeat;
    backdrop-filter: blur(6px);
    overflow-x: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    min-height: var(--nav-height);
    border-bottom: 1px solid rgba(201, 168, 76, 0.35);
    overflow-x: hidden;
}

/* Gold trim line under navbar */
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(135deg, #E8D5A3 0%, #C9A84C 25%, #9A7B2D 50%, #C9A84C 75%, #E8D5A3 100%);
    opacity: 0.95;
    pointer-events: none;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* ========== NAV CONTAINER (centered, locked in section) ========== */
.navbar .nav-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    min-height: var(--nav-height);
    gap: 24px;
}

.logo {
    flex-shrink: 0;
}

.navbar .logo img {
    height: 96px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* ========== NAV MENU (links row) ========== */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 22px;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    min-width: 0;
}

/* ========== NAV LINKS (black, uppercase, hover underline) ========== */
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

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

/* ========== RIGHT GROUP (language + CTAs) ========== */
.nav-cta-buttons {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: 28px;
    flex-wrap: nowrap;
}

/* ========== CTA BUTTONS – base sizing ========== */
.nav-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: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

/* Phone – green (matches main site #1a4d1a) */
.nav-btn-call {
    background: #1a4d1a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(26, 77, 26, 0.3);
}

.nav-btn-call:hover {
    background: #083119;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 108, 44, 0.4);
}

.nav-btn-call i {
    font-size: 0.85rem;
}

.nav-call-text {
    display: none;
}

.nav-phone-number {
    display: inline;
}

/* Consultation – gold CTA (matches btn-gold) */
.nav-btn-consult {
    background: var(--cta-gradient);
    color: #1a1a1a;
    box-shadow: var(--cta-shadow);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--emerald-dark);
    transition: var(--transition);
}

/* ========== LANGUAGE TOGGLE (gold + grey) ========== */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid #b8963a;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.lang-toggle:hover {
    background: rgba(184, 150, 58, 0.1);
    border-color: #9A7B2D;
}

.lang-current {
    color: #b8963a;
    font-weight: 600;
    font-style: italic;
}

.lang-other {
    color: #6a6a6a;
    font-weight: 500;
}

.lang-divider {
    color: #6a6a6a;
    font-weight: 400;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6, 64, 40, 0.72) 0%, rgba(13, 92, 61, 0.45) 35%, rgba(0, 0, 0, 0.25) 70%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 420px;
    left: 80px;
    z-index: 4;
    box-sizing: border-box;
}

.hero-content.hero-content-left {
    top: 420px;
    left: 80px;
}

.hero-content-left .hero-cta-wrap {
    text-align: left;
}

.hero-content-left .hero-headline {
    font-size: 6rem;
}

.hero-content-left .hero-tagline {
    justify-content: flex-start;
}

.hero-content-left .hero-subline {
    margin-left: 0;
    margin-right: 0;
}

.hero-cta-wrap {
    text-align: left;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    gap: 20px;
}

.tagline-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1;
}

.headline-gold {
  color: var(--gold);
}
.hero-headline .hero-headline-support,
.hero-headline .hero-headline-location {
  font-size: 0.45em;
  opacity: 0.92;
  font-weight: 500;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}
.hero-headline .hero-headline-support {
  margin: 0;
  padding: 0;
}
.hero-headline .hero-headline-main {
  display: block;
  margin: 0;
  padding: 0;
}
.hero-headline .hero-headline-location {
  margin: 0;
  padding: 0;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: 0;
    margin-right: auto;
}

.hero-subline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.hero-stat-box {
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 8px;
    padding: 20px 32px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    min-width: 130px;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.hero-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
}

.hero .hero-cta-btn {
    cursor: pointer;
    background: linear-gradient(180deg, #b8963a 0%, #d4b84e 30%, #f0e6c8 50%, #d4b84e 70%, #b8963a 100%);
    color: #1a1a1a;
    padding: 16px 36px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(184, 150, 58, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.hero .hero-cta-btn i {
    font-size: 0.75rem;
}

.hero-secondary-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.hero-secondary-link:hover {
    color: var(--gold-light);
}

.hero-secondary-link i {
    font-size: 0.75rem;
}

.hero-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.trust-badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

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

/* ===== Consultation Popup Modal ===== */
.consultation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.consultation-popup.active {
    display: flex;
}

.consultation-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.consultation-popup-content {
    position: relative;
    z-index: 2;
    max-height: 90vh;
    overflow-y: auto;
    width: 100%;
    max-width: 960px;
}

.consultation-popup-inner .consultation-inner {
    background: url('../images/white-marble-bg.jpeg') center center / cover no-repeat;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow);
}

.consultation-popup-inner .consultation-form-wrap {
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

.consultation-popup-inner .consultation-inner {
    min-height: auto;
}

.consultation-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    color: var(--emerald-dark);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 50%;
}

.consultation-popup-close:hover {
    background: var(--emerald-dark);
    color: var(--white);
    transform: scale(1.08);
}

.consultation-popup-close i {
    pointer-events: none;
}


.form-symbol {
    position: absolute;
    z-index: 5;
}

.form-symbol img {
    width: 50px;
    height: auto;
    opacity: 0.9;
}

.form-symbol.top-left {
    top: 8px;
    left: 8px;
}

.form-symbol.top-right {
    top: 8px;
    right: 8px;
}

.form-symbol.bottom-left {
    bottom: 8px;
    left: 8px;
}

.form-symbol.bottom-right {
    bottom: 8px;
    right: 8px;
}

.form-logo {
    display: block;
    width: 120px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.5);
    position: relative;
    z-index: 2;
}

.form-header h3 {
    color: var(--emerald-dark);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--gold-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-form form,
.hero-form-popup form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.hero-form input,
.hero-form-popup input {
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

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

.btn-submit {
    background: linear-gradient(180deg, #b8963a 0%, #d4b84e 30%, #f0e6c8 50%, #d4b84e 70%, #b8963a 100%);
    color: #1a1a1a;
    border: none;
    padding: 10px 30px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 auto;
    display: block;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(184, 150, 58, 0.3);
    border-radius: 8px;
}

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

/* ===== Snore No More CTA Section ===== */
.snore-cta {
    position: relative;
    width: 100%;
    background: url('../images/white-stone.png') center center / cover no-repeat;
    padding: 60px 24px 70px;
    overflow: hidden;
}

.snore-cta::before,
.snore-cta::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

.snore-cta::before {
    top: 0;
}

.snore-cta::after {
    bottom: 0;
}

.snore-cta-overlay {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.snore-cta-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--emerald-dark);
    margin: 0 0 36px;
    line-height: 1.1;
}

.snore-cta-gold {
    color: var(--gold-dark);
}

.snore-cta-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto 36px;
}

.snore-cta-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.snore-cta-stat-box {
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 8px;
    padding: 20px 32px;
    text-align: center;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 130px;
}

.snore-cta-stat-number {
    display: block;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.snore-cta-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--emerald-dark);
}

.snore-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
}

.snore-cta-btn {
    cursor: pointer;
    background: var(--cta-gradient);
    color: var(--cta-text);
    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;
    border: none;
    border-radius: var(--cta-radius);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--cta-shadow);
}

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

.snore-cta-secondary-link {
    color: var(--emerald-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.snore-cta-secondary-link:hover {
    color: var(--gold-dark);
}

.snore-cta-disclaimer {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 28px;
}

.snore-cta-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.snore-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--emerald-dark);
}

.snore-trust-badge i {
    color: var(--gold-dark);
}

.snore-trust-badge .trust-stars {
    color: var(--gold-dark);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Snore CTA Responsive - DISABLED FOR FIXED LAYOUT */

/* ===== Stats Section ===== */
.stats {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-top: -4px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 90px;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 10;
}

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

.stats-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stats-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.stats-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald-dark);
    letter-spacing: 0.5px;
    margin: 0 0 24px;
    line-height: 1.25;
}

.stats-headline-gold {
    color: var(--gold-dark);
    font-style: italic;
}

.stats-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto 50px;
}

.stats-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
}

.stats-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stats-card-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold-dark);
    margin-bottom: 12px;
    display: block;
}

.stats-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== Before & After Section (Results) ===== */
.before-after {
    position: relative;
    padding: 12px 0 60px;
    background: url('../images/white-stone.png') center center / cover no-repeat;
    overflow: hidden;
}

.ba-top-line,
.ba-bottom-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ba-top-line {
    top: 0;
}

.ba-bottom-line {
    bottom: 0;
}

/* Results header block (above image containers) */
.ba-results-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 16px 24px 36px;
    position: relative;
    z-index: 2;
}

.ba-results-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 18px;
}

.ba-results-headline {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px;
    letter-spacing: 0.02em;
}

.ba-headline-real {
    color: var(--emerald-dark);
}

.ba-headline-results {
    color: var(--gold);
}

.ba-results-body {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--black);
    margin: 0 0 32px;
    font-weight: 400;
}

.ba-results-body em {
    font-style: italic;
    display: block;
    margin-top: 0.35em;
}

.ba-results-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

.ba-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.ba-title-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 40px 30px;
    background: var(--white);
    border: 3px solid var(--gold);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ba-title-side .ba-corner-tl,
.ba-title-side .ba-corner-br {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid var(--gold);
    z-index: 3;
}

.ba-title-side .ba-corner-tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.ba-title-side .ba-corner-br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.ba-title-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 162, 39, 0.1),
        rgba(232, 212, 138, 0.25),
        rgba(255, 248, 220, 0.3),
        rgba(232, 212, 138, 0.25),
        rgba(201, 162, 39, 0.1),
        transparent
    );
    animation: cardShine 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes cardShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

.ba-title-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ba-title-word {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.ba-title-amp {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    line-height: 0.8;
}

.ba-title-sub {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
    width: 100%;
    text-align: center;
}

.ba-title-sub span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 8px;
    text-transform: uppercase;
}

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

.ba-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.ba-column {
    text-align: center;
    flex: 1;
    max-width: 420px;
}

.ba-label-title {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 900;
    font-style: normal;
    color: var(--emerald-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.ba-label-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ba-image-box {
    border: 5px solid var(--gold);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.ba-image-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: var(--white);
}

.ba-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.ba-arrow .arrow-icon {
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}

.ba-arrow p {
    color: var(--emerald-dark);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

/* ===== Four Steps Section ===== */
.four-steps {
    position: relative;
    width: 100%;
    background: url('../images/white-stone.png') center center / cover no-repeat;
    padding: 80px 24px 100px;
    overflow: hidden;
}

.four-steps::before,
.four-steps::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

.four-steps::before {
    top: 0;
}

.four-steps::after {
    bottom: 0;
}

.four-steps-overlay {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.four-steps-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.four-steps-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 20px;
    line-height: 1.25;
}

.four-steps-highlight {
    color: var(--gold-dark);
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 6px;
}

.four-steps-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto 60px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-top: 40px;
}

.steps-line {
    position: absolute;
    top: 64px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0.5), var(--gold));
    z-index: 1;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 240px;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gold-dark);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 12px;
}

.step-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 16px;
    min-height: 80px;
}

.step-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: capitalize;
}

/* Four Steps Responsive - DISABLED FOR FIXED LAYOUT */

/* ===== Benefits Section ===== */
.benefits {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: url('../images/white-stone.png') center center / cover no-repeat;
    padding: 80px 24px 100px;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 10;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 10;
}

.benefits-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.benefits-subheading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}

.benefits-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.benefits-headline-gold {
    color: var(--gold-dark);
    font-style: italic;
}

.benefits-cards-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 36px 28px 32px;
    position: relative;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1;
}

.benefit-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--emerald-dark);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.benefit-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

/* Benefits Responsive - DISABLED FOR FIXED LAYOUT */

/* ===== Image Sections Stability ===== */
.stats,
.benefits {
    width: 100%;
    max-width: 100vw;
}

/* ===== Testimonials Section ===== */
.testimonials {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    min-height: 560px;
    background: url('../images/white-stone.png') center center / cover no-repeat;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 10;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 10;
}

.testimonials-overlay {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
    box-sizing: border-box;
}

.testimonials-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.testimonials-left {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.testimonials-headline-box {
    padding: 24px 40px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    isolation: isolate;
}

.testimonials-headline-box::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 6px;
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--gold) 35%,
        #fffacd 50%,
        var(--gold) 65%,
        var(--gold) 100%
    );
    background-size: 300% 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;
    animation: frameShine 2.5s linear infinite;
    z-index: 1;
}

@keyframes frameShine {
    0% {
        background-position: 300% 0;
    }
    100% {
        background-position: 0% 0;
    }
}


.testimonials-headline {
    font-family: var(--font-body);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--emerald-dark);
    text-align: center;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.testimonials-intro {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.testimonials-cards {
    flex: 1;
    min-width: 0;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 28px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    color: var(--emerald-dark);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 16px;
}

.testimonial-author {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
}

.testimonial-name {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-detail {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== The Science Section ===== */
.the-science {
    position: relative;
    width: 100%;
    background: url('../images/white-stone.png') center center / cover no-repeat;
    padding: 80px 24px 100px;
    overflow: hidden;
}

.the-science::before,
.the-science::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

.the-science::before {
    top: 0;
}

.the-science::after {
    bottom: 0;
}

.the-science-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.the-science-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.the-science-headline {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0 0 50px;
    line-height: 1.3;
}

.the-science-highlight {
    color: var(--gold-dark);
    font-style: italic;
}

.the-science-card {
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 40px 36px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.the-science-card-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--emerald-dark);
    margin: 0 0 20px;
}

.the-science-card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
    margin: 0 0 16px;
}

.the-science-why-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 28px 0 16px;
}

.the-science-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.the-science-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray);
}

.the-science-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* The Science Responsive - DISABLED FOR FIXED LAYOUT */

/* ===== Blog Section ===== */
.blog {
    position: relative;
    min-height: 1100px;
    padding: 80px 0 100px;
    overflow: hidden;
    background: url('../images/blog-new-bg.jpeg') center center / cover no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 100vw;
}

.blog-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 0 8%;
    padding: 0 20px;
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--black);
    border: 3px solid var(--gold);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    min-height: 260px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.25);
}

.blog-content {
    padding: 36px 32px;
}

.blog-content h3 {
    color: var(--gold-light);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.blog-content .btn-outline {
    color: var(--gold);
    border-color: var(--gold);
}

.blog-content .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== FAQ Section ===== */
.faq {
    position: relative;
    padding: 80px 24px 100px;
    overflow: hidden;
    background: url('../images/white-stone.png') center center / cover no-repeat;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 1;
}

.faq-container {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    text-align: center;
    margin-bottom: 16px;
}

.faq-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald-dark);
    text-align: center;
    margin: 0 0 50px;
    line-height: 1.25;
}

.faq-highlight {
    color: var(--gold-dark);
    font-style: italic;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    box-shadow: none;
    transition: var(--transition);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    box-shadow: none;
}

.faq-item[open] .faq-question {
    color: var(--emerald-dark);
    border-bottom-color: transparent;
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--emerald-dark);
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: var(--transition);
    border-bottom: none;
}

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

.faq-question::after {
    content: '\00D7';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-dark);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(0deg);
    background: rgba(201, 162, 39, 0.1);
}

.faq-answer {
    padding: 0 0 24px;
}

.faq-answer p {
    margin: 0;
    padding-top: 0;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== Contact / Consultation Section (two-column layout) ===== */
.contact {
    position: relative;
    padding: 80px 24px 100px;
    overflow: hidden;
    background: url('../images/white-stone.png') center center / cover no-repeat;
}

.consultation-header {
    text-align: center;
    margin-bottom: 50px;
}

.consultation-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}

.consultation-main-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin: 0;
    line-height: 1.25;
}

.consultation-headline-highlight {
    color: var(--gold-dark);
    font-style: italic;
}

.consultation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
}

.consultation-left {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.consultation-subheadline {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--emerald-dark);
    margin: 0 0 20px;
}

.consultation-subheadline-highlight {
    color: var(--gold);
    font-style: italic;
}

.consultation-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
}

.consultation-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.consultation-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--emerald-dark);
}

.consultation-checklist li i {
    width: 24px;
    height: 24px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--gold-dark);
}

.consultation-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-contact li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.consultation-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consultation-contact-icon i {
    color: var(--gold);
    font-size: 0.9rem;
}

.consultation-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.consultation-contact-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gray);
    text-transform: uppercase;
}

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

.consultation-tip {
    background: rgba(201, 162, 39, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.consultation-tip-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.consultation-tip p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--emerald-dark);
    margin: 0;
}

.consultation-tip strong {
    color: var(--gold-dark);
}

.consultation-form-wrap {
    background: #FFFFFF;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.consultation-form-corner {
    position: absolute;
    width: 56px;
    height: 56px;
    overflow: hidden;
    z-index: 2;
}

.consultation-form-corner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.consultation-form-corner.corner-tl {
    top: 0;
    left: 0;
}

.consultation-form-corner.corner-tl img {
    object-position: top left;
}

.consultation-form-corner.corner-tr {
    top: 0;
    right: 0;
}

.consultation-form-corner.corner-tr img {
    object-position: top right;
}

.consultation-form-corner.corner-bl {
    bottom: 0;
    left: 0;
}

.consultation-form-corner.corner-bl img {
    object-position: bottom left;
}

.consultation-form-corner.corner-br {
    bottom: 0;
    right: 0;
}

.consultation-form-corner.corner-br img {
    object-position: bottom right;
}

.consultation-form-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-dark);
    margin: 0 0 8px;
    text-align: left;
}

.consultation-form-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 28px;
}

.consultation-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.consultation-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.consultation-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.consultation-form label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--emerald-dark);
    margin-bottom: 8px;
}

.consultation-form input,
.consultation-form textarea,
.consultation-form select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    resize: none;
    transition: var(--transition);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #aaa;
}

.consultation-form input:focus,
.consultation-form textarea:focus,
.consultation-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
}

.consultation-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.consultation-form textarea {
    min-height: 80px;
}

.consultation-submit {
    margin-top: 8px;
    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);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--cta-radius);
    box-shadow: var(--cta-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: none;
    box-shadow: 0 2px 8px rgba(184, 150, 58, 0.3);
}

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

.consultation-form-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
}

/* Consultation Responsive - DISABLED FOR FIXED LAYOUT */

/* ===== Footer ===== */
.footer {
    background: url('../images/white-stone.png') center center / cover no-repeat;
    padding: 40px 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-line {
    font-family: var(--font-body);
    margin: 0 0 12px;
}

.footer-main {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-main a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-keywords {
    font-size: 0.8rem;
    color: var(--gray);
    opacity: 0.7;
    margin-bottom: 16px;
}

.footer-legal {
    margin: 0;
}

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

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

.footer-legal-sep {
    color: var(--gold-dark);
    margin: 0 8px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

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

/* Ensure all images maintain aspect ratio */
img {
    max-width: 100%;
    height: auto;
}

/* ===== Mobile: keep all content inside viewport ===== */
@media (max-width: 768px) {
    main {
        overflow-x: hidden;
        max-width: 100vw;
    }
    .snore-cta-overlay,
    .stats-overlay,
    .four-steps-overlay,
    .benefits-overlay,
    .the-science-overlay,
    .testimonials-overlay,
    .faq-container,
    .consultation-inner {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ===== Mobile Responsive Styles ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 10px 20px;
    }
    
    .navbar .logo img {
        height: 76px !important;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .nav-btn {
        padding: 10px 16px;
        font-size: 0.7rem;
    }
    
    .hero-content {
        top: 300px;
        left: 40px;
    }
    
    .hero-content-left .hero-headline {
        font-size: 4rem;
    }
    
    .snore-cta-headline {
        font-size: 2.2rem;
    }
    
    .stats-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats-card {
        flex: 1 1 280px;
        max-width: 320px;
    }
    
    /* Before & After Section Tablet */
    .ba-wrapper {
        padding: 0 20px 50px;
        gap: 20px;
    }
    
    .ba-title-side {
        min-width: 160px;
        padding: 30px 20px;
    }
    
    .ba-title-word {
        font-size: 1.8rem;
    }
    
    .ba-column {
        max-width: 320px;
    }
    
    .ba-label-title {
        font-size: 1.6rem;
    }
    
    .ba-results-headline {
        font-size: 3rem;
    }
    
    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-item {
        flex: 1 1 45%;
        max-width: 280px;
    }
    
    .benefits-cards-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-inner {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-left {
        margin-top: 0;
        margin-bottom: 40px;
    }
    
    .consultation-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 80px;
    }
    
    .navbar {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .nav-container {
        padding: 10px 12px;
        min-width: 0;
        flex-wrap: nowrap;
        gap: 10px;
        overflow: hidden;
    }
    
    .navbar .logo img {
        height: 64px !important;
    }
    
    .logo {
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .lang-toggle {
        margin-left: auto;
        padding: 6px 10px;
        font-size: 0.7rem;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .lang-toggle .lang-current,
    .lang-toggle .lang-other {
        display: inline;
    }
    
    .nav-cta-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 10px 12px;
        gap: 8px;
        margin-left: 0;
        z-index: 998;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        justify-content: center;
        align-items: stretch;
    }
    
    .nav-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
        max-width: 50%;
        padding: 10px 8px;
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .nav-phone-number {
        display: none;
    }
    
    .nav-call-text {
        display: inline;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active a {
        font-size: 1rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        top: 50%;
        left: 16px;
        right: 16px;
        transform: translateY(-50%);
        max-width: calc(100vw - 32px);
        box-sizing: border-box;
    }
    
    .hero-content-left .hero-headline {
        font-size: clamp(2rem, 7vw, 3rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .snore-cta {
        padding: 36px 16px 44px;
        overflow: hidden;
    }
    
    .snore-cta-overlay {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .snore-cta-headline {
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
        line-height: 1.25;
        margin-bottom: 24px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .snore-cta-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
        padding: 0 4px;
    }
    
    .snore-cta-stats {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .snore-cta-stat-box {
        flex: 1 1 100%;
        min-width: 0;
        max-width: 160px;
        padding: 14px 12px;
    }
    
    .snore-cta-stat-number {
        font-size: 1.35rem;
    }
    
    .snore-cta-stat-label {
        font-size: 0.6rem;
    }
    
    .snore-cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .snore-cta-btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
    }
    
    .snore-cta-disclaimer {
        margin-bottom: 20px;
        font-size: 0.75rem;
    }
    
    .snore-cta-trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }
    
    .snore-trust-badge {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .stats {
        padding: 40px 16px 50px;
        min-height: auto;
    }
    
    .stats-overlay {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .stats-subtitle {
        font-size: 0.7rem;
    }
    
    .stats-headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .stats-description {
        font-size: 0.9rem;
        margin-bottom: 32px;
        padding: 0 4px;
    }
    
    .stats-cards {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .stats-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .stats-card-number {
        font-size: 2.2rem;
    }
    
    .stats-card-text {
        font-size: 0.875rem;
    }
    
    /* Before & After Section Mobile */
    .before-after {
        padding: 24px 0 36px;
        overflow: hidden;
    }
    
    .ba-results-header {
        padding: 12px 16px 24px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .ba-results-subtitle {
        font-size: 0.8rem;
    }
    
    .ba-results-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .ba-results-body {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .ba-wrapper {
        flex-direction: column;
        padding: 0 16px 32px;
        gap: 24px;
        max-width: 100%;
    }
    
    .ba-title-side {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 25px 20px;
    }
    
    .ba-title-word {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }
    
    .ba-title-amp {
        font-size: 2rem;
    }
    
    .ba-title-sub span {
        font-size: 0.8rem;
        letter-spacing: 5px;
    }
    
    .ba-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .ba-column {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
    
    .ba-label-title {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
        word-wrap: break-word;
    }
    
    .ba-label-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .ba-image-box {
        border-width: 4px;
        max-width: 100%;
    }
    
    .ba-image-box img {
        max-width: 100%;
    }
    
    .ba-arrow {
        padding: 10px;
        transform: rotate(90deg);
    }
    
    .ba-arrow .arrow-icon {
        font-size: 3rem;
    }
    
    .ba-arrow p {
        display: none;
    }
    
    .four-steps {
        padding: 40px 16px 50px;
        overflow: hidden;
    }
    
    .four-steps-overlay {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .four-steps-subtitle {
        font-size: 0.7rem;
    }
    
    .four-steps-headline {
        font-size: clamp(1.45rem, 5vw, 2rem);
        line-height: 1.3;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .four-steps-description {
        font-size: 0.9rem;
        margin-bottom: 36px;
        padding: 0 4px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: stretch;
        padding-top: 24px;
    }
    
    .step-item {
        flex: none;
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .step-text {
        font-size: 0.85rem;
        min-height: auto;
    }
    
    .steps-line {
        display: none;
    }
    
    .benefits {
        padding: 40px 16px 50px;
        overflow: hidden;
    }
    
    .benefits-overlay {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .benefits-header {
        margin-bottom: 32px;
    }
    
    .benefits-subheading {
        font-size: 0.7rem;
    }
    
    .benefits-headline {
        font-size: clamp(1.45rem, 5vw, 2rem);
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .benefits-cards-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-card {
        padding: 24px 20px;
        min-width: 0;
    }
    
    .benefit-num {
        font-size: 2rem;
    }
    
    .benefit-card-title {
        font-size: 0.95rem;
    }
    
    .benefit-card-text {
        font-size: 0.875rem;
    }
    
    .the-science {
        padding: 40px 16px 50px;
        overflow: hidden;
    }
    
    .the-science-overlay {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .the-science-subtitle {
        font-size: 0.7rem;
    }
    
    .the-science-headline {
        font-size: clamp(1.45rem, 5vw, 2rem);
        margin-bottom: 32px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .the-science-card {
        padding: 28px 20px;
        min-width: 0;
    }
    
    .the-science-card-title {
        font-size: 1rem;
    }
    
    .the-science-card-text,
    .the-science-list li {
        font-size: 0.875rem;
    }
    
    .testimonials {
        min-height: auto;
        padding: 40px 16px 50px;
        overflow: hidden;
    }
    
    .testimonials-overlay {
        padding: 32px 16px 40px;
        min-height: auto;
    }
    
    .testimonials-inner {
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
    }
    
    .testimonials-left {
        max-width: 100%;
        margin-top: 0;
        width: 100%;
    }
    
    .testimonials-headline-box {
        padding: 14px 20px;
        max-width: 100%;
    }
    
    .testimonials-headline {
        font-size: clamp(1.35rem, 5vw, 1.8rem);
        letter-spacing: 2px;
        word-wrap: break-word;
    }
    
    .testimonials-intro {
        font-size: 0.75rem;
    }
    
    .testimonials-cards {
        max-width: 100%;
        min-width: 0;
    }
    
    .testimonial-card {
        padding: 18px 16px;
        min-width: 0;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
    }
    
    .faq {
        padding: 40px 16px 50px;
        overflow: hidden;
    }
    
    .faq-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .faq-headline {
        font-size: clamp(1.45rem, 5vw, 2rem);
        margin-bottom: 32px;
        word-wrap: break-word;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 18px 0;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 40px 16px 50px;
        overflow: hidden;
    }
    
    .consultation-header {
        margin-bottom: 32px;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .consultation-main-headline {
        font-size: clamp(1.45rem, 5vw, 2rem);
        word-wrap: break-word;
    }
    
    .consultation-inner {
        gap: 24px;
        padding: 0;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .consultation-left {
        padding: 24px 16px;
    }
    
    .consultation-subheadline {
        font-size: 1.35rem;
    }
    
    .consultation-body {
        font-size: 0.9rem;
    }
    
    .consultation-form-wrap {
        padding: 24px 16px;
        min-width: 0;
    }
    
    .consultation-form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-form input,
    .consultation-form textarea,
    .consultation-form select {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer {
        padding: 24px 16px;
    }
    
    .footer-content {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .footer-main,
    .footer-keywords {
        font-size: 0.75rem;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero-content-left .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .snore-cta {
        padding: 28px 12px 36px;
    }
    
    .snore-cta-headline {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        margin-bottom: 20px;
    }
    
    .snore-cta-stat-box {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 12px 10px;
    }
    
    .snore-trust-badge {
        font-size: 0.7rem;
    }
    
    .stats,
    .four-steps,
    .benefits,
    .the-science,
    .testimonials,
    .faq,
    .contact {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .stats-headline,
    .four-steps-headline,
    .benefits-headline,
    .the-science-headline,
    .faq-headline,
    .consultation-main-headline {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    }
    
    /* Before & After Section Small Mobile */
    .ba-results-headline {
        font-size: 2rem;
    }
    
    .ba-results-body {
        font-size: 0.9rem;
    }
    
    .ba-title-side {
        padding: 20px 15px;
        max-width: 240px;
    }
    
    .ba-title-word {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }
    
    .ba-title-amp {
        font-size: 1.6rem;
    }
    
    .ba-title-sub span {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .ba-label-title {
        font-size: 1.3rem;
    }
    
    .ba-label-subtitle {
        font-size: 0.8rem;
    }
    
    .ba-arrow .arrow-icon {
        font-size: 2.5rem;
    }
    
    .testimonials-headline {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .testimonials-headline-box {
        padding: 15px 25px;
    }
    
    .consultation-popup-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .consultation-popup-inner .consultation-inner {
        flex-direction: column;
    }
    
    .consultation-popup-inner .consultation-left,
    .consultation-popup-inner .consultation-form-wrap {
        padding: 20px 15px;
    }
    
    .footer-main,
    .footer-keywords,
    .footer-legal {
        font-size: 0.7rem;
    }
}

/* Prevent any section or container from causing horizontal scroll */
@media (max-width: 768px) {
    section {
        max-width: 100vw;
        box-sizing: border-box;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
    }
}

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

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

/* Ensure all sections are visible by default */
section {
    opacity: 1 !important;
}



