/* ═══════════════════════════════════════════════════════
   CLEAN-TEC — styles.css
   Navy (#071A33) + Gold (#FFD100) brand system
   Plus Jakarta Sans + DM Sans
   ═══════════════════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  --navy:       #071A33;
  --navy-90:    rgba(7,26,51,0.92);
  --navy-light: #0E2A4F;
  --navy-mid:   #1A3A66;
  --gold:       #FFD100;
  --gold-dim:   rgba(255,209,0,0.12);
  --gold-glow:  rgba(255,209,0,0.25);
  --gold-dark:  #C9A600;
  --white:      #FFFFFF;
  --off-white:  #FAFBFD;
  --ghost:      #F4F6FA;
  --border:     #E2E6EE;
  --text:       #2D3748;
  --text-light: #718096;
  --text-faint: #A0AEC0;

  --success:    #22C55E;
  --success-bg: rgba(34,197,94,0.1);
  --warning:    #F59E0B;
  --warning-bg: rgba(245,158,11,0.1);
  --danger:     #EF4444;
  --danger-bg:  rgba(239,68,68,0.1);
  --info:       #3B82F6;
  --info-bg:    rgba(59,130,246,0.1);

  --r:    12px;
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow:    0 1px 3px rgba(7,26,51,0.06), 0 6px 16px rgba(7,26,51,0.04);
  --shadow-lg: 0 8px 32px rgba(7,26,51,0.1), 0 2px 8px rgba(7,26,51,0.04);
  --shadow-xl: 0 16px 48px rgba(7,26,51,0.14);

  --heading: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --body:    'DM Sans', sans-serif;

  --max-w:   1200px;
  --gutter:  24px;
}

html { scroll-behavior: smooth; background: var(--navy); }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
main { background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: var(--body); }
ul, ol { list-style: none; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.text-faint { color: var(--text-faint); font-size: 13px; margin-top: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 6px;
  padding: 8px 16px; background: var(--gold); color: var(--navy);
  font-weight: 700; border-radius: var(--r-sm); z-index: 9999;
}
.skip-link:focus { left: 6px; }


/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes pulse    { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
@keyframes spin     { to { transform: rotate(360deg); } }

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.23,1,.32,1), transform 0.7s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.site-header::before {
  content: '';
  position: absolute;
  top: -100px; left: 0; right: 0;
  height: 100px;
  background: var(--navy);
}
.site-header.scrolled {
  background: var(--navy-90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-img { height: 32px; width: auto; }

/* Nav links */
.nav-links {
  display: flex; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }

/* Language switch */
.lang-switch { display: flex; gap: 2px; margin-left: 12px; }
.lang-switch a {
  padding: 4px 10px;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.lang-switch a.active { color: var(--gold); background: var(--gold-dim); }

/* CTA button */
.nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #E6BC00; box-shadow: 0 4px 20px var(--gold-glow); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu — frosted glass */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1001;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0px) saturate(1);
  -webkit-backdrop-filter: blur(0px) saturate(1);
  transition: opacity 0.4s ease, visibility 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}
.mobile-menu::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7, 26, 51, 0.45);
  z-index: -1;
}
.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.mobile-menu-top .logo { height: 32px; }

.mobile-menu-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.12); }
.mobile-menu-close svg { width: 20px; height: 20px; color: #fff; }

.mobile-nav-links {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 16px 0;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  transition: background 0.25s, border-color 0.25s, transform 0.4s ease, opacity 0.4s ease;
  transform: translateX(30px);
  opacity: 0;
}
.mobile-menu[aria-hidden="false"] .mobile-link {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu[aria-hidden="false"] .mobile-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu[aria-hidden="false"] .mobile-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu[aria-hidden="false"] .mobile-link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu[aria-hidden="false"] .mobile-link:nth-child(4) { transition-delay: 0.24s; }

.mobile-link:hover, .mobile-link:active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,209,0,0.2);
}

.ml-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ml-icon svg { width: 20px; height: 20px; color: var(--gold); }

.ml-text { display: flex; flex-direction: column; gap: 2px; }
.ml-title {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.ml-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

.mobile-cta {
  margin-top: 20px; padding: 16px;
  background: var(--gold); color: var(--navy);
  font-family: var(--heading); font-weight: 700; font-size: 16px;
  border-radius: var(--r-sm); text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: background 0.2s, transform 0.4s ease 0.3s, opacity 0.4s ease 0.3s;
}
.mobile-menu[aria-hidden="false"] .mobile-cta {
  transform: translateY(0);
  opacity: 1;
}
.mobile-cta:hover { background: var(--gold-dark); }

.mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 8px 0 4px;
}

.mobile-lang {
  display: flex; gap: 4px; margin-left: auto; margin-right: 12px;
}
.mobile-lang a {
  padding: 5px 10px; font-family: var(--heading); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.35); border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mobile-lang a.active {
  color: var(--gold);
  background: rgba(255,209,0,0.08);
  border-color: rgba(255,209,0,0.15);
}

@media (max-width: 860px) {
  .nav-links, .lang-switch, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}


/* ═══════════════════════════════════════════════════════
   HERO — Matches flyer header style
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,26,51,0.92) 0%, rgba(7,26,51,0.6) 50%, rgba(7,26,51,0.8) 100%);
}
@media (max-width: 860px) {
  .hero-bg-img { object-position: center 20%; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(7,26,51,0.9) 0%, rgba(7,26,51,0.55) 40%, rgba(7,26,51,0.75) 100%);
  }
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-content { max-width: 640px; }

.badge-new {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero floating feature cards (like flyer icons row) */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.hero-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}
.hero-feature-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,209,0,0.2); }
.hf-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hf-icon svg { width: 22px; height: 22px; color: var(--gold); }
.hero-feature-card h3 {
  font-family: var(--heading);
  font-size: 15px; font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hero-feature-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }

@media (max-width: 860px) {
  .hero-inner { padding-top: 110px; }
  .hero-features { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .hero-feature-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 0 14px;
    padding: 18px 16px;
    align-items: center;
  }
  .hero-feature-card .hf-icon {
    margin-bottom: 0;
    grid-row: 1;
    grid-column: 1;
  }
  .hero-feature-card h3 {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 0;
  }
  .hero-feature-card p {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 8px;
  }
}


/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #E6BC00; box-shadow: 0 4px 20px var(--gold-glow); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-glass { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn-glass:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.25); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--navy); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.1); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #20BD5A; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; padding: 13px; }


/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */
.section { padding: 96px 0; overflow-x: hidden; }
.section-alt { background: var(--ghost); }

.section-label {
  display: inline-block;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-dim);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 580px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* Service section dividers — navy full-bleed strip */
.section-divider {
  background: var(--navy);
  margin: 80px calc(-50vw + 50%) 48px;
  padding: 48px calc(50vw - 50%);
}
.section-divider:first-child { margin-top: 0; }
.section-divider .section-label {
  color: var(--gold);
  background: rgba(255,209,0,0.15);
}
.section-divider .section-title { color: #fff; }
.section-divider .section-sub { color: rgba(255,255,255,0.6); }


/* ═══════════════════════════════════════════════════════
   WHY CLEAN-TEC
   ═══════════════════════════════════════════════════════ */
/* ── Why band ── */
.why-band {
  background: var(--navy);
  padding: 48px 0;
}
.why-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-item {
  text-align: center;
  padding: 8px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.why-item:last-child { border-right: none; }
.why-band-icon {
  width: 48px; height: 48px;
  background: rgba(255,209,0,0.12);
  border: 1px solid rgba(255,209,0,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.why-band-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-item h3 {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.why-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .why-band { background: var(--off-white, #f4f5f7); padding: 24px 0; }
  .why-band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  .why-item {
    padding: 20px 16px;
    border-right: none;
    border-bottom: none;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(7,26,51,0.07);
  }
  .why-item:nth-child(odd) { border-right: none; }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }
  .why-band-icon {
    background: var(--gold-dim);
    border-color: rgba(255,209,0,0.3);
    width: 44px; height: 44px;
    margin-bottom: 10px;
  }
  .why-item h3 { color: var(--navy); }
  .why-item p { color: var(--text-light); }
}
@media (max-width: 520px) {
  .why-band-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════
   PACKAGES (matching flyer 3-column layout)
   ═══════════════════════════════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.packages-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pkg-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Featured tier */
.pkg-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}
.pkg-featured .pkg-head {
  background: var(--navy);
}
.pkg-featured .pkg-head * { color: #fff; }
.pkg-featured .pkg-head .pkg-price { color: var(--gold); }
.pkg-featured .pkg-divider { background: rgba(255,255,255,0.08); }

.pkg-popular {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--navy);
  font-family: var(--heading); font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.3px; z-index: 2;
}

.pkg-head { padding: 28px 24px 20px; }
.pkg-tier {
  font-family: var(--heading); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-light); margin-bottom: 6px;
}
.pkg-name { font-family: var(--heading); font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.pkg-from { font-size: 13px; color: var(--text-light); margin-top: 8px; }
.pkg-price { font-family: var(--heading); font-size: 34px; font-weight: 800; color: var(--navy); margin-top: 2px; }
.pkg-price small { font-size: 14px; font-weight: 600; color: var(--text-light); }

.pkg-divider { height: 1px; background: var(--border); margin: 0 24px; }
.pkg-body { padding: 20px 24px 28px; }

.pkg-list { display: flex; flex-direction: column; gap: 10px; }
.pkg-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); line-height: 1.5;
}
.pkg-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--success-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

@media (max-width: 860px) { .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

/* Extras row */
.extras-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.extra-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--r);
  border: 1px solid var(--border); background: var(--white);
}
.extra-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.extra-icon svg { width: 24px; height: 24px; }
.extra-icon-red { background: var(--danger-bg); }
.extra-icon-red svg { color: var(--danger); }
.extra-icon-teal { background: #D1FAE5; }
.extra-icon-teal svg { color: #059669; }
.extra-card h3 { font-family: var(--heading); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.extra-card p { font-size: 14px; color: var(--text-light); line-height: 1.55; }
.price-tag { display: inline-block; font-family: var(--heading); font-size: 14px; font-weight: 800; color: var(--navy); margin-top: 8px; }

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


/* ═══════════════════════════════════════════════════════
   PRICING TABLE
   ═══════════════════════════════════════════════════════ */
.pricing-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pricing-scroll { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.pricing-table th {
  font-family: var(--heading); font-size: 13px; font-weight: 700;
  color: var(--text-light); text-align: left;
  padding: 16px 20px; background: var(--ghost);
  border-bottom: 1px solid var(--border);
}
.pricing-table .th-highlight { background: var(--gold-dim); color: var(--navy); }
.pricing-table td { padding: 16px 20px; font-size: 15px; border-bottom: 1px solid var(--border); }
.pricing-table .td-highlight { background: rgba(255,209,0,0.04); font-weight: 600; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: rgba(244,246,250,0.5); }
.pricing-table tbody tr:hover .td-highlight { background: rgba(255,209,0,0.07); }
.size-label { font-family: var(--heading); font-weight: 700; color: var(--navy); }

/* Price-chip grid — compact per-size pricing (Deep Reset / Seasonal) */
.price-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.price-chip {
  background: var(--gold-dim);
  border: 1px solid rgba(201,166,0,0.25);
  border-radius: var(--r);
  padding: 18px 12px;
  text-align: center;
}
.price-chip-size {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}
.price-chip-price {
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

/* Gray surface variant — same token as the What's Included cards (.linen-feature) */
.pricing-wrap--surface {
  background: var(--ghost);
  padding: 32px;
}

/* Interactive size selector — Standard / Pro pricing */
.size-selector-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.size-pill {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--text-faint); /* one shade up from --border so pills read as buttons on the gray surface */
  border-radius: 999px;
  padding: 10px 20px;
  transition: all 0.15s;
}
.size-pill:hover { border-color: var(--gold); }
.size-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.size-panel[hidden] { display: none; }
.size-price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.size-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
}
.size-price-card.spc-featured { border: 2px solid var(--gold); }
/* Badge reuses .pkg-popular; only the position differs on these cards */
.spc-badge { top: -12px; left: 24px; right: auto; }
.spc-name {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.spc-price {
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.spc-price.spc-price-text { font-size: 20px; padding: 8px 0; }
.spc-sub {
  font-size: 13px;
  color: var(--text-light);
}
@media (max-width: 860px) {
  .pricing-wrap--surface { padding: 20px; }
  .size-price-cards { grid-template-columns: 1fr; gap: 16px; }
}

/* Add-ons grid */
.addons-section { margin-top: 56px; }
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.addon-chip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: 14px; color: var(--text);
}
.addon-price { font-family: var(--heading); font-weight: 700; color: var(--navy); white-space: nowrap; }

@media (max-width: 860px) { .addons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .addons-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════
   COASTAL BANNER
   ═══════════════════════════════════════════════════════ */
.coastal-banner {
  background: linear-gradient(135deg, #0C2D54, var(--navy));
  border-radius: var(--r-xl);
  padding: 48px;
  margin-top: 56px;
  position: relative; overflow: hidden;
}
.coastal-banner::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,209,0,0.07), transparent 70%);
  border-radius: 50%; transform: translate(30%, -30%);
}
.coastal-banner h3 {
  font-family: var(--heading); font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 24px;
}
.coastal-banner h3 span { color: var(--gold); }
.coastal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.coastal-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 20px;
}
.coastal-card h4 { font-family: var(--heading); font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.coastal-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.coastal-note { font-size: 13px; color: var(--gold); opacity: 0.6; }

@media (max-width: 860px) {
  .coastal-banner { padding: 32px 24px; }
  .coastal-cards { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   SERVICES GALLERY
   ═══════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-img-wrap { height: 220px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-body { padding: 24px; }
.service-body h3 { font-family: var(--heading); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

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


/* ═══════════════════════════════════════════════════════
   CLIENT PORTAL SECTION
   ═══════════════════════════════════════════════════════ */
.portal-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
/* When portal is first section (portal.html), account for fixed header */
main > .portal-section:first-child {
  padding-top: 160px;
  min-height: 100vh;
}
.portal-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,209,0,0.03), transparent);
}

/* Auth card */
.portal-auth { max-width: 440px; margin: 0 auto; position: relative; z-index: 1; }
.auth-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.auth-tabs {
  display: flex; gap: 4px;
  background: var(--ghost); border-radius: var(--r-sm); padding: 4px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1; padding: 10px;
  font-family: var(--heading); font-size: 14px; font-weight: 600;
  color: var(--text-light); background: transparent;
  border-radius: 6px; transition: all 0.2s; text-align: center;
}
.auth-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.auth-error {
  background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA;
  padding: 12px 14px 12px 40px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; margin-bottom: 16px; display: none;
  position: relative; line-height: 1.4;
}
.auth-error::before {
  content: '✕'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: #DC2626; font-size: 15px;
}
.auth-error.visible { display: block; }
.auth-note { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-light); }
.auth-forgot { text-align: center; margin-top: 12px; font-size: 13px; }
.auth-forgot a { color: var(--gold); font-weight: 600; transition: opacity 0.2s; }
.auth-forgot a:hover { opacity: 0.8; }
.auth-forgot-info { font-size: 14px; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.f-hint { font-size: 12px; color: var(--text-light); margin-top: 6px; line-height: 1.4; }

/* Portal app */
.portal-app { display: none; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.portal-app.visible { display: block; }

.portal-topbar {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.portal-topbar h2 { font-family: var(--heading); font-size: 22px; font-weight: 800; color: #fff; flex: 1; }
.portal-user-info { display: flex; align-items: center; gap: 10px; }
.portal-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 13px; color: var(--gold);
}

/* Portal tabs */
.portal-tabs {
  display: flex; gap: 4px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.06); border-radius: var(--r-sm); padding: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.portal-tabs::-webkit-scrollbar { display: none; }
.portal-tab {
  flex: 1; padding: 10px;
  font-family: var(--heading); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  border-radius: 6px; transition: all 0.2s; text-align: center;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .portal-tab { flex: none; padding: 10px 16px; font-size: 13px; }
}
.portal-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }

.portal-panel { display: none; }
.portal-panel.active { display: block; animation: fadeIn 0.3s ease; }

/* Booking card */
.booking-card { background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.booking-header { background: var(--ghost); padding: 24px 32px; border-bottom: 1px solid var(--border); }
.booking-header h3 { font-family: var(--heading); font-size: 18px; font-weight: 700; color: var(--navy); }
.booking-header p { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.booking-body { padding: 32px; max-width: 100%; }

.booking-steps { display: flex; gap: 8px; margin-bottom: 32px; }
.b-step {
  flex: 1; padding: 10px; text-align: center;
  font-family: var(--heading); font-size: 13px; font-weight: 600;
  color: var(--text-light); border-radius: var(--r-sm);
  background: var(--ghost); transition: all 0.2s;
}
.b-step.active { background: var(--gold); color: var(--navy); }
.b-step.done { background: var(--success-bg); color: var(--success); }

.b-panel { display: none; }
.b-panel.active { display: block; animation: fadeIn 0.3s ease; }

/* Package selector */
.pkg-selector { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pkg-option {
  border: 2px solid var(--border); border-radius: var(--r);
  padding: 0 0 22px; cursor: pointer; transition: all 0.2s;
  position: relative; overflow: hidden;
}
.pkg-option:hover { border-color: var(--gold); }
.pkg-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.pkg-option.selected .pkg-opt-header { background: var(--navy); border-radius: var(--r) var(--r) 0 0; }
.pkg-option.selected .pkg-opt-name { color: #fff; }
.pkg-option.selected .pkg-opt-price { color: var(--gold); }
.pkg-option.selected .pkg-opt-check { background: var(--gold); }
.pkg-opt-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; }
.pkg-opt-name { font-family: var(--heading); font-size: 15px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.pkg-opt-price { font-family: var(--heading); font-size: 20px; font-weight: 800; color: var(--navy); margin-left: auto; }
.pkg-opt-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); display: none;
  align-items: center; justify-content: center;
}
.pkg-opt-check svg { width: 12px; height: 12px; }
.pkg-option.selected .pkg-opt-check { display: flex; }
.pkg-opt-toggle {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 16px; display: flex; align-items: center; justify-content: center;
  color: #9CA3AF; transition: transform 0.25s;
}
.pkg-opt-toggle svg { width: 16px; height: 16px; }
.pkg-option.open .pkg-opt-toggle { transform: translateX(-50%) rotate(180deg); }
.pkg-opt-details {
  list-style: none; margin: 0; padding: 0 20px;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.pkg-option.open .pkg-opt-details { max-height: 260px; padding: 0 20px 16px; }
.pkg-opt-details li {
  font-size: 13px; color: #4B5563; line-height: 1.5; padding: 3px 0 3px 20px;
  position: relative;
}
.pkg-opt-details li::before {
  content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; font-size: 12px;
}
.pkg-quote-note { background: rgba(255,209,0,0.08); border: 1px solid rgba(255,209,0,0.2); border-radius: var(--r); padding: 12px 16px; margin-bottom: 16px; }
.pkg-quote-note p { font-size: 13px; color: var(--navy); margin: 0; opacity: 0.7; }
.summary-quote-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px; font-style: italic; }

@media (max-width: 640px) { .pkg-opt-header { padding: 14px 16px; } }

/* Addon card grid */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.addon-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  padding: 16px 8px;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--white); color: var(--text);
  cursor: pointer; transition: all 0.2s;
  text-align: center;
}
.addon-card:hover { border-color: var(--gold); }
.addon-card.on { border-color: var(--gold); background: var(--gold-dim); }
.addon-card.on .addon-icon svg { stroke: var(--navy); }
.addon-icon { width: 40px; height: 40px; }
.addon-icon svg { width: 100%; height: 100%; stroke: #9ca3af; }
.addon-name { font-size: 12px; font-weight: 500; line-height: 1.3; color: var(--navy); }
.addon-price { font-size: 13px; font-weight: 700; color: var(--navy); }
@media (max-width: 768px) { .addon-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }

/* Service Type Selector */
.svc-type-selector { display: flex; gap: 12px; margin-bottom: 24px; }
.svc-type-card {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--r);
  cursor: pointer; transition: all 0.2s; position: relative;
}
.svc-type-card:hover { border-color: var(--gold); }
.svc-type-card.selected { border-color: var(--gold); background: var(--gold-dim); }
.svc-type-card .pkg-opt-check { display: none; }
.svc-type-card.selected .pkg-opt-check { display: flex; }
.svc-type-icon { width: 32px; height: 32px; flex-shrink: 0; }
.svc-type-icon svg { width: 100%; height: 100%; stroke: var(--navy); }
.svc-type-info { display: flex; flex-direction: column; gap: 2px; }
.svc-type-info strong { font-family: var(--heading); font-size: 15px; font-weight: 700; color: var(--navy); }
.svc-type-info span { font-size: 12px; color: #6B7280; }
@media (max-width: 480px) { .svc-type-selector { flex-direction: column; } }

/* Home Care Package Options */
.hc-pkg-option {
  border: 2px solid var(--border); border-radius: var(--r);
  padding: 0; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden;
}
.hc-pkg-option:hover { border-color: var(--gold); }
.hc-pkg-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.hc-pkg-option.selected .pkg-opt-header { background: var(--navy); border-radius: var(--r) var(--r) 0 0; }
.hc-pkg-option .pkg-opt-name { white-space: normal; }
.hc-pkg-option.selected .pkg-opt-name { color: #fff; }
.hc-pkg-option.selected .pkg-opt-price { color: var(--gold); }
.hc-pkg-option.selected .pkg-opt-check { display: flex; background: var(--gold); }
.hc-pkg-option .pkg-opt-check { display: none; }
.hc-pkg-desc { font-size: 13px; color: #4B5563; padding: 8px 20px 14px; margin: 0; }

/* Recurrence Selector */
.rec-selector { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.rec-option {
  flex: 1; min-width: 100px; padding: 10px 14px; border: 2px solid var(--border); border-radius: var(--r);
  background: var(--white); font-family: var(--heading); font-size: 13px; font-weight: 600;
  color: var(--navy); cursor: pointer; transition: all 0.2s; text-align: center;
}
.rec-option:hover { border-color: var(--gold); }
.rec-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.rec-discount { display: block; font-size: 11px; color: var(--success); font-weight: 700; margin-top: 2px; }
.hc-recurrence-price { font-family: var(--heading); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.hc-discount-tag { display: inline-block; background: var(--success); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; }

/* A/C quantity row */
.ac-qty-row { margin-bottom: 20px; padding: 14px 16px; background: rgba(255,209,0,0.06); border: 1px solid rgba(255,209,0,0.15); border-radius: var(--r); }
.ac-qty-row .f-label { margin-bottom: 6px; }
.f-short-input { width: 80px; }
.ac-disclaimer { font-size: 12px; color: #6B7280; margin-top: 8px; line-height: 1.5; }

/* Home Care availability clause */
.hc-availability-clause { margin-top: 16px; padding: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); }
.hc-availability-clause h4 { font-family: var(--heading); font-size: 14px; font-weight: 700; color: var(--gold); margin: 0 0 8px; }
.hc-availability-clause p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; }

/* Booking summary */
.booking-summary { background: var(--ghost); border-radius: var(--r); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary-row.total {
  border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px;
  font-family: var(--heading); font-weight: 700; font-size: 20px; color: var(--navy);
}

/* Booking confirmation */
.booking-confirmation {
  text-align: center;
  padding: 20px 0;
}
.confirm-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4f5d4, #a8e6a8);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: confirmPop 0.4s cubic-bezier(.175,.885,.32,1.275);
}
.confirm-icon svg { width: 36px; height: 36px; color: #22863a; }
@keyframes confirmPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.booking-confirmation h3 {
  font-family: var(--heading);
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.booking-confirmation > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 24px;
}
.confirm-summary {
  background: var(--ghost);
  border-radius: var(--r);
  padding: 20px 24px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 20px;
}
.confirm-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Forms */
.f-group { margin-bottom: 18px; min-width: 0; }
.f-label { display: block; font-family: var(--heading); font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.f-label .req { color: #e53e3e; margin-left: 2px; }
.f-input, .f-select, .f-textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color 0.15s;
  box-sizing: border-box;
  max-width: 100%;
}
/* Remove native appearance only for text-like inputs and selects, not date/time */
.f-select { -webkit-appearance: none; appearance: none; }
.f-input[type="date"],
.f-input[type="time"] {
  min-height: 44px;
  display: block !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
.f-input:focus, .f-select:focus, .f-textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.f-textarea { resize: vertical; min-height: 80px; }
.f-short { max-width: 220px; }
.f-row { display: flex; gap: 14px; width: 100%; max-width: 100%; }
.f-row .f-group { flex: 1; min-width: 0; }
.f-actions-end { display: flex; gap: 12px; justify-content: flex-end; margin-top: 12px; }
.f-check { margin-bottom: 14px; }
.f-check-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); cursor: pointer; line-height: 1.5; }
.f-check-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; }
.f-check-label a { color: var(--gold); text-decoration: underline; }
.f-check-label a:hover { color: var(--navy); }

/* Legal pages */
.legal-page { padding-top: 120px; padding-bottom: 60px; }
.legal-page h2 { font-family: var(--heading); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.legal-page p { font-size: 0.95rem; line-height: 1.7; color: var(--text); margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page li { font-size: 0.95rem; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.legal-page a { color: var(--gold); }
.legal-page a:hover { text-decoration: underline; }
.footer-legal { font-size: 0.8rem; color: #a0aec0; margin-top: 8px; }
.footer-legal a { color: #a0aec0; text-decoration: none; }
.footer-legal a:hover { color: var(--gold); text-decoration: underline; }

@media (max-width: 520px) {
  .f-row { flex-direction: column; gap: 0; }
  .f-row .f-group { flex: none !important; width: 100% !important; }
}


/* ═══════════════════════════════════════════════════════
   DATA TABLE (portal history)
   ═══════════════════════════════════════════════════════ */
.table-scroll { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.data-table th {
  font-family: var(--heading); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-light); text-align: left;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: var(--ghost);
}
.data-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(244,246,250,0.5); }

/* Status & badges */
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 600; font-family: var(--heading);
}
.status-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; }
.status-badge.pending { background: var(--warning-bg); color: #B45309; }
.status-badge.pending::before { background: var(--warning); }
.status-badge.in-progress { background: var(--info-bg); color: #1D4ED8; }
.status-badge.in-progress::before { background: var(--info); animation: pulse 1.5s infinite; }
.status-badge.completed { background: var(--success-bg); color: #15803D; }
.status-badge.completed::before { background: var(--success); }
.status-badge.cancelled { background: var(--danger-bg); color: #B91C1C; }
.status-badge.cancelled::before { background: var(--danger); }

.tier-badge { display: inline-flex; padding: 3px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; font-family: var(--heading); }
.tier-badge.standard { background: #E8EDF5; color: #4A5568; }
.tier-badge.plus { background: var(--gold-dim); color: #8B6914; }
.tier-badge.pro { background: #E0E7FF; color: #3730A3; }
.tier-badge.deep { background: var(--danger-bg); color: var(--danger); }
.tier-badge.seasonal { background: #D1FAE5; color: #065F46; }


/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-item {
  padding: 32px 24px; border-radius: var(--r-lg);
  border: 1px solid var(--border); background: var(--white);
  text-align: center; transition: all 0.3s;
}
.contact-item:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-icon svg { width: 24px; height: 24px; color: var(--gold-dark); }
.contact-item h3 { font-family: var(--heading); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-item p { font-size: 14px; color: var(--text-light); line-height: 1.55; }
.contact-item a { color: var(--info); font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: var(--navy); }

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


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.35);
}
.footer-inner { text-align: center; }
.footer-logo { margin-bottom: 8px; display: flex; justify-content: center; }
.footer-logo img { height: 24px; width: auto; opacity: 0.5; }
.footer-tagline { font-size: 14px; font-style: italic; margin-bottom: 12px; color: rgba(255,255,255,0.25); }
.footer-copy { font-size: 13px; }


/* ═══════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════ */
.toast-container { position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 10px; width: 92%; max-width: 440px; pointer-events: none; }
.toast {
  pointer-events: auto;
  padding: 16px 20px 16px 48px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 500; line-height: 1.4;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  animation: toastSlide 0.35s ease;
  position: relative;
}
.toast::before {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 18px; line-height: 1;
}
.toast.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.toast.success::before { content: '✓'; font-weight: 700; color: #059669; }
.toast.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.toast.error::before   { content: '✕'; font-weight: 700; color: #DC2626; }
.toast.info    { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.toast.info::before    { content: 'ℹ'; font-weight: 700; color: #2563EB; }
@keyframes toastSlide { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes toastFadeOut { from { opacity:1; transform:translateY(0); } to { opacity:0; transform:translateY(-10px); } }


/* ═══════════════════════════════════════════════════════
   SPINNER
   ═══════════════════════════════════════════════════════ */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(7,26,51,0.2);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

/* ═══════════════════════════════════════ */
/* ADD PROPERTY FORM + PROPERTY CARDS     */
/* ═══════════════════════════════════════ */
.add-property-form {
  background: #f7f8fa;
  border: 2px dashed #d0d5dd;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  max-width: 580px;
}
.add-property-form.no-props {
  border-color: var(--gold);
  background: #fffcf0;
}
.add-prop-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.add-prop-header p {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 16px;
}
.prop-cards { display: grid; gap: 16px; }
.prop-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s;
}
.prop-card:hover { border-color: var(--gold); }

/* Top row: icon + name + actions */
.prop-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.prop-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.prop-card-name {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  min-width: 0;
}

/* Full-width fields below top row */
.prop-card-address {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 4px;
  line-height: 1.4;
}
.prop-card-notes {
  font-size: 0.8rem;
  color: #a0aec0;
  font-style: italic;
  margin-bottom: 4px;
}
.prop-card-meta {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.prop-card-meta span {
  font-size: 0.8rem;
  padding: 3px 10px;
  background: #f0f2f5;
  border-radius: 6px;
  color: #4a5568;
  font-weight: 500;
}

/* Action buttons — desktop: in top row, visible on hover */
.prop-card-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.prop-card:hover .prop-card-actions { opacity: 1; }

.prop-action-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.prop-action-btn svg { width: 16px; height: 16px; color: #718096; }
.prop-action-btn:hover { border-color: var(--gold); background: #fffdf0; }
.prop-action-btn:hover svg { color: var(--navy); }
.prop-action-delete:hover { border-color: #e53e3e; background: #fff5f5; }
.prop-action-delete:hover svg { color: #e53e3e; }

/* Mobile: actions move to bottom-right, bigger tap targets */
@media (max-width: 600px) {
  .prop-card { position: relative; padding-bottom: 66px; }
  .prop-card-actions {
    opacity: 1;
    position: absolute;
    bottom: 14px;
    right: 14px;
  }
  .prop-action-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
  }
  .prop-action-btn svg { width: 18px; height: 18px; }
}

/* Property edit form */
.prop-card.editing {
  display: block;
  border-color: var(--gold);
}
.prop-edit-form .f-group { margin-bottom: 14px; }

/* Delete confirmation */
.prop-delete-confirm {
  text-align: center;
  padding: 8px 0;
}
.delete-confirm-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.delete-confirm-icon svg { width: 24px; height: 24px; color: #e53e3e; }
.prop-delete-confirm h4 {
  font-family: var(--heading);
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.prop-delete-confirm p { font-size: 14px; color: #718096; }
.delete-warning {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 13px;
  color: #c53030;
}
.btn-delete {
  background: #e53e3e;
  color: #fff;
  border: none;
}
.btn-delete:hover { background: #c53030; }


/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════ */

/* Page hero (mini) */
.page-hero {
  position: relative;
  padding: 140px 0 60px;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
}
.page-hero + .section { padding-top: 0; }
.page-hero .section-label { margin-bottom: 12px; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}

/* Linen program section — matches homepage white style */

/* Linen program pause (temporary — supplier switch) */
.linen-paused-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold-dim, #FFF7D6);
  border: 1px solid var(--gold);
  border-radius: var(--r-md, 12px);
  padding: 16px 20px;
  margin: 20px auto 32px;
  max-width: 720px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.linen-paused-notice::before {
  content: '⏸';
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.3;
}
.linen-paused {
  opacity: 0.45;
  filter: grayscale(0.6);
  pointer-events: none;
  user-select: none;
}
.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
}

/* Linen portal components */
.linen-header-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  background: var(--gold-dim);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.linen-plan-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.linen-plan-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s;
  position: relative;
}
.linen-plan-opt:hover { border-color: var(--gold); }
.linen-plan-opt.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.linen-plan-opt .pkg-opt-check {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.15s;
}
.linen-plan-opt.selected .pkg-opt-check { opacity: 1; }
.linen-plan-opt-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.linen-plan-opt-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.linen-plan-opt-detail {
  font-size: 13px;
  color: var(--text-light);
}
.linen-plan-opt-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-left: auto;
  margin-right: 40px;
}
.linen-activation-note {
  font-size: 14px;
  color: var(--text-light);
  padding: 12px 16px;
  background: var(--ghost);
  border-radius: 10px;
  margin-top: 4px;
}
.linen-activation-note strong { color: var(--navy); }
.summary-total span, .summary-total strong { font-size: 16px; }
.summary-total strong { color: var(--navy); }
.summary-recurring span, .summary-recurring strong { font-size: 13px; color: var(--text-light); }
.linen-villa-note {
  padding: 16px;
  background: var(--ghost);
  border-radius: 10px;
  margin-top: 12px;
}
.linen-villa-note p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 520px) {
  .linen-plan-opt-price {
    font-size: 16px;
    margin-right: 32px;
  }
}

/* Linen intro block */
.linen-intro {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Linen section titles */
.linen-section-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.linen-section-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* What's Included */
.linen-included {
  margin-bottom: 56px;
}
.linen-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.linen-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ghost);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s;
}
.linen-feature:hover { border-color: var(--gold); }
.linen-feature-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-dim);
}
.linen-feature-icon svg {
  width: 20px; height: 20px;
  color: var(--gold-dark);
}

/* Monthly Plans */
.linen-plans { margin-bottom: 56px; }
.linen-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.linen-plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.linen-plan-card:hover { border-color: var(--gold); }
.linen-plan-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid #e2e8f0;
  background: var(--navy);
}
.linen-plan-header h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.linen-plan-body { padding: 18px 22px; }
.linen-plan-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 8px 0;
}
.linen-plan-row + .linen-plan-row {
  border-top: 1px solid #f0f2f5;
}
.linen-plan-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  min-width: 70px;
}
.linen-plan-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.linen-plan-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}
.linen-plan-detail {
  font-size: 13px;
  color: var(--text-light);
  width: 100%;
}

/* Activation chips */
.linen-activation { margin-bottom: 48px; }
.linen-activation p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.linen-activation-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.linen-act-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ghost);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 20px;
}
.linen-act-chip span {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}
.linen-act-chip strong {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

/* Info blocks */
.linen-info-block {
  margin-bottom: 48px;
}
.linen-info-block p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
}

/* CTA */
.linen-cta { margin-top: 16px; }
.linen-cta-inner {
  background: var(--navy);
  border: none;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.linen-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.linen-cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* Active nav link */
.nav-links a.active { color: var(--gold); }


/* ═══════════════════════════════════════════════════════
   LINEN TEASER (home page)
   ═══════════════════════════════════════════════════════ */
/* ── Linen Program Feature Section ── */
.linen-feature-section { background: var(--ghost); }

/* How it works */
.linen-how {
  display: flex;
  flex-direction: row;
  align-items: start;
  margin: 48px 0 56px;
  background: var(--navy);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.linen-step {
  text-align: center;
  padding: 0 16px;
  flex: 1;
  min-width: 0;
}
.linen-step-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gold);
  margin-bottom: 0;
}
.linen-step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.linen-step-icon {
  width: 56px; height: 56px;
  background: rgba(255,209,0,0.12);
  border: 1px solid rgba(255,209,0,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.linen-step-icon svg { width: 24px; height: 24px; color: var(--gold); }
.linen-step h4 {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.linen-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}


/* Bottom split */
.linen-bottom {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Tier table — pkg-card style */
.linen-tiers { /* inherits pkg-card */ }
.linen-tiers-head {
  background: var(--navy);
}
.linen-tiers-head .pkg-tier { color: rgba(255,255,255,0.5); }
.linen-tiers-head .pkg-name { color: #fff; }
.linen-tiers-head .pkg-from { color: rgba(255,255,255,0.55); margin-top: 6px; }
.linen-tiers-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.linen-tiers .pkg-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0;
  column-gap: 8px;
  padding-left: 24px;
  padding-right: 24px;
}
.linen-tiers .pkg-body .linen-tier-row {
  grid-column: 1 / -1;
}
.linen-tiers .linen-tiers-note {
  grid-column: 1 / -1;
}
.linen-col-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 4px 0;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.linen-col-pro {
  background: var(--gold-dim);
  color: var(--gold);
}
.linen-tier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.linen-tier-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.linen-tier-villa { border-bottom: none; }
.linen-tier-name {
  grid-column: 1 / -1;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.linen-tier-prices {
  display: contents;
}
.linen-price {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  text-align: center;
  background: var(--ghost);
  border-radius: 8px;
  padding: 6px 8px;
}
.linen-price small {
  font-size: 11px; font-weight: 500;
  color: var(--text-light);
  margin-left: 1px;
}
.linen-price-pro {
  background: var(--gold-dim);
  color: var(--navy);
}
.linen-price-villa {
  grid-column: 1 / -1;
  background: var(--ghost);
  text-align: center;
}
.linen-tiers-note {
  font-size: 12px; color: var(--text-light);
  margin-top: 16px; font-style: italic; line-height: 1.5;
}

/* CTA card */
.linen-cta-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky; top: 100px;
}
.linen-cta-inner {
  padding: 40px 32px;
  display: flex; flex-direction: column;
  text-align: center;
}
.linen-cta-inner .linen-teaser-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); background: rgba(255,209,0,0.12);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 20px; align-self: center;
}
.linen-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800; color: #fff; line-height: 1.25;
  margin-bottom: 12px;
}
.linen-cta-inner p {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin-bottom: 24px;
}
.linen-cta-inner .btn { width: 100%; justify-content: center; }
.linen-cta-inner .btn-glass {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  background: transparent;
}
.linen-cta-inner .btn-glass:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Responsive */
@media (max-width: 860px) {
  .linen-bottom { grid-template-columns: 1fr; }
  .linen-cta-card { position: static; }
  .linen-how {
    flex-direction: column;
    padding: 36px 28px;
  }
  .linen-step {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex: none;
    width: 100%;
  }
  .linen-step:last-child { border-bottom: none; padding-bottom: 0; }
  .linen-step-num { margin-bottom: 0; }
}
@media (max-width: 520px) {
  .linen-how { padding: 28px 20px; }
  .linen-cta-inner { padding: 32px 24px; }
  .linen-tier-name { font-size: 13px; min-width: 90px; }
  .linen-price { font-size: 15px; }
}

/* ── Cleaning CTA strip ── */
.cleaning-cta {
  margin-top: 48px;
}
/* On the hero photo the navy box needs an edge to not merge with the overlay */
.hero .cleaning-cta-inner {
  border: 1px solid rgba(255,255,255,0.12);
}
.cleaning-cta-inner {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cleaning-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.cleaning-cta-inner p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}
.cleaning-cta-inner .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .cleaning-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .cleaning-cta-inner .btn { width: 100%; justify-content: center; }
}

/* Safari mobile: prevent auto-zoom on input focus (requires ≥16px) */
@media screen and (max-width: 768px) {
  input[type="text"], input[type="email"], input[type="password"],
  input[type="tel"], input[type="number"], input[type="date"],
  input[type="time"], input[type="search"], input[type="url"],
  select, textarea { font-size: 16px !important; }
}

/* Accessibility: respect user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
