:root {
  --bg-dark: #0E0E0E;
  --bg-darker: #080808;
  --bg-card: #181818;
  --bg-card-light: #232323;
  --bg-light: #EFEAE3;
  --bg-light-2: #E5DFD5;
  --bg-light-card: #F7F3EC;
  --gold: #C8964A;
  --gold-light: #DCB069;
  --gold-dark: #A87B38;
  --white: #FFFFFF;
  --white-soft: #EFEAE3;
  --muted: #8A8580;
  --muted-light: #B0ABA4;
  --text-dark: #1F1B16;
  --text-dark-muted: #6B635A;
  --border: rgba(239, 234, 227, 0.08);
  --border-strong: rgba(239, 234, 227, 0.18);
  --border-light: rgba(31, 27, 22, 0.1);
  --border-light-strong: rgba(31, 27, 22, 0.2);
  --danger: #D85A5A;
  --serif: 'Cormorant Garamond', serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--white-soft);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  transition: padding 0.3s;
}
nav.scrolled { padding: 14px 0; }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo svg { height: 32px; width: auto; display: block; }
nav.scrolled .logo svg { height: 28px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: var(--muted-light); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.3s; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent; color: var(--gold) !important;
  padding: 11px 22px; border: 1px solid var(--gold);
  border-radius: 100px; font-weight: 500;
  transition: all 0.4s var(--ease); letter-spacing: 0.05em; font-size: 13px;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold); color: var(--bg-dark) !important; transform: translateY(-2px); }
@media (max-width: 900px) { .nav-links a:not(.nav-cta) { display: none; } }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.8) 30%, rgba(14, 14, 14, 0.88) 60%, rgba(14, 14, 14, 1) 100%),
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=2400&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(200, 150, 74, 0.12), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(200, 150, 74, 0.08), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 968px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 12px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}

h1.hero-title {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--white);
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic; font-weight: 300;
  color: var(--gold);
}
.hero-title strong { font-weight: 400; }

.hero-sub {
  font-size: 17px; color: var(--muted-light);
  margin-bottom: 44px; max-width: 540px;
  line-height: 1.75; font-weight: 300;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-primary {
  background: var(--gold); color: var(--bg-dark);
  padding: 18px 36px; border: none;
  border-radius: 100px;
  font-weight: 600; font-size: 13px;
  cursor: pointer; letter-spacing: 0.15em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.4s var(--ease); text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white); transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn-primary span, .btn-primary i { position: relative; z-index: 1; transition: transform 0.4s var(--ease); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200, 150, 74, 0.3); }
.btn-primary:hover i { transform: translateX(6px); }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 18px 36px; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-weight: 500; font-size: 13px;
  cursor: pointer; letter-spacing: 0.15em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.4s var(--ease); text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-outline:active { transform: translateY(-1px) scale(0.98); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif); font-style: italic;
  font-size: 48px; font-weight: 300;
  color: var(--gold); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 8px;
}
.stat-num em { font-style: italic; color: var(--gold); font-size: 0.7em; }
.stat-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 400;
}

/* === HERO RIGHT - VERTICAL CARD === */
.hero-feature {
  position: relative; padding: 40px; border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 15, 0.4); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease);
}
.hero-feature:hover {
  border-color: rgba(200, 150, 74, 0.4);
  transform: translateY(-4px);
  background: rgba(15, 15, 15, 0.6);
}
.feature-label {
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 24px;
}
.feature-title {
  font-size: 26px; color: var(--white);
  font-weight: 300; line-height: 1.3;
  margin-bottom: 32px; letter-spacing: -0.02em;
}
.feature-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--muted-light); font-weight: 400;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i {
  color: var(--gold); font-size: 20px; flex-shrink: 0;
}

/* === SECTION === */
section { padding: 130px 0; position: relative; }
@media (max-width: 768px) { section { padding: 80px 0; } }
.section-head { text-align: center; margin-bottom: 80px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head.left { text-align: left; margin-left: 0; }
.section-title {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 200;
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 20px; color: var(--white);
}
.section-title em {
  font-family: var(--serif);
  color: var(--gold); font-style: italic; font-weight: 300;
}
.section-sub { font-size: 16px; color: var(--muted-light); font-weight: 300; line-height: 1.7; max-width: 520px; margin-left: auto; margin-right: auto; }

/* === PROBLEMS === */
.problems { background: var(--bg-darker); position: relative; }
.problems::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0.92)),
    url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  pointer-events: none;
}
.problems .container { position: relative; z-index: 1; }

.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.problem-card {
  background: var(--bg-card);
  padding: 44px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.problem-card:hover {
  background: var(--bg-card-light);
  border-color: rgba(200, 150, 74, 0.3);
  transform: translateY(-8px);
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover .problem-icon {
  background: var(--gold); color: var(--bg-dark);
  transform: rotate(-8deg) scale(1.08);
}
.problem-num {
  font-size: 13px; color: var(--gold);
  font-weight: 500; letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.problem-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 26px; margin-bottom: 28px;
  transition: all 0.5s var(--ease-bounce);
}
.problem-card h3 {
  font-size: 20px; font-weight: 500;
  margin-bottom: 14px; color: var(--white); letter-spacing: -0.01em;
}
.problem-card p { color: var(--muted); font-size: 14px; line-height: 1.7; font-weight: 300; }

/* === SPECS (LIGHT THEME) === */
.specs { background: var(--bg-light); position: relative; overflow: hidden; color: var(--text-dark); }
.specs::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(239, 234, 227, 0.92), rgba(239, 234, 227, 0.95)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  pointer-events: none;
}
.specs .container { position: relative; z-index: 1; }
.specs .section-title { color: var(--text-dark); }
.specs .section-title em { color: var(--gold-dark); }
.specs .section-sub { color: var(--text-dark-muted); }
.specs .section-num { color: var(--gold-dark); }
.specs .eyebrow { color: var(--gold-dark); }
.specs .eyebrow::before { background: var(--gold-dark); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.spec-card {
  padding: 48px 36px;
  background: var(--bg-light-card);
  position: relative; overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease);
}
.spec-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold-dark); transform: scaleX(0);
  transform-origin: left; transition: transform 0.5s var(--ease);
}
.spec-card:hover::before { transform: scaleX(1); }
.spec-card:hover {
  background: #FFFFFF; transform: translateY(-8px);
  border-color: rgba(168, 123, 56, 0.4);
}
.spec-card:hover .spec-num { opacity: 0.8; transform: scale(1.1); }

.spec-num {
  font-size: 60px; font-weight: 200;
  color: var(--gold-dark); opacity: 0.5;
  letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.5s var(--ease);
  transform-origin: left center;
}
.spec-card h3 {
  font-size: 22px; font-weight: 500;
  margin-bottom: 16px; color: var(--text-dark); letter-spacing: -0.02em;
}
.spec-card p { color: var(--text-dark-muted); font-size: 14px; line-height: 1.75; font-weight: 300; }


/* === COMPARISON === */
.comparison {
  background: var(--bg-darker); position: relative;
}
.comparison::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.96)),
    url('https://images.unsplash.com/photo-1556909195-4e5d12b0a1c4?auto=format&fit=crop&w=2400&q=85');
  background-size: cover; background-position: center;
  opacity: 0.6;
}
.comparison .container { position: relative; z-index: 1; }

.table-wrap { overflow-x: auto; margin-top: 48px; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 24px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted); font-weight: 500;
  background: rgba(0,0,0,0.3);
}
.compare-table th.us {
  background: var(--gold); color: var(--bg-dark);
  font-weight: 700;
}
.compare-table td.us {
  background: rgba(200, 150, 74, 0.08);
  color: var(--white); font-weight: 500;
  border-left: 1px solid rgba(200, 150, 74, 0.3);
  border-right: 1px solid rgba(200, 150, 74, 0.3);
}
.compare-table td:first-child { color: var(--white); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--gold); font-weight: 600; }
.cross { color: var(--danger); }
.partial { color: var(--muted-light); }

/* === PRICING === */
.pricing { background: var(--bg-dark); position: relative; overflow: hidden; }
.pricing::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(14, 14, 14, 0.94), rgba(14, 14, 14, 0.96)),
    url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  pointer-events: none;
}
.pricing .container { position: relative; z-index: 1; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1140px; margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  transition: all 0.5s var(--ease);
}
.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 150, 74, 0.4);
  background: var(--bg-card-light);
}
.price-card.featured {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(200, 150, 74, 0.08) 100%);
  border: 1px solid var(--gold);
}
.price-card.featured:hover {
  background: linear-gradient(180deg, var(--bg-card-light) 0%, rgba(200, 150, 74, 0.12) 100%);
}
.price-card.featured::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px; background: var(--gold);
}

.badge-pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg-dark);
  padding: 8px 20px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 100px;
}
.price-tier {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; font-weight: 500;
}
.price-name {
  font-size: 32px; font-weight: 300;
  letter-spacing: -0.02em; margin-bottom: 8px;
  color: var(--white);
}
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 32px; font-weight: 300; }
.price-amount {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.price-amount .from { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.price-amount .num { font-size: 52px; font-weight: 300; color: var(--white); letter-spacing: -0.03em; }
.price-amount .unit { font-size: 14px; color: var(--muted); font-weight: 300; }

.price-features { list-style: none; margin-bottom: 36px; }
.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted-light); font-weight: 300;
  display: flex; align-items: flex-start; gap: 12px;
}
.price-features li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 18px; }

.price-btn {
  width: 100%; padding: 16px;
  background: transparent; color: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-weight: 500; font-size: 12px;
  cursor: pointer; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: block; text-align: center;
  transition: all 0.4s var(--ease);
}
.price-btn:hover {
  background: var(--gold); color: var(--bg-dark); border-color: var(--gold);
  transform: translateY(-2px);
}
.price-card.featured .price-btn { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.price-card.featured .price-btn:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); }

/* === PORTFOLIO === */
.portfolio {
  background: var(--bg-darker); position: relative;
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.port-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease);
}
.port-item:hover { transform: translateY(-8px); }
.port-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.85);
}
.port-item:hover .port-img { transform: scale(1.1); filter: brightness(1); }
.port-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 15, 15, 0.95) 100%);
  pointer-events: none;
}
.port-info {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  z-index: 1;
}
.port-loc {
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 8px; font-weight: 500;
}
.port-name {
  color: var(--white); font-weight: 400; font-size: 20px;
  letter-spacing: -0.01em; line-height: 1.3;
}

/* portfolio bg images */
.port-1 { background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1200&q=80'); }
.port-2 { background-image: url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?auto=format&fit=crop&w=1200&q=80'); }
.port-3 { background-image: url('https://images.unsplash.com/photo-1556909195-4e5d12b0a1c4?auto=format&fit=crop&w=1200&q=80'); }
.port-4 { background-image: url('https://images.unsplash.com/photo-1556912173-3bb406ef7e77?auto=format&fit=crop&w=1200&q=80'); }
.port-5 { background-image: url('https://images.unsplash.com/photo-1556910110-a5eba819b8e1?auto=format&fit=crop&w=1200&q=80'); }
.port-6 { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80'); }

/* === PROCESS (LIGHT THEME) === */
.process { background: var(--bg-light-2); position: relative; overflow: hidden; color: var(--text-dark); }
.process::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(229, 223, 213, 0.93), rgba(229, 223, 213, 0.96)),
    url('https://images.unsplash.com/photo-1556909195-4e5d12b0a1c4?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process .section-title { color: var(--text-dark); }
.process .section-title em { color: var(--gold-dark); }
.process .section-sub { color: var(--text-dark-muted); }
.process .section-num { color: var(--gold-dark); }
.process .eyebrow { color: var(--gold-dark); }
.process .eyebrow::before { background: var(--gold-dark); }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.proc-card {
  padding: 44px 32px;
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.proc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold-dark);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.proc-card:hover {
  background: #FFFFFF;
  border-color: rgba(168, 123, 56, 0.4);
  transform: translateY(-8px);
}
.proc-card:hover::before { transform: scaleY(1); }
.proc-card:hover .proc-num { opacity: 0.7; transform: scale(1.08); }
.proc-num {
  font-size: 72px; font-weight: 200;
  color: var(--gold-dark); opacity: 0.4;
  letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 12px;
  transition: all 0.5s var(--ease);
  transform-origin: left center;
}
.proc-time {
  font-size: 11px; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 16px; font-weight: 500;
}
.proc-card h3 {
  font-size: 20px; font-weight: 500;
  margin-bottom: 12px; color: var(--text-dark);
}
.proc-card p { font-size: 14px; color: var(--text-dark-muted); line-height: 1.7; font-weight: 300; }

/* === TESTIMONIALS === */
.testimonials {
  background: var(--bg-darker); position: relative;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 15, 15, 0.95), rgba(15, 15, 15, 0.95)),
    url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?auto=format&fit=crop&w=2400&q=85');
  background-size: cover; background-position: center;
  opacity: 0.5;
}
.testimonials .container { position: relative; z-index: 1; }
.test-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: all 0.5s var(--ease);
}
.test-card:hover {
  border-color: rgba(200, 150, 74, 0.4);
  transform: translateY(-6px);
  background: var(--bg-card-light);
}
.test-card:hover .test-avatar { transform: scale(1.1) rotate(-5deg); }
.test-quote-mark {
  font-size: 70px; color: var(--gold); opacity: 0.4;
  line-height: 0.8; font-family: serif;
  margin-bottom: 8px;
}
.test-stars { color: var(--gold); font-size: 14px; margin-bottom: 18px; letter-spacing: 0.15em; }
.test-quote { font-size: 15px; line-height: 1.8; color: var(--muted-light); margin-bottom: 28px; font-weight: 300; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid var(--border); }
.test-avatar {
  width: 48px; height: 48px;
  background: var(--gold); color: var(--bg-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px;
  transition: transform 0.5s var(--ease-bounce);
}
.test-name { font-weight: 500; font-size: 14px; color: var(--white); }
.test-loc { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; }

/* === FAQ (LIGHT THEME) === */
.faq { background: var(--bg-light); position: relative; overflow: hidden; color: var(--text-dark); }
.faq::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(239, 234, 227, 0.94), rgba(239, 234, 227, 0.96)),
    url('https://images.unsplash.com/photo-1556912173-3bb406ef7e77?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  pointer-events: none;
}
.faq .container { position: relative; z-index: 1; }
.faq .section-title { color: var(--text-dark); }
.faq .section-title em { color: var(--gold-dark); }
.faq .section-sub { color: var(--text-dark-muted); }
.faq .section-num { color: var(--gold-dark); }
.faq .eyebrow { color: var(--gold-dark); }
.faq .eyebrow::before { background: var(--gold-dark); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(168, 123, 56, 0.4); }
.faq-q {
  padding: 28px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 400; font-size: 18px; color: var(--text-dark);
  user-select: none; transition: color 0.3s;
  letter-spacing: -0.01em;
}
.faq-item.open .faq-q { color: var(--gold-dark); }
.faq-q i { color: var(--gold-dark); transition: transform 0.4s; font-size: 24px; }
.faq-item.open .faq-q i { transform: rotate(135deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-dark-muted); font-size: 15px; line-height: 1.8; font-weight: 300;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }

/* === CTA / FORM === */
.cta-form {
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.cta-form::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(15, 15, 15, 0.92), rgba(26, 26, 26, 0.85)),
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=2400&q=85');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.cta-form .container { position: relative; z-index: 1; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 968px) { .cta-grid { grid-template-columns: 1fr; gap: 50px; } }

.cta-form h2 {
  color: var(--white); font-size: clamp(32px, 5vw, 52px);
  font-weight: 300; letter-spacing: -0.03em;
  margin-bottom: 24px; line-height: 1.15;
}
.cta-form h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.cta-form p { color: var(--muted-light); font-size: 17px; margin-bottom: 36px; line-height: 1.75; font-weight: 300; }
.cta-trust { display: grid; gap: 16px; }
.cta-trust-item { display: flex; align-items: center; gap: 16px; font-size: 14px; color: var(--muted-light); font-weight: 300; }
.cta-trust-item i { color: var(--gold); font-size: 22px; flex-shrink: 0; }

.form-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  transition: all 0.5s var(--ease);
}
.form-card:hover {
  border-color: rgba(200, 150, 74, 0.4);
  transform: translateY(-4px);
}
.form-step { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 16px; font-weight: 500; }
.form-title { font-size: 28px; font-weight: 300; letter-spacing: -0.02em; margin-bottom: 32px; color: var(--white); }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 500; margin-bottom: 8px; color: var(--muted-light); letter-spacing: 0.1em; text-transform: uppercase; }
.form-input, .form-select {
  width: 100%; padding: 16px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--white); font-size: 15px;
  font-family: inherit; font-weight: 300;
  transition: all 0.4s var(--ease);
}
.form-input::placeholder { color: var(--muted); font-weight: 300; }
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--gold); background: rgba(200, 150, 74, 0.04);
  transform: translateY(-1px);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-dark); color: var(--white); }

.form-submit {
  width: 100%; padding: 18px;
  background: var(--gold); color: var(--bg-dark);
  border: none; border-radius: 100px;
  font-weight: 600; font-size: 13px;
  cursor: pointer; letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 12px; transition: all 0.4s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden;
}
.form-submit i { transition: transform 0.4s var(--ease); }
.form-submit:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 150, 74, 0.3);
}
.form-submit:hover i { transform: translateX(6px); }
.form-submit:active { transform: translateY(-1px) scale(0.98); }
.form-note { font-size: 11px; color: var(--muted); margin-top: 16px; text-align: center; letter-spacing: 0.05em; }

/* === FOOTER === */
footer {
  background: var(--bg-darker); color: var(--muted-light);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
@media (max-width: 768px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.foot-col h4 { color: var(--gold); font-size: 12px; font-weight: 500; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.2em; }
.foot-col p, .foot-col a { color: var(--muted-light); font-size: 14px; text-decoration: none; display: block; padding: 6px 0; font-weight: 300; transition: color 0.3s; }
.foot-col a:hover { color: var(--gold); }
.foot-bot {
  border-top: 1px solid var(--border); padding-top: 32px;
  font-size: 12px; color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  letter-spacing: 0.05em;
}

/* === MARQUEE === */
.marquee {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-dark);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 60px;
  animation: scroll-left 40s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white-soft);
  letter-spacing: -0.02em;
}
.marquee-item.alt { color: var(--gold); font-style: italic; }
.marquee-dot { color: var(--gold); margin: 0 8px; }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === QUOTE BLOCK === */
.quote-block {
  background: var(--bg-dark);
  text-align: center;
  padding: 180px 0;
  position: relative;
}
.quote-block::before, .quote-block::after {
  content: ''; position: absolute;
  width: 80px; height: 1px; background: var(--gold);
}
.quote-block::before { top: 90px; left: 50%; transform: translateX(-50%); }
.quote-block::after { bottom: 90px; left: 50%; transform: translateX(-50%); }
.quote-mark-big {
  font-family: var(--serif); font-size: 120px;
  color: var(--gold); line-height: 0.5;
  margin-bottom: 32px; font-style: italic;
}
.quote-text-big {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300; line-height: 1.25;
  color: var(--white); max-width: 1000px;
  margin: 0 auto 40px; letter-spacing: -0.02em;
}
.quote-text-big em {
  color: var(--gold);
  font-style: italic;
}
.quote-author-big {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.3em; text-transform: uppercase;
}

/* === SIDE MARKER (vertical) === */
.side-marker {
  position: fixed; left: 24px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 50;
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--muted); text-transform: uppercase;
  font-weight: 400; white-space: nowrap;
}
.side-marker::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--gold);
  margin-right: 14px; vertical-align: middle;
}
@media (max-width: 1100px) { .side-marker { display: none; } }

/* === SECTION NUMBER === */
.section-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
  margin-bottom: 16px; font-weight: 400;
  letter-spacing: -0.01em;
}

/* === EDITORIAL SPEC LIST === */
.specs-list-editorial {
  display: flex; flex-direction: column;
}
.spec-row-edit {
  display: grid; grid-template-columns: 80px 1fr 2fr 60px;
  gap: 40px; align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  transition: all 0.4s;
}
.spec-row-edit:last-child { border-bottom: 1px solid var(--border); }
.spec-row-edit:hover { padding-left: 24px; }
.spec-row-edit:hover .spec-num-big { color: var(--gold); }
.spec-row-edit:hover .spec-name-big { color: var(--white); }
.spec-num-big {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; font-weight: 300;
  color: var(--muted); transition: color 0.4s;
}
.spec-name-big {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300; letter-spacing: -0.02em;
  color: var(--white-soft); transition: color 0.4s;
}
.spec-desc-edit {
  font-size: 14px; color: var(--muted-light);
  line-height: 1.7; max-width: 480px; font-weight: 300;
}
.spec-arrow-edit {
  font-size: 22px; color: var(--gold);
  text-align: right; transition: transform 0.4s;
}
/* === FLOATING WHATSAPP === */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  background: #25D366; color: white;
  padding: 16px 26px;
  border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.35);
  z-index: 99;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 50px rgba(37, 211, 102, 0.55); }
.wa-float i { transition: transform 0.4s var(--ease-bounce); }
.wa-float:hover i { transform: rotate(-12deg) scale(1.15); }
@media (max-width: 600px) { .wa-float span:not(.wa-icon) { display: none; } .wa-float { padding: 18px; border-radius: 50%; } }

/* === LIVE BADGE === */
.live-indicator {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--muted-light);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 32px; font-weight: 400;
}
.live-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

/* === COMPREHENSIVE MOBILE FIXES === */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* === CENTER EVERYTHING ON MOBILE === */
  .hero-content, .hero-content > *, .hero-grid, .hero-grid > div,
  .hero-eyebrow, .live-indicator,
  .section-head, .specs-header, .specs-header > div,
  .intro-grid, .intro-grid > div,
  .cta-grid, .cta-grid > div,
  .foot-top, .foot-top > div, .foot-tagline {
    text-align: center !important;
  }

  /* Hero eyebrow & indicator - center align */
  .hero-eyebrow, .live-indicator {
    justify-content: center !important;
  }
  .hero-eyebrow::before { display: none; }
  .eyebrow { justify-content: center !important; }
  .eyebrow::before { display: none; }

  /* Hero stats - smaller padding, still grid 3-col */
  .hero-stats { text-align: center; }
  .hero-stats > div { text-align: center; }

  /* Hero CTA buttons - centered */
  .hero-cta { justify-content: center !important; align-items: center !important; }

  /* Feature card list - centered */
  .hero-feature { text-align: center; }
  .feature-list li { justify-content: center; }

  /* Specs header - centered */
  .specs-header-text { margin: 0 auto; }

  /* Spec rows - centered */
  .spec-row, .spec-row-edit { text-align: center; }

  /* Problem cards - centered */
  .problem-card { text-align: center; }
  .problem-icon { margin-left: auto; margin-right: auto; }

  /* Spec cards - centered */
  .spec-card { text-align: center; }

  /* Process cards - centered */
  .proc-card { text-align: center; }

  /* Price cards - centered */
  .price-card { text-align: center; }
  .price-amount, .price-amount-row { justify-content: center; }
  .price-features li { justify-content: center; text-align: left; }

  /* Test cards - centered */
  .test-card { text-align: center; }
  .test-author { justify-content: center; }
  .test-stars { text-align: center; }

  /* FAQ - keep left aligned for readability */
  .faq-grid { text-align: left !important; }
  .faq-q { text-align: left; }

  /* CTA Form text - centered */
  .cta-form h2, .cta-form p { text-align: center !important; }
  .cta-trust { text-align: left; max-width: 320px; margin: 0 auto; }
  .form-card { text-align: left; }
  .form-card .form-step, .form-card .form-title { text-align: center; }

  /* Footer - centered */
  .foot-col { text-align: center; }
  .foot-bot { justify-content: center; text-align: center; }

  /* Section sub - already centered, ensure */
  .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

  /* === ORIGINAL MOBILE STYLES === */

  /* Nav */
  nav { padding: 16px 0 !important; }
  nav .container { padding: 0 20px; }
  .nav-cta { padding: 9px 14px !important; font-size: 11px !important; letter-spacing: 0.08em !important; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  h1.hero-title {
    font-size: clamp(42px, 13vw, 60px) !important;
    line-height: 1 !important;
    margin-bottom: 24px !important;
  }
  .hero-sub { font-size: 15px; margin-bottom: 28px; margin-left: auto; margin-right: auto; }
  .hero-cta { gap: 10px; margin-bottom: 36px; flex-direction: column; }
  .btn-primary, .btn-outline {
    padding: 14px 22px !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    width: 100%;
    justify-content: center;
  }
  .hero-stats { gap: 16px; padding-top: 28px; }
  .stat-num { font-size: 32px !important; }
  .stat-label { font-size: 9px !important; letter-spacing: 0.15em !important; }

  /* Hero feature card */
  .hero-feature { padding: 28px 24px; }
  .feature-title { font-size: 20px; margin-bottom: 24px; }
  .feature-list li { padding: 12px 0; font-size: 13px; gap: 12px; }
  .feature-list i { font-size: 18px; }

  /* Live indicator + eyebrow */
  .live-indicator { font-size: 10px; margin-bottom: 24px; }
  .eyebrow { font-size: 10px; margin-bottom: 32px; letter-spacing: 0.25em; gap: 12px; }
  .eyebrow::before { width: 32px; }

  /* Sections */
  section { padding: 70px 0; }
  .section-head { margin-bottom: 50px; }
  .section-title {
    font-size: clamp(32px, 9vw, 44px) !important;
    line-height: 1.05 !important;
  }
  .section-sub { font-size: 14px; padding: 0 8px; }
  .section-num { font-size: 16px; margin-bottom: 12px; }

  /* Marquee */
  .marquee { padding: 32px 0; }
  .marquee-item { font-size: clamp(22px, 5vw, 30px); }
  .marquee-track { gap: 32px; animation-duration: 30s; }

  /* Quote block */
  .quote-block { padding: 90px 0; }
  .quote-block::before, .quote-block::after { width: 50px; }
  .quote-block::before { top: 50px; }
  .quote-block::after { bottom: 50px; }
  .quote-mark-big { font-size: 80px; margin-bottom: 20px; }
  .quote-text-big {
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.3 !important;
    padding: 0 8px;
  }
  .quote-author-big { font-size: 10px; }

  /* Problem & Spec cards */
  .problem-card { padding: 32px 24px; }
  .problem-card h3 { font-size: 17px; }
  .problem-icon { width: 44px; height: 44px; font-size: 22px; }
  .spec-card { padding: 36px 28px; }
  .spec-num { font-size: 48px; margin-bottom: 18px; }
  .spec-card h3 { font-size: 19px; }

  /* Comparison table */
  .comparison .container { padding: 0 12px; }
  .compare-table th, .compare-table td { padding: 14px 12px; font-size: 12px; }

  /* Pricing cards */
  .price-card { padding: 36px 28px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .price-name { font-size: 28px; }
  .price-amount .num { font-size: 36px; }
  .badge-pop { font-size: 9px; padding: 5px 12px; }

  /* Portfolio */
  .portfolio-grid { gap: 16px; }
  .port-info { left: 20px; right: 20px; bottom: 20px; }
  .port-name { font-size: 16px; }

  /* Process */
  .proc-card { padding: 36px 28px; }
  .proc-num { font-size: 56px; margin-bottom: 8px; }
  .proc-card h3 { font-size: 17px; }

  /* Testimonials */
  .test-card { padding: 32px 24px; }
  .test-quote { font-size: 14px; }
  .test-quote-mark { font-size: 56px; }

  /* FAQ */
  .faq-q { font-size: 15px; padding: 20px 0; gap: 12px; }
  .faq-q i { font-size: 20px; }
  .faq-a { font-size: 14px; }

  /* CTA Form */
  .cta-form { padding: 70px 0; }
  .cta-form::before { background-attachment: scroll !important; }
  .form-card { padding: 32px 24px; }
  .form-title { font-size: 22px; margin-bottom: 24px; }
  .form-input, .form-select { padding: 13px 14px; font-size: 14px; }
  .form-submit { padding: 16px; font-size: 11px; letter-spacing: 0.15em; }
  .cta-trust-item { font-size: 13px; gap: 12px; }
  .cta-form h2 { font-size: clamp(28px, 8vw, 36px) !important; }
  .cta-form p { font-size: 15px; }

  /* Footer */
  footer { padding: 60px 0 24px; }
  .foot-bot { font-size: 10px; }

  /* Mobile parallax fix (causes lag on iOS) + stronger background visibility */
  .hero-bg { background-attachment: scroll !important; }
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(14, 14, 14, 0.9) 0%, rgba(14, 14, 14, 0.75) 30%, rgba(14, 14, 14, 0.88) 60%, rgba(14, 14, 14, 1) 100%),
      url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1200&q=85') !important;
  }
  .comparison::before, .testimonials::before, .cta-form::before { background-attachment: scroll !important; }
}

@media (max-width: 400px) {
  h1.hero-title { font-size: 38px !important; }
  .section-title { font-size: 28px !important; }
  .quote-text-big { font-size: 20px !important; }
  .marquee-item { font-size: 20px; }
  .container { padding: 0 16px; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }