/* ============================================================
   ScandISpa — Design System
   Marque : or (#b89a4e) × teal (#1a7a9e) × crème (#fdfaf7)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --gold: #b89a4e;
  --gold-light: #d4b875;
  --gold-pale: #f7f1e3;
  --teal: #0a4f6e;
  --teal-mid: #1a7a9e;
  --teal-pale: #e8f4f9;
  --cream: #fdfaf7;
  --sand: #f5ede3;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: rgba(184, 154, 78, 0.15);
  --border-strong: rgba(184, 154, 78, 0.3);
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(10, 79, 110, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 79, 110, 0.14);
  --t: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 400; }
em { font-style: italic; color: var(--teal); }
.gold { color: var(--gold); }
.eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(253, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--t);
}
.nav.scrolled { padding: 0.8rem 3rem; box-shadow: 0 2px 20px rgba(10,79,110,0.08); }
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-logo img { height: 55px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.05em;
}
.nav-logo-sub { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--white);
  padding: 0.65rem 1.6rem; border-radius: 40px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  transition: all var(--t);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 40px; font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer; border: none; padding: 0.85rem 2.2rem;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,154,78,0.35); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-mid); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.92);
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal-pale);
  color: var(--teal);
}
.btn-outline-gold {
  background: rgba(255,255,255,0.92);
  color: var(--gold);
  border: 1.5px solid var(--gold-light);
}

.btn-outline-gold:hover {
  background: var(--gold-pale);
  color: var(--gold);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.8rem; font-size: 0.95rem; }
.btn-icon svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 9rem 3rem 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10,79,110,0.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,154,78,0.04) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-title { margin-bottom: 1.5rem; }
.hero-title em { display: block; }
.hero-desc { font-size: 1rem; line-height: 1.8; color: var(--text-muted); max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; color: var(--text-muted);
}
.hero-badge-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.hero-visual { position: relative; z-index: 1; }
.hero-image-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-image-overlay {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(253,250,247,0.92); backdrop-filter: blur(8px);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  display: flex; gap: 2rem; align-items: center;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.hero-stat-lbl { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 2px; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.service-card {
  text-align: center; padding: 2rem 1.5rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--cream); transition: all var(--t);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; font-family: var(--font-body); }
.service-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ── PRODUCTS GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.product-card {
  border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; background: var(--white);
  transition: all var(--t); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.product-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--sand);
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.product-card-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.product-card-tag { font-size: 0.82rem; color: var(--text-muted); }
.product-card-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--teal); margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.product-card-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }

/* ── FEATURED PRODUCTS HOME ── */
.featured-section { background: var(--sand); }
.featured-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }

/* ── CONFIGURATOR ── */
.cfg-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1180px; margin: 0 auto; align-items: start;
}

/* Preview card */
.cfg-preview {
  position: sticky; top: 90px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 2rem;
  box-shadow: var(--shadow);
}
.cfg-preview-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.cfg-model-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 0.2rem; }
.cfg-model-sub { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; }

.cfg-image-wrap {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--sand) 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 240px; margin-bottom: 1.25rem; position: relative;
  transition: background var(--t);
}
.cfg-image-wrap img {
  width: 100%; max-height: 320px; object-fit: contain;
  transition: opacity 0.3s ease;
}
.cfg-image-wrap.loading img { opacity: 0.5; }
.cfg-image-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 240px;
}
.cfg-image-placeholder svg { width: 80px; height: 80px; opacity: 0.15; }

.cfg-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1.25rem;
}
.cfg-spec {
  background: var(--cream); border-radius: 10px; padding: 0.55rem 0.75rem;
}
.cfg-spec-label { font-size: 0.64rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.cfg-spec-value { font-size: 0.86rem; font-weight: 500; }

.cfg-price-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.cfg-price-label { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.cfg-price-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--teal); line-height: 1; }
.cfg-price-sub { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }

/* Options panel */
.cfg-options { display: flex; flex-direction: column; gap: 1.25rem; }
.cfg-group {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color 0.2s;
}
.cfg-group:focus-within { border-color: var(--gold-light); }
.cfg-group-step { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.cfg-group-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 1rem; }

/* Model selector */
.cfg-model-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
.cfg-model-card {
  border: 2px solid var(--border); border-radius: 12px; padding: 0.9rem 0.7rem;
  cursor: pointer; transition: all 0.22s; text-align: center; background: var(--cream);
}
.cfg-model-card:hover { border-color: var(--teal-mid); }
.cfg-model-card.active { border-color: var(--teal); background: var(--teal-pale); }
.cfg-model-card-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; }
.cfg-model-card-sub { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }
.cfg-model-card-price { font-size: 0.74rem; color: var(--teal); font-weight: 500; margin-top: 5px; }

/* Color swatches */
.cfg-colors { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cfg-color-opt { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.cfg-swatch {
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; transition: transform 0.2s;
  border: 3px solid transparent;
  outline: 2px solid transparent; outline-offset: 3px;
}
.cfg-swatch:hover { transform: scale(1.12); }
.cfg-swatch.active { outline-color: var(--teal); }
.cfg-swatch-label { font-size: 0.65rem; color: var(--text-muted); text-align: center; white-space: nowrap; max-width: 60px; }

/* Toggle options */
.cfg-toggles { display: flex; flex-direction: column; gap: 0.6rem; }
.cfg-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: all 0.2s;
}
.cfg-toggle:hover { background: var(--teal-pale); border-color: var(--teal-mid); }
.cfg-toggle.active { background: var(--teal-pale); border-color: var(--teal); }
.cfg-toggle-left { display: flex; flex-direction: column; }
.cfg-toggle-name { font-size: 0.88rem; font-weight: 500; }
.cfg-toggle-desc { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.cfg-toggle-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.cfg-toggle-price { font-size: 0.76rem; color: var(--teal); font-weight: 500; }
.switch {
  width: 36px; height: 20px; border-radius: 10px; background: #d1d5db;
  position: relative; transition: background 0.2s; flex-shrink: 0;
}
.switch::after {
  content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); top: 3px; left: 3px; transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cfg-toggle.active .switch { background: var(--teal); }
.cfg-toggle.active .switch::after { transform: translateX(16px); }

/* Summary box */
.cfg-summary {
  background: var(--gold-pale); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 1.5rem;
}
.cfg-summary-list { font-size: 0.84rem; color: var(--text-muted); line-height: 2; margin-bottom: 1rem; }
.cfg-summary-total { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--teal); }

/* ── LEAD FORM ── */
.lead-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text); }
.form-label .req { color: var(--gold); margin-left: 2px; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border-strong); background: var(--white);
  font-size: 0.9rem; color: var(--text); transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--teal); }
.form-input::placeholder { color: #bbb; }
textarea.form-input { resize: vertical; }
.form-error { font-size: 0.75rem; color: #c53030; }
.form-success {
  background: #f0fff4; border: 1px solid #9ae6b4; border-radius: 10px;
  padding: 1rem 1.25rem; font-size: 0.9rem; color: #276749;
  display: flex; align-items: center; gap: 0.5rem;
}

/* ── MESSAGES ── */
.messages-bar { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); z-index: 500; width: 100%; max-width: 560px; padding: 0 1rem; }
.alert {
  padding: 0.9rem 1.25rem; border-radius: 12px; font-size: 0.88rem;
  margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12); animation: slideDown 0.3s ease;
}
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.alert-error { background: #fff5f5; border: 1px solid #feb2b2; color: #9b2c2c; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--teal); color: var(--white); text-align: center; padding: 5rem 2rem;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section h2 em { color: var(--gold-light); }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; }

/* ── REGION SECTION ── */
.region-section { background: var(--text); color: var(--white); }
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.region-content h2 { color: var(--white); }
.region-content h2 em { color: var(--gold-light); }
.region-content p { color: rgba(255,255,255,0.72); line-height: 1.8; margin-top: 1rem; }
.region-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.region-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; color: rgba(255,255,255,0.82); }
.region-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.region-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.region-stat { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 1.4rem; }
.region-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--gold-light); display: block; line-height: 1; }
.region-stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── PRODUCT DETAIL ── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-gallery-main { border-radius: 20px; overflow: hidden; background: var(--sand); }
.product-gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.product-gallery-thumbs img {
  width: 72px; height: 72px; border-radius: 10px; object-fit: cover;
  border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s;
}
.product-gallery-thumbs img.active, .product-gallery-thumbs img:hover { border-color: var(--gold); }
.product-specs-table { width: 100%; border-collapse: collapse; }
.product-specs-table tr { border-bottom: 1px solid var(--border); }
.product-specs-table td { padding: 0.55rem 0; font-size: 0.88rem; }
.product-specs-table td:first-child { color: var(--text-muted); width: 45%; }
.product-specs-table td:last-child { font-weight: 500; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.contact-info-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-value { font-weight: 500; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { opacity: 0.4; }

/* ── FOOTER ── */
.footer { background: #111827; color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.84rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 0.5rem; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.2rem; border-radius: 30px; font-size: 0.8rem; font-weight: 500;
  border: 1.5px solid var(--border-strong); background: transparent; cursor: pointer;
  transition: all 0.2s; color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── PAGE HEADER ── */
.page-header { padding: 8rem 0 4rem; background: var(--white); border-bottom: 1px solid var(--border); text-align: center; }
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.badge { display: inline-block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.badge-gold { background: var(--gold); color: var(--white); }
.badge-teal { background: var(--teal); color: var(--white); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.7s ease both; }
.animate-up-delay { animation: fadeUp 0.7s 0.15s ease both; }

/* ── RESPONSIVE — см. responsive.css ── */

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh;
  background: var(--white); z-index: 300; padding: 5rem 2rem 2rem;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  transition: right 0.3s ease; display: flex; flex-direction: column; gap: 0;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block; padding: 1rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text);
}
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 250;
}
.mobile-nav-overlay.show { display: block; }

/* ── LOADING SPINNER ── */
.spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(10,79,110,0.15);
  border-top-color: var(--teal);
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ============================================================
   STYLE REFRESH — modern + special, without changing classes
   add below current main.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  /* refined palette */
  --gold: #b89546;
  --gold-light: #d7ba72;
  --gold-pale: #fbf5e8;

  --teal: #0f5f73;
  --teal-mid: #1d8aa6;
  --teal-soft: #69bfd3;
  --teal-pale: #edf9fc;

  --sky: #8ed8ea;
  --sky-soft: #dff7fb;

  --cream: #fcf8f3;
  --sand: #f4ede4;
  --white: #ffffff;

  --text: #1a1f2b;
  --text-muted: #667085;

  --border: rgba(15, 95, 115, 0.10);
  --border-strong: rgba(15, 95, 115, 0.18);

  --shadow: 0 10px 30px rgba(15, 95, 115, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 95, 115, 0.14);

  /* typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
}

/* base feel */
body {
  background:
    radial-gradient(circle at top right, rgba(105, 191, 211, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(184, 149, 70, 0.07), transparent 26%),
    var(--cream);
  color: var(--text);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

p, li, a, span, input, textarea, button {
  font-family: var(--font-body);
}

.hero-title,
.product-card-name,
.cfg-model-name,
.cfg-group-title,
.footer-logo,
.nav-logo-text {
  text-wrap: balance;
}

/* more premium nav */
.nav {
  background: rgba(252, 248, 243, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(15, 95, 115, 0.10);
}

.nav.scrolled {
  box-shadow: 0 8px 28px rgba(15, 95, 115, 0.08);
}

.nav-logo-text {
  color: var(--text);
  font-size: 1.32rem;
  letter-spacing: 0.03em;
}

.nav-logo-sub {
  color: var(--teal);
  opacity: 0.72;
}

.nav-links a {
  color: rgba(26, 31, 43, 0.70);
  font-weight: 500;
}

.nav-links a::after {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal-soft));
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #cfa85a 100%);
  box-shadow: 0 10px 24px rgba(184, 149, 70, 0.22);
}

.nav-cta:hover,
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 149, 70, 0.28);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  box-shadow: 0 10px 24px rgba(15, 95, 115, 0.18);
}

.btn-outline,
.btn-outline-gold {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* hero becomes more special */
.hero::before {
  background: radial-gradient(circle, rgba(105, 191, 211, 0.14) 0%, transparent 68%);
}

.hero::after {
  background: radial-gradient(circle, rgba(184, 149, 70, 0.08) 0%, transparent 70%);
}

.hero-desc {
  color: rgba(26, 31, 43, 0.72);
  font-size: 1.02rem;
}

.hero-image-wrap {
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 24px 60px rgba(15, 95, 115, 0.16),
    0 0 0 1px rgba(255,255,255,0.45) inset;
}

.hero-image-overlay {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(135%);
  border: 1px solid rgba(105, 191, 211, 0.16);
}

.hero-stat-num {
  color: var(--teal);
}

/* cards */
.service-card,
.product-card,
.cfg-group,
.cfg-preview,
.card {
  border: 1px solid rgba(15, 95, 115, 0.10);
  box-shadow: var(--shadow);
}

.service-card,
.product-card,
.cfg-group,
.cfg-preview {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.98) 100%);
}

.service-card:hover,
.product-card:hover,
.cfg-group:focus-within {
  border-color: rgba(105, 191, 211, 0.35);
  box-shadow: 0 20px 50px rgba(15, 95, 115, 0.12);
}

.service-icon,
.hero-badge-icon,
.contact-info-icon {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--sky-soft) 100%);
}

.service-icon svg,
.contact-info-icon svg,
.hero-badge-icon svg {
  stroke: var(--teal);
}

/* product cards */
.product-card-badge,
.badge-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #cda457 100%);
}

.product-card-price,
.cfg-price-value,
.cfg-summary-total {
  color: var(--teal);
}

/* configurator — keep structure, enhance styling */
.cfg-preview {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,252,253,0.98) 100%);
  border-radius: 26px;
}

.cfg-image-wrap {
  background:
    radial-gradient(circle at top right, rgba(142, 216, 234, 0.28), transparent 34%),
    linear-gradient(135deg, #f3fbfd 0%, #f8f0e4 100%);
  border: 1px solid rgba(105, 191, 211, 0.12);
}

.cfg-group-step,
.cfg-preview-eyebrow,
.eyebrow {
  color: var(--teal);
}

.eyebrow::before {
  background: linear-gradient(90deg, var(--gold), var(--teal-soft));
}

.cfg-model-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,252,253,0.95) 100%);
  border-color: rgba(15, 95, 115, 0.10);
}

.cfg-model-card:hover {
  border-color: rgba(29, 138, 166, 0.42);
  box-shadow: 0 12px 28px rgba(15, 95, 115, 0.08);
  transform: translateY(-2px);
}

.cfg-model-card.active {
  background:
    linear-gradient(180deg, rgba(233, 249, 252, 0.95) 0%, rgba(255, 247, 232, 0.95) 100%);
  border-color: var(--teal);
  box-shadow:
    0 0 0 1px rgba(15, 95, 115, 0.04),
    0 14px 34px rgba(15, 95, 115, 0.10);
}

.cfg-swatch {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9) inset,
    0 8px 16px rgba(15, 95, 115, 0.08);
}

.cfg-swatch.active {
  outline-color: var(--teal-mid);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.95) inset,
    0 0 0 6px rgba(105, 191, 211, 0.14);
}

.cfg-toggle {
  background: rgba(255,255,255,0.74);
  border-color: rgba(15, 95, 115, 0.10);
}

.cfg-toggle:hover {
  background: linear-gradient(180deg, #f4fcfe 0%, #fdf8ef 100%);
}

.cfg-toggle.active {
  background: linear-gradient(180deg, #eefbfd 0%, #fbf4e6 100%);
  border-color: rgba(29, 138, 166, 0.44);
}

.cfg-summary {
  background: linear-gradient(135deg, #fbf4e7 0%, #eefbfd 100%);
  border: 1px solid rgba(29, 138, 166, 0.16);
}

/* forms */
.form-input {
  background: rgba(255,255,255,0.92);
  border-color: rgba(15, 95, 115, 0.14);
}

.form-input:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 4px rgba(105, 191, 211, 0.12);
}

/* sections */
.featured-section {
  background:
    linear-gradient(180deg, rgba(244, 237, 228, 0.70) 0%, rgba(237, 249, 252, 0.55) 100%);
}

.cta-section {
  background:
    radial-gradient(circle at top right, rgba(142, 216, 234, 0.16), transparent 30%),
    linear-gradient(135deg, #0d5163 0%, #123746 100%);
}

.region-section {
  background:
    radial-gradient(circle at top right, rgba(105, 191, 211, 0.12), transparent 28%),
    linear-gradient(135deg, #161c27 0%, #0f2430 100%);
}

.region-stat {
  background: rgba(255,255,255,0.06);
  border-color: rgba(142, 216, 234, 0.12);
}

/* footer */
.footer {
  background:
    linear-gradient(180deg, #111827 0%, #0d1722 100%);
}

.footer-logo {
  color: #f1d48b;
}

/* small premium details */
.badge-teal,
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
}

::selection {
  background: rgba(105, 191, 211, 0.22);
  color: var(--text);
}