/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #08080d;
  --bg-alt: #0c0c14;
  --surface: #12121b;
  --surface-2: #171724;
  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.05);
  --text: #f2f2f6;
  --text-dim: #a8a8b8;
  --text-faint: #6f6f82;
  --accent: #7c6cf6;
  --accent-2: #a78bfa;
  --accent-soft: rgba(124,108,246,0.14);
  --success: #4ade80;
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --ff-display: "Manrope", "Inter", sans-serif;
  --ff-body: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

::selection { background: var(--accent); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.text-gradient {
  background: linear-gradient(100deg, var(--accent-2), var(--accent) 60%, #6f5ff0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6a5af0);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(124,108,246,0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(124,108,246,0.8); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent-2); background: var(--accent-soft); }

.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-ghost:hover { border-color: var(--accent-2); }

.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  backdrop-filter: blur(14px);
  background: rgba(8,8,13,0.7);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #4f3fd6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}

.logo-text {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
}
.logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  margin-top: 1px;
}

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 28px 22px;
  border-top: 1px solid var(--border-soft);
}
.mobile-menu a {
  padding: 12px 0;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu.open { display: flex; }
.mobile-menu .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 70px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,108,246,0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.hero h1 { margin-bottom: 22px; }

.hero-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.hstat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hstat .num, .hstat .suffix {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.9rem;
  display: inline;
}
.hstat .suffix { color: var(--accent-2); }
.hstat .label { font-size: 0.82rem; color: var(--text-faint); margin-top: 2px; }
.hdiv { width: 1px; height: 40px; background: var(--border); }

.scroll-cue {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 20px;
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 2px;
  animation: cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-alt); }
.trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 22px 0;
  text-align: center;
}
.trustbar-label { font-size: 0.8rem; color: var(--text-faint); letter-spacing: 0.04em; }
.trustbar-logos { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.trustbar-logos span {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--text-faint);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.trustbar-logos span:hover { color: var(--text-dim); }

/* ---------- Marquee ---------- */
.marquee-wrap {
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
  overflow: hidden;
  padding: 14px 0;
}
.marquee { width: 100%; overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: scrollMarquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section.alt { background: var(--bg-alt); }

/* ---------- Cards / Services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,108,246,0.4);
  background: var(--surface-2);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Case studies ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.case-figures { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.case-figures div { display: flex; flex-direction: column; gap: 4px; }
.case-label { font-size: 0.72rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.case-figures strong { font-family: var(--ff-display); font-size: 1.15rem; }
.case-figures strong.up { color: var(--success); font-size: 1.3rem; }
.case-arrow { color: var(--text-faint); font-size: 1.1rem; }
.case-name { color: var(--text-dim); font-size: 0.88rem; }
.case-disclaimer { text-align: center; color: var(--text-faint); font-size: 0.8rem; margin-top: 30px; }

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.why-left { position: sticky; top: 110px; }
.why-text { color: var(--text-dim); margin: 20px 0 30px; font-size: 1.02rem; }

.why-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--border-soft);
}
.why-item:last-child { border-bottom: 1px solid var(--border-soft); }
.why-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-2);
  min-width: 34px;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { color: var(--text-dim); font-size: 0.94rem; }

/* ---------- Timeline / Process ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}
.tl-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  position: relative;
}
.tl-dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #4f3fd6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.tl-item h4 { font-size: 1rem; margin-bottom: 8px; }
.tl-item p { color: var(--text-dim); font-size: 0.88rem; }

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 50px 0 60px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.result-num, .result-card .suffix {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2.6rem;
}
.result-card .suffix { color: var(--accent-2); }
.result-card p { color: var(--text-dim); margin-top: 12px; font-size: 0.92rem; }

/* ---------- Riviera / Lifestyle ---------- */
.riviera-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.riviera-text { color: var(--text-dim); font-size: 1.02rem; margin: 20px 0 30px; max-width: 480px; }

.riviera-art {
  position: relative;
  padding: 0 32px 44px 0;
}

.riviera-photo {
  display: block;
  object-fit: cover;
  background: var(--surface);
}

.riviera-photo-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}

.riviera-photo-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  border: 5px solid var(--bg);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.7);
}

@media (max-width: 980px) {
  .riviera-grid { grid-template-columns: 1fr; gap: 40px; }
  .riviera-art { order: -1; max-width: 420px; margin: 0 auto; width: 100%; padding: 0 24px 34px 0; }
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; }
.accordion { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.acc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.acc-head {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  cursor: pointer;
  position: relative;
  padding-right: 50px;
}
.acc-head::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-2);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}
.acc-item.open .acc-head::after { transform: translateY(-50%) rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.acc-body p { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.93rem; }

/* ---------- Contact ---------- */
.contact-section { position: relative; overflow: hidden; }
.contact-glow { top: 30%; }
.contact-wrap { position: relative; z-index: 1; max-width: 720px; }
.contact-sub { text-align: center; color: var(--text-dim); margin-top: -6px; margin-bottom: 46px; }

.contact-direct {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.contact-pill:hover { border-color: rgba(124,108,246,0.5); background: var(--surface-2); transform: translateY(-2px); }

.contact-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.contact-pill-label { display: block; font-size: 0.72rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-pill-value { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

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

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; }

.field input, .field select, .field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-2); }
.field textarea { resize: vertical; }

.form-note { text-align: center; color: var(--text-faint); font-size: 0.82rem; margin-top: 16px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-status { text-align: center; font-size: 0.88rem; margin-top: 16px; min-height: 1.2em; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: #f26666; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-soft); padding: 44px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); }

.footer-contact { display: flex; gap: 20px; }
.footer-contact a { color: var(--text-dim); font-size: 0.88rem; }
.footer-contact a:hover { color: var(--accent-2); }
.footer-copy { color: var(--text-faint); font-size: 0.8rem; width: 100%; text-align: center; margin-top: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .cards, .case-grid, .results-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-left { position: static; }
}

@media (max-width: 640px) {
  .cards, .case-grid, .results-grid, .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 50px; }
  .section { padding: 70px 0; }
  .hero-stats { gap: 22px; }
  .hdiv { display: none; }
}
