/* ============================================
   FAISMOIMONSITE.FR — LUXURY v3
   Palette : Champagne Gold × Near-Black
   ============================================ */

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

:root {
  /* ---- Palette ---- */
  --bg:        #141008;
  --bg-2:      #1e1509;
  --card-bg:   rgba(255,238,210,0.05);
  --card-border: rgba(210,145,85,0.13);

  --gold-1: #d06535;
  --gold-2: #e89060;
  --gold-3: #f2cfa0;
  --gradient: linear-gradient(135deg, #d06535 0%, #e89060 55%, #f2cfa0 100%);

  --glow: 0 0 80px rgba(208,101,53,0.14);

  --text:   #f6eada;
  --text-2: #a08868;
  --text-3: #6a5035;

  /* ---- Type ---- */
  --ff-head: 'Plus Jakarta Sans', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  /* ---- Misc ---- */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all 0.35s var(--ease);
}

html { scroll-behavior: auto; /* handled by Lenis */ -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9996;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Dot grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9995;
  opacity: 0.019;
  background-image: radial-gradient(circle, rgba(208,101,53,0.95) 0.75px, transparent 0.75px);
  background-size: 22px 22px;
}

/* ============================================
   PHOTO UTILITIES
   ============================================ */
.hero-photo-ambient {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.13) saturate(0.35);
  pointer-events: none;
  z-index: 0;
}

.section-has-photo-bg { position: relative; overflow: hidden; }
.section-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.06) saturate(0.3);
  pointer-events: none;
  z-index: -1;
}

/* Photo strip */
.photo-strip {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-strip-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.17) saturate(0.35);
  transform: scale(1.12);
  will-change: transform;
  transition: transform 0.1s linear;
}

.photo-strip-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}

.photo-strip-quote {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(246,234,218,0.42);
  line-height: 1.5;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto;
}

.photo-strip-quote em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.2s both;
}

.preloader-logo em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-bar {
  width: 160px;
  height: 1px;
  background: rgba(208,101,53,0.15);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease) 0.5s both;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  width: 0;
  animation: preload 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  box-shadow: 0 0 10px rgba(208,101,53,0.6);
}

@keyframes preload {
  0%   { width: 0; }
  60%  { width: 65%; }
  85%  { width: 88%; }
  100% { width: 100%; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient);
  z-index: 9998;
  box-shadow: 0 0 10px rgba(208,101,53,0.55);
  transition: width 0.08s linear;
}

/* ============================================
   PARTICLES
   ============================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: var(--gold-1);
  animation: particleRise var(--dur, 12s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0);              opacity: 0; }
  12%  { opacity: 0.3; }
  88%  { opacity: 0.12; }
  100% { transform: translateY(-140px) translateX(var(--drift, 20px)); opacity: 0; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-ring { display: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--gold-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(184,107,58,0.38);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s;
  will-change: transform;
}

.cursor-ring.hover {
  width: 54px; height: 54px;
  border-color: rgba(184,107,58,0.65);
}

/* ============================================
   UTILITIES
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h3 { letter-spacing: -0.015em; }

.gradient-text {
  background: linear-gradient(135deg, #d06535 0%, #e89060 40%, #f2cfa0 60%, #e89060 80%, #d06535 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(184,107,58,0.08);
  border: 1px solid rgba(184,107,58,0.22);
  border-radius: 100px;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.btn-grad {
  background: var(--gradient);
  color: #1c1209;
}

.btn-grad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}

.btn-grad:hover::before { background: rgba(255,255,255,0.12); }

.btn-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(184,107,58,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--card-border);
}

.btn-ghost:hover {
  border-color: rgba(184,107,58,0.35);
  background: rgba(184,107,58,0.05);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-sm { padding: 11px 24px; font-size: 0.825rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: var(--t);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,107,58,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 100%;
}

.card:hover::before { opacity: 1; }

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(208,101,53,0.07), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card:hover::after { opacity: 1; }

.card:hover {
  border-color: rgba(184,107,58,0.2);
  background: rgba(255,255,255,0.035);
  transform: translateY(-6px);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(184,107,58,0.06),
    var(--glow);
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 72px; }
.section-header .pill { margin-bottom: 20px; }

.section-title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 18px; }
.section-sub { font-size: 1.05rem; color: var(--text-2); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 24px 0;
  transition: var(--t);
}

.nav.stuck {
  background: rgba(28,18,9,0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.logo {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }

.nav-links a {
  color: var(--text-2);
  font-family: var(--ff-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.25s;
}

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

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(28,18,9,0.97);
  backdrop-filter: blur(28px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  transition: var(--t);
}

.mobile-nav a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-close {
  position: absolute;
  top: 26px; right: 30px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--text-3);
  transition: color 0.25s;
}
.mobile-close:hover { color: var(--text); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  gap: 72px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}

.orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(208,101,53,0.2) 0%, transparent 60%);
  top: -250px; right: -350px;
  animation: drift1 16s ease-in-out infinite;
}

.orb-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(208,101,53,0.14) 0%, transparent 60%);
  bottom: -150px; left: -300px;
  animation: drift2 20s ease-in-out infinite;
}

@keyframes drift1 { 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(-50px,40px); } }
@keyframes drift2 { 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(40px,-30px); } }

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(208,101,53,0.14);
  border: 1px solid rgba(184,107,58,0.22);
  border-radius: 100px;
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  animation: fadeDown 0.9s var(--ease) both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold-1);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-1);
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.25; } }

.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero-p {
  font-size: 1.02rem;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.82;
  margin-bottom: 44px;
  animation: fadeUp 0.9s var(--ease) 0.2s both;
}

.hero-p strong { color: var(--text); font-weight: 500; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.018);
  overflow: hidden;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}

.hero-stat { flex: 1; padding: 28px 32px; text-align: center; border-right: 1px solid var(--card-border); }
.hero-stat:last-child { border-right: none; }

.stat-val {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label { display: block; font-size: 0.78rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.03em; }

@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(32px); }  to { opacity:1; transform:translateY(0); } }

/* ============================================
   BROWSER MOCKUP
   ============================================ */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 1s var(--ease) 0.35s both;
}

.browser-wrap { position: relative; width: 100%; max-width: 520px; }

.browser {
  background: rgba(20,12,6,0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 100px rgba(208,101,53,0.14);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  animation: floatBrowser 9s ease-in-out infinite;
}

@keyframes floatBrowser {
  0%,100% { transform:perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50%      { transform:perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(-12px); }
}

.browser-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.b-dots { display: flex; gap: 6px; }
.b-dots span { width: 10px; height: 10px; border-radius: 50%; }
.b-dots span:nth-child(1) { background: #ff5f57; }
.b-dots span:nth-child(2) { background: #febc2e; }
.b-dots span:nth-child(3) { background: #28c840; }

.b-addr {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 5px 14px;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

.browser-body { background: linear-gradient(160deg, #140e08 0%, #1e1508 100%); padding: 22px; }

.fw-nav { display: flex; align-items: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 22px; }
.fw-logo { width: 70px; height: 9px; background: var(--gradient); border-radius: 5px; }
.fw-links { display: flex; gap: 8px; margin-left: auto; }
.fw-links span { display: block; width: 26px; height: 7px; background: rgba(255,255,255,0.09); border-radius: 4px; }

.fw-hero-content { margin-bottom: 20px; }
.fw-title { height: 13px; background: linear-gradient(90deg, rgba(184,107,58,0.9), rgba(232,144,96,0.9)); border-radius: 4px; width: 72%; margin-bottom: 8px; }
.fw-title--sm { width: 50%; background: rgba(255,255,255,0.14); }
.fw-sub { height: 8px; background: rgba(255,255,255,0.07); border-radius: 4px; width: 90%; margin-bottom: 6px; }
.fw-sub--short { width: 65%; margin-bottom: 16px; }
.fw-btn { width: 88px; height: 26px; background: var(--gradient); border-radius: 13px; }

.fw-cards { display: flex; gap: 10px; }
.fw-card { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px; }
.fw-card-i { width: 22px; height: 22px; background: rgba(184,107,58,0.22); border-radius: 6px; margin-bottom: 8px; }
.fw-card-l { height: 6px; background: rgba(255,255,255,0.12); border-radius: 4px; width: 75%; margin-bottom: 5px; }
.fw-card-t { height: 5px; background: rgba(255,255,255,0.06); border-radius: 4px; }

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(10,7,4,0.94);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,107,58,0.05);
  z-index: 10;
}

.float-1 { bottom: -22px; left: -44px; animation: fc1 5.5s ease-in-out infinite; }
.float-2 { top: 24px; right: -44px; animation: fc2 7s ease-in-out infinite; }
@keyframes fc1 { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }
@keyframes fc2 { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(6px); } }

.float-ico {
  font-size: 1.2rem;
  width: 38px; height: 38px;
  background: rgba(208,101,53,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-title { font-family: var(--ff-head); font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.float-sub   { font-size: 0.7rem; color: var(--text-3); margin-top: 2px; }

/* ============================================
   TICKER
   ============================================ */
.ticker {
  padding: 18px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
  background: rgba(184,107,58,0.015);
}

.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: slide 26s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-item svg { color: var(--gold-1); }

@keyframes slide { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ============================================
   WHY
   ============================================ */
.why { background: linear-gradient(180deg, transparent, rgba(184,107,58,0.02), transparent); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-text .pill { margin-bottom: 22px; }

.why-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.why-bar { width: 52px; height: 3px; background: var(--gradient); border-radius: 2px; margin-bottom: 28px; }

.why-text p { color: var(--text-2); font-size: 1rem; line-height: 1.85; margin-bottom: 18px; }
.why-text p strong { color: var(--text); font-weight: 500; }

.promise-box {
  background: rgba(184,107,58,0.05);
  border: 1px solid rgba(184,107,58,0.16);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-top: 32px;
}

.promise-box h4 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.promise-box p { color: var(--text-2); font-size: 0.95rem; line-height: 1.78; margin: 0; }

.why-visual { position: relative; border-radius: var(--r-lg); }

.why-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.055);
  display: block;
  filter: brightness(0.62) saturate(0.75);
  transition: filter 0.6s var(--ease);
}

.why-visual:hover img { filter: brightness(0.72) saturate(0.85); }

.why-float-badge {
  position: absolute;
  bottom: -20px; left: -28px;
  background: rgba(28,18,9,0.95);
  border: 1px solid rgba(184,107,58,0.2);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  animation: fc1 6s ease-in-out infinite;
}

.wf-ico {
  font-size: 1.2rem;
  width: 42px; height: 42px;
  background: rgba(208,101,53,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-title { font-family: var(--ff-head); font-size: 0.82rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.wf-sub   { font-size: 0.72rem; color: var(--text-3); margin-top: 2px; }

/* ============================================
   PHOTO BREAK
   ============================================ */
.photo-break {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.photo-break-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.4);
  transform: scale(1.12);
  will-change: transform;
  transition: transform 0.1s linear;
}

.photo-break-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.photo-break-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(208,101,53,0.2);
  border: 1px solid rgba(184,107,58,0.3);
  border-radius: 100px;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.photo-break-quote {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.photo-break-sub {
  font-size: 1.05rem;
  color: rgba(245,240,235,0.55);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ============================================
   OFFER
   ============================================ */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.offer-card { padding: 44px; }

.offer-icon {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  background: rgba(184,107,58,0.08);
  border: 1px solid rgba(184,107,58,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  transition: var(--t);
}

.offer-card:hover .offer-icon {
  background: rgba(184,107,58,0.16);
  border-color: rgba(184,107,58,0.35);
  transform: scale(1.05);
}

.offer-card h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 12px; }
.offer-card p  { color: var(--text-2); font-size: 0.94rem; line-height: 1.82; }

/* ============================================
   OPTIONS
   ============================================ */
.options { background: linear-gradient(180deg, transparent, rgba(184,107,58,0.02), transparent); }

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

.option-card { padding: 48px 36px; text-align: center; }

.option-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(208,101,53,0.14);
  border: 1px solid rgba(184,107,58,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  transition: var(--t);
}

.option-card:hover .option-icon {
  background: rgba(184,107,58,0.15);
  border-color: rgba(184,107,58,0.35);
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(184,107,58,0.15);
}

.option-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.option-card p  { color: var(--text-2); font-size: 0.92rem; line-height: 1.78; }

/* ============================================
   POUR QUI
   ============================================ */
.pour-qui { padding-bottom: 140px; }

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

.pq-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pq-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.52) saturate(0.65);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.pq-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.38) saturate(0.5);
}

.pq-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}

.pq-label {
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pq-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.pq-desc {
  font-size: 0.875rem;
  color: rgba(245,240,235,0.6);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  margin-bottom: 16px;
}

.pq-card:hover .pq-desc { opacity: 1; transform: translateY(0); }

.pq-arrow {
  width: 42px; height: 42px;
  border: 1.5px solid rgba(184,107,58,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-1);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.pq-card:hover .pq-arrow { opacity: 1; transform: translateX(0); }

/* ============================================
   DIVIDER ORNAMENT
   ============================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,101,53,0.35));
}

.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(208,101,53,0.35), transparent);
}

.divider-gem {
  width: 7px; height: 7px;
  background: var(--gold-1);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps { background: linear-gradient(180deg, transparent, rgba(208,101,53,0.018), transparent); }

.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }

.steps-row::after {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 48px);
  right: calc(16.67% + 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,101,53,0.6) 30%, rgba(232,144,96,0.6) 70%, transparent);
}

.step { padding: 0 36px 52px; text-align: center; position: relative; z-index: 1; }

.step-deco {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-head);
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(208,101,53,0.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.step-num {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
}

.step-num::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--gradient);
  z-index: -1;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,107,58,0.14) 0%, transparent 70%);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s;
}

.step:hover .step-num::after { opacity: 1; }

.step-num span {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.step h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 14px; }
.step p  { color: var(--text-2); font-size: 0.94rem; line-height: 1.82; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.tcard { padding: 36px; }

.stars { color: var(--gold-1); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 22px; }

.tcard blockquote {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 28px;
}

.tauthor { display: flex; align-items: center; gap: 14px; }

.tavatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184,107,58,0.2);
  flex-shrink: 0;
  transition: border-color 0.35s;
}

.tcard:hover .tavatar { border-color: rgba(184,107,58,0.55); }

.tname { font-family: var(--ff-head); font-weight: 700; font-size: 0.9rem; letter-spacing: -0.01em; }
.trole { font-size: 0.76rem; color: var(--text-3); margin-top: 3px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(208,101,53,0.14) 0%, rgba(184,107,58,0.03) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(208,101,53,0.2) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  animation: drift1 18s ease-in-out infinite;
}

.cta-content { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.cta-band p { font-size: 1.1rem; color: var(--text-2); margin-bottom: 44px; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }

.contact-info .pill { margin-bottom: 20px; }

.contact-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 16px 0 18px; }

.contact-info > p { color: var(--text-2); line-height: 1.85; margin-bottom: 36px; }

.perks { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.perk  { display: flex; align-items: center; gap: 14px; font-size: 0.94rem; color: var(--text-2); }

.perk-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(208,101,53,0.14);
  border: 1px solid rgba(184,107,58,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.form-card { padding: 52px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.field input, .field textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.94rem;
  outline: none;
  transition: var(--t);
}

.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }

.field input:focus, .field textarea:focus {
  border-color: rgba(184,107,58,0.4);
  background: rgba(184,107,58,0.03);
  box-shadow: 0 0 0 3px rgba(184,107,58,0.08);
}

.field textarea { min-height: 145px; resize: vertical; }

.form-note { font-size: 0.74rem; color: var(--text-3); text-align: center; margin-top: 14px; line-height: 1.6; }

.success-msg { display: none; text-align: center; padding: 52px 32px; }
.success-icon { font-size: 3.5rem; display: block; margin-bottom: 20px; }
.success-msg h3 { font-size: 1.5rem; margin-bottom: 10px; }
.success-msg p  { color: var(--text-2); }

/* ============================================
   FOOTER
   ============================================ */
footer { padding: 48px 0; border-top: 1px solid var(--card-border); }

.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.foot-copy  { font-size: 0.8rem; color: var(--text-3); }

.foot-links { display: flex; gap: 28px; list-style: none; }
.foot-links a { font-size: 0.8rem; color: var(--text-3); text-decoration: none; transition: color 0.25s; }
.foot-links a:hover { color: var(--text-2); }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(184,107,58,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(184,107,58,0.55); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .browser { transform: none; animation: floatBrowserM 9s ease-in-out infinite; }
  @keyframes floatBrowserM { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
}

@media (max-width: 900px) {
  .nav-links, .nav .btn-grad { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-p { max-width: 540px; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-right { display: flex; justify-content: center; }
  .browser-wrap { max-width: 320px; }
  .float-card { display: none; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .pq-grid { grid-template-columns: 1fr; }
  .pq-card { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .photo-break { height: 400px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--card-border); }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--card-border); }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .foot-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stat { flex: 1 1 100%; border-right: none !important; }
  .hero-stat:last-child { border-bottom: none; }
}
