/* ===== CSS VARIABLES ===================================================== */
:root {
  --bg-0: #07080E;
  --bg-1: #0C0D1A;
  --bg-2: #111220;
  --bg-3: #181928;
  --bg-card: #0E101C;
  --gold: #C9A84C;
  --gold-l: #E0C06C;
  --gold-d: #8A6F2E;
  --gold-bg: rgba(201,168,76,.07);
  --gold-glow: rgba(201,168,76,.18);
  --gold-border: rgba(201,168,76,.15);
  --white: #FFFFFF;
  --text: #DCDCf0;
  --muted: #888899;
  --dim: #4A4A5E;
  --border: rgba(255,255,255,.06);
  --radius: 16px;
  --radius-sm: 8px;
  --max-w: 1200px;
  --trans: all .3s cubic-bezier(.4,0,.2,1);
  --shadow-gold: 0 0 60px rgba(201,168,76,.12);
}

/* ===== RESET ============================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(201,168,76,.25); color: var(--white); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--gold-d); border-radius: 10px; }

/* ===== PRELOADER ========================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-0);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pre-wrap { text-align: center; }
.pre-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
  animation: pulseLogo 1.5s ease-in-out infinite;
}
@keyframes pulseLogo {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.pre-bar {
  width: 180px;
  height: 2px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
  border-radius: 2px;
  animation: fillBar 1.8s ease-in-out forwards;
}
@keyframes fillBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ===== CURSOR ============================================================= */
.cursor, .cursor-f {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  z-index: 9998;
  transition: transform .1s, opacity .2s;
}
.cursor-f {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,.4);
  transition: width .3s, height .3s, border-color .3s;
}
body:hover .cursor, body:hover .cursor-f { opacity: 1; }
.cursor-hover .cursor { transform: translate(-50%,-50%) scale(2.5); }
.cursor-hover .cursor-f { width: 50px; height: 50px; border-color: rgba(201,168,76,.8); }
@media (pointer: coarse) { .cursor, .cursor-f { display: none; } }

/* ===== NAVIGATION ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  padding: 0;
  overflow: hidden;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(7,8,14,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--bg-0);
  font-weight: 800;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}
.nav-phone:hover { color: var(--gold-l); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--bg-0) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 8px;
}
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #1A1C2E, #111320);
  border: 1.5px solid rgba(201,168,76,.6);
  padding: 11px 12px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  left: calc(100vw - 60px);
  z-index: 9990;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.15) inset;
  will-change: transform;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold-l);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(7,8,14,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a:last-child { border-bottom: none; }

/* ===== HERO =============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.09) 0%, transparent 70%);
  top: -250px; left: -100px;
  animation: floatOrb 9s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  top: 50px; right: -80px;
  animation: floatOrb 11s ease-in-out infinite reverse;
}
.orb-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 70%);
  bottom: -200px; left: 35%;
  animation: floatOrb 13s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.06); }
  66% { transform: translate(-25px,25px) scale(0.94); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: var(--gold-bg);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-title .gold-text {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 40%, var(--gold-l) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-typed-row {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-typed-label { color: var(--muted); }
.hero-typed {
  color: var(--gold-l);
  font-weight: 500;
  min-width: 180px;
}
.typed-cursor { color: var(--gold); }
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 60%, var(--gold-l) 100%);
  color: var(--bg-0);
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}
.hero-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.hero-contact svg { color: var(--gold); }
.hero-contact:hover { color: var(--white); }
.hero-contact-sep { color: var(--dim); font-size: 18px; }
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--dim);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== STATS ============================================================== */
.stats-bar {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.04), transparent);
  pointer-events: none;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item { text-align: center; padding: 0 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}
.stat-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suf {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== SECTIONS COMMON ==================================================== */
.section { padding: 100px 0; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: '— '; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}
.section-head.center .section-sub { margin: 0 auto; }
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 16px;
}
.section-head.center .gold-line { margin: 16px auto 0; }

/* ===== ABOUT ============================================================== */
.about { background: var(--bg-0); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.detail-row svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.detail-row strong { color: var(--text); }
.about-visual {
  position: relative;
}
.about-img-box {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--gold-border);
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: .4;
}
.about-img-placeholder svg { width: 80px; height: 80px; color: var(--gold); }
.about-img-placeholder span { font-size: 13px; color: var(--muted); }
.about-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
}
.about-corner--tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 2px 0 0 0; }
.about-corner--tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 2px 0 0; }
.about-corner--bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; border-radius: 0 0 0 2px; }
.about-corner--br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 2px 0; }
.about-float-card {
  position: absolute;
  background: rgba(14,16,28,.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.about-float-card--1 { bottom: -16px; right: -24px; }
.about-float-card--2 { top: -16px; left: -24px; }
.float-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.float-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ===== PRODUCTS =========================================================== */
.products { background: var(--bg-1); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.products-grid .prod-card:nth-child(5),
.products-grid .prod-card:nth-child(6) {
  grid-column: span 1;
}
.prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.prod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, var(--gold-bg), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.prod-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), var(--shadow-gold);
}
.prod-card:hover::before { opacity: 1; }
.prod-icon {
  width: 52px; height: 52px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
  transition: var(--trans);
}
.prod-card:hover .prod-icon {
  background: rgba(201,168,76,.15);
  box-shadow: 0 0 20px rgba(201,168,76,.2);
}
.prod-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prod-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.products-grid .prod-card--wide { grid-column: span 2; }
.prod-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--trans);
  text-decoration: none;
}
.prod-card:hover .prod-arrow { opacity: 1; transform: translateX(0); }

/* ===== BENEFITS =========================================================== */
.benefits { background: var(--bg-0); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.benefit-card {
  background: var(--bg-card);
  padding: 44px 40px;
  display: flex;
  gap: 24px;
  transition: background .3s;
  position: relative;
}
.benefit-card:hover { background: var(--bg-2); }
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-3);
  position: absolute;
  top: 20px; right: 24px;
  user-select: none;
}
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.benefit-content {}
.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.benefit-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== PROCESS ============================================================ */
.process { background: var(--bg-1); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold), var(--gold-border), transparent);
}
.process-step { text-align: center; padding: 0 16px; }
.step-num-wrap {
  position: relative;
  width: 64px; height: 64px;
  margin: 0 auto 24px;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--trans);
}
.process-step:hover .step-num {
  background: var(--gold-bg);
  box-shadow: 0 0 24px rgba(201,168,76,.25);
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.process-result {
  margin-top: 48px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.process-result-icon { color: var(--gold); flex-shrink: 0; }
.process-result-text { font-size: 15px; font-weight: 600; color: var(--text); }

/* ===== TESTIMONIALS ======================================================= */
.testimonials { background: var(--bg-0); }
.swiper-testimonials { overflow: hidden; }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  height: auto;
  transition: border-color .3s;
  position: relative;
}
.review-card:hover { border-color: var(--gold-border); }
.review-quote {
  font-size: 72px;
  line-height: .8;
  color: var(--gold);
  opacity: .15;
  font-family: Georgia, serif;
  position: absolute;
  top: 20px; left: 28px;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--gold);
}
.review-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-0);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--white); }
.review-company { font-size: 12px; color: var(--muted); margin-top: 2px; }
.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.swiper-controls .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.swiper-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: var(--trans);
}
.swiper-btn:hover { border-color: var(--gold-border); color: var(--gold); }
.swiper-pagination-bullet { background: var(--dim) !important; opacity: 1 !important; width: 6px !important; height: 6px !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 20px !important; border-radius: 3px !important; }

/* ===== FAQ ================================================================ */
.faq { background: var(--bg-1); }
.faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-cta-box {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
}
.faq-cta-text { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.faq-cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  transition: color .2s;
}
.faq-cta-phone:hover { color: var(--gold-l); }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q.open { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); background: rgba(201,168,76,.15); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 0;
}
.faq-a.open { max-height: 400px; padding-bottom: 20px; }

/* ===== CONTACT ============================================================ */
.contact { background: var(--bg-0); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dim);
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.contact-info-val a { color: var(--gold); transition: color .2s; }
.contact-info-val a:hover { color: var(--gold-l); }

/* FORM */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-label .req { color: var(--gold); margin-left: 2px; }
.form-input, .form-textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--dim); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 60%, var(--gold-l) 100%);
  color: var(--bg-0);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s;
}
.form-submit:hover::before { transform: translateX(100%); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.4); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-msg.success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); color: #6EE7B7; align-items: center; gap: 8px; }
.form-msg.error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25); color: #FCA5A5; align-items: center; gap: 8px; }

/* ===== FOOTER ============================================================= */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-wrap .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-line svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-line a { color: var(--muted); transition: color .2s; }
.footer-contact-line a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--dim);
}

/* ===== ANIMATIONS ========================================================= */
[data-aos="fade-up-gold"] {
  transform: translateY(30px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="fade-up-gold"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ========================================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 901px) {
  .nav-burger { display: none; }
}
@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; gap: 12px; }
  .nav-menu { display: none; }
  .nav-phone { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:not(:last-child)::after { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid .prod-card--wide { grid-column: span 2; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .about-float-card--1 { right: 0; bottom: -10px; }
  .about-float-card--2 { left: 0; top: -10px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 100px 0 60px; }
  .hero-inner { padding: 0 20px; }
  .hero-title { letter-spacing: -.5px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid .prod-card--wide { grid-column: span 1; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 18px; }
  .form-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
