/* ROXET landing — ported from Claude Design "Roxet Landing.dc.html" */

:root {
  --bg: #131210;
  --bg-2: #191714;
  --bg-3: #0F0E0C;
  --card: #1E1C19;
  --card-2: #23201C;
  --ink: #EDE8DF;
  --ink-soft: #B3AB9D;
  --ink-dim: #948D80;
  --ink-faint: #6b675f;
  --gold: #C8A96A;
  --gold-light: #E0C48C;
  --dark: #1F1F1F;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold); }
.gold { color: var(--gold); }
img { max-width: 100%; }
button { font-family: inherit; }

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
[data-reveal].in { opacity: 1; transform: none; }

@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(16px,4vw,48px);
  background: rgba(19,18,16,.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; letter-spacing: .04em; }
.logo:hover { color: var(--ink); }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; letter-spacing: .02em; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
@media (max-width: 768px) { .nav-links { display: none; } }

.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(200,169,106,.4); color: var(--gold);
  transition: all .3s;
}
.icon-btn.lg { width: 42px; height: 42px; }
.icon-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.btn-gold {
  background: var(--gold); color: var(--dark);
  padding: 11px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; transition: background .3s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--dark); }
.btn-outline {
  border: 1px solid rgba(255,255,255,.3);
  padding: 11px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; transition: all .3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 17px 40px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  max-width: 1440px; margin: 0 auto;
  padding: 150px clamp(20px,5vw,48px) 90px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,400px),1fr));
  gap: 56px; align-items: center;
}
@media (min-width: 1000px) {
  /* design renders the photo column wider than the copy column */
  .hero { grid-template-columns: 1fr 1.2fr; }
}
.hero-copy { min-width: 0; animation: heroIn 1.1s cubic-bezier(.16,1,.3,1) both; }
.kicker {
  display: flex; align-items: center; gap: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px;
}
.kicker-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px,4.5vw,62px); line-height: 1.05; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 28px;
}
.lead { font-size: 18px; line-height: 1.7; color: var(--ink-soft); max-width: 480px; margin: 0 0 40px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 600; }
.stat-label { font-size: 13px; color: var(--ink-dim); margin-top: 4px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.14); }

.hero-visual { min-width: 0; position: relative; animation: heroIn 1.1s .15s cubic-bezier(.16,1,.3,1) both; }
.hero-glow {
  position: absolute; top: -24px; right: 0; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,.35), transparent 70%);
  animation: floatSlow 6s ease-in-out infinite;
}
.hero-photo {
  position: relative; height: 560px; border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(31,31,31,.35);
}
@media (min-width: 1400px) { .hero-photo { height: 660px; } }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.hero-badge {
  display: inline-block; margin-top: 18px; background: var(--card);
  border: 1px solid rgba(200,169,106,.35); border-radius: 16px; padding: 14px 22px;
  box-shadow: 0 12px 32px -16px rgba(31,31,31,.18);
}
.hero-badge-tag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.hero-badge-title { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 600; margin-top: 2px; text-transform: uppercase; }

/* ---------- Sections shared ---------- */
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }
.container-faq { max-width: 760px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px,3.1vw,40px); font-weight: 800; text-transform: uppercase;
  line-height: 1.12; margin: 0;
}
h2.light { color: #F8F6F2; }

/* ---------- About ---------- */
.about { background: var(--bg-2); padding: 110px clamp(20px,5vw,48px); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,380px),1fr));
  gap: 56px; align-items: center;
}
.about-media { position: relative; }
.carousel { height: 520px; border-radius: 24px; overflow: hidden; position: relative; }
.carousel-track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.carousel-track img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  flex-shrink: 0; display: block;
}
.carousel-arrow {
  all: unset; box-sizing: border-box; cursor: pointer;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(19,18,16,.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200,169,106,.4); color: var(--gold); font-size: 16px; transition: all .25s;
}
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.carousel-arrow:hover { background: var(--gold); color: var(--dark); }
.carousel-counter {
  position: absolute; right: 14px; bottom: 14px;
  background: rgba(19,18,16,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--gold); border-radius: 999px; padding: 6px 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .08em;
}
.gallery-open {
  all: unset; box-sizing: border-box; cursor: pointer;
  position: absolute; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(19,18,16,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,106,.4); color: var(--gold);
  border-radius: 999px; padding: 10px 18px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; transition: all .3s;
}
.gallery-open:hover { background: var(--gold); color: var(--dark); }
.about-tag {
  position: absolute; right: -18px; top: -18px;
  background: var(--gold); color: var(--dark);
  border-radius: 16px; padding: 14px 20px; font-size: 13px; letter-spacing: .08em;
}
.about-copy { min-width: 0; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy p { font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 32px; text-wrap: pretty; }
.about-copy .eyebrow { text-align: left; }
.achievements { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .achievements { grid-template-columns: 1fr; } }
.achievement {
  display: flex; align-items: center; gap: 14px;
  background: var(--card-2); border-radius: 14px; padding: 16px 18px;
  font-size: 14px; font-weight: 500;
}
.diamond { color: var(--gold); font-size: 18px; }

/* ---------- Benefits ---------- */
.benefits-section { padding: 110px clamp(20px,5vw,48px); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr)); gap: 20px; }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  background: var(--card); border-radius: 20px; padding: 36px 30px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.benefit:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 24px 48px -20px rgba(31,31,31,.2); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg,#262219,#2E2820);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); margin-bottom: 22px;
}
.benefit-title { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.benefit-text { font-size: 14px; line-height: 1.7; color: var(--ink-faint); }

/* ---------- Services ---------- */
.services-section { background: var(--bg-3); color: #F1EDE6; padding: 110px clamp(20px,5vw,48px); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,235px),1fr)); gap: 18px; align-items: stretch; }
.service-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: 22px; padding: 34px 28px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
}
.service-card.featured {
  background: linear-gradient(160deg,#2b2b2b,#242017);
  border: 1px solid rgba(200,169,106,.55);
  box-shadow: 0 24px 60px -24px rgba(200,169,106,.3);
}
.service-flag {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 5px 12px;
}
.service-tag { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.service-title { font-family: 'Montserrat', sans-serif; font-size: 23px; font-weight: 600; margin-bottom: 14px; }
.service-text { font-size: 14px; line-height: 1.7; opacity: .75; margin-bottom: 28px; flex: 1; }
.service-price { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 600; margin-bottom: 20px; }
.service-price span { font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 400; opacity: .6; }
.service-btn {
  border: 1px solid rgba(255,255,255,.25); color: #F8F6F2;
  text-align: center; border-radius: 999px; padding: 13px;
  font-size: 14px; font-weight: 500; transition: all .3s;
}
.service-btn:hover { border-color: var(--gold); color: var(--gold); }
.service-btn.gold { background: var(--gold); color: var(--dark); border: none; }
.service-btn.gold:hover { background: var(--gold-light); color: var(--dark); }
.services-note { text-align: center; font-size: 13px; opacity: .5; margin-top: 28px; }

/* ---------- Process ---------- */
.process-section { padding: 110px clamp(20px,5vw,48px); }
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 28px; }
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--card); border: 1px solid rgba(200,169,106,.5);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 600;
  color: var(--gold); flex-shrink: 0;
}
.step-line { width: 1px; flex: 1; background: linear-gradient(rgba(200,169,106,.6),rgba(200,169,106,.15)); min-height: 34px; }
.step-body { padding-bottom: 38px; }
.step-title { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 600; margin: 12px 0 8px; }
.step-text { font-size: 14px; line-height: 1.7; color: var(--ink-faint); max-width: 520px; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-2); padding: 110px clamp(20px,5vw,48px); }
.faq-section .section-head { margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #221F1B; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.faq-q {
  all: unset; box-sizing: border-box; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 26px;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; color: var(--ink);
}
.faq-chev { color: var(--gold); transition: transform .35s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-body { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .45s cubic-bezier(.16,1,.3,1), opacity .35s; }
.faq-item.open .faq-body { max-height: 220px; opacity: 1; }
.faq-a { padding: 0 26px 22px; font-size: 14px; line-height: 1.75; color: var(--ink-faint); max-width: 600px; }

/* ---------- CTA ---------- */
.cta-section { padding: 110px clamp(20px,5vw,48px); }
.cta-card {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg,#1B1916 55%,#2E2718);
  border: 1px solid rgba(200,169,106,.25); border-radius: 32px;
  padding: clamp(36px,6vw,80px) clamp(24px,6vw,72px);
  color: #F8F6F2;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,340px),1fr));
  gap: 48px; align-items: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,.25), transparent 70%);
}
.cta-copy h2 { font-size: clamp(26px,3vw,38px); color: #F8F6F2; margin-bottom: 22px; }
.cta-copy p { font-size: 15px; line-height: 1.75; opacity: .7; margin: 0 0 32px; }
.btn-tg {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,169,106,.6); color: var(--gold);
  border-radius: 999px; padding: 14px 30px; font-size: 14px; font-weight: 500; transition: all .3s;
}
.btn-tg:hover { background: var(--gold-light); color: var(--dark); }

.cta-form {
  background: rgba(255,255,255,.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: 36px;
  display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1;
}
.cta-form input, .cta-form textarea {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 15px 18px; color: #F8F6F2;
  font-family: 'Inter', sans-serif; font-size: 14px; outline: none; resize: none;
  transition: border-color .3s;
}
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--gold); }
.cta-form ::placeholder { color: rgba(248,246,242,.45); }

.plan-select { position: relative; }
.plan-btn {
  all: unset; box-sizing: border-box; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  background: rgba(255,255,255,.07); border-radius: 12px; padding: 15px 18px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  border: 1px solid rgba(255,255,255,.12); transition: border-color .3s;
}
.plan-btn.open { border-color: var(--gold); }
.plan-btn.error { border-color: #d47a6a; }
.plan-label { color: rgba(248,246,242,.45); }
.plan-label.filled { color: #F8F6F2; }
.plan-chev { color: var(--gold); font-size: 13px; transition: transform .3s; }
.plan-btn.open .plan-chev { transform: rotate(180deg); }
.plan-menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20;
  background: #221F1B; border: 1px solid rgba(200,169,106,.35); border-radius: 14px;
  padding: 6px; box-shadow: 0 24px 48px -12px rgba(0,0,0,.6);
  display: flex; flex-direction: column; gap: 2px;
}
.plan-menu[hidden] { display: none; }
.plan-menu button {
  all: unset; box-sizing: border-box; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: 12px 14px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #F8F6F2; transition: all .2s;
}
.plan-menu button:hover { background: rgba(200,169,106,.12); color: var(--gold); }
.plan-menu button.selected { color: var(--gold); background: rgba(200,169,106,.1); }
.plan-price { font-size: 12px; opacity: .6; }

.submit-btn {
  all: unset; box-sizing: border-box; cursor: pointer; text-align: center;
  background: var(--gold); color: var(--dark); border-radius: 12px; padding: 16px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; transition: all .3s;
}
.submit-btn:hover { background: #d9bd85; }
.submit-btn:disabled { opacity: .6; cursor: default; }
.form-error { color: #d47a6a; font-size: 13px; line-height: 1.5; text-align: center; }

.cta-success {
  background: rgba(255,255,255,.06); border: 1px solid rgba(200,169,106,.35);
  border-radius: 22px; padding: 48px 36px; text-align: center; position: relative; z-index: 1;
}
.cta-success-star { font-size: 36px; color: var(--gold); margin-bottom: 16px; }
.cta-success-title { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.cta-success-text { font-size: 14px; opacity: .7; line-height: 1.7; }

.cta-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px,3vw,38px); font-weight: 800;
  text-transform: uppercase; line-height: 1.2;
  color: var(--gold); text-align: center;
  max-width: 1100px; margin: 80px auto 0;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(41,42,44,.97);
  opacity: 0; transition: opacity .35s;
  overflow: hidden;
}
.lightbox.visible { opacity: 1; }
.lightbox-track {
  display: flex; height: 100%;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.lightbox-slide {
  width: 100vw; height: 100%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 48px; cursor: zoom-out;
}
@media (max-width: 720px) { .lightbox-slide { padding: 24px; } }
.lightbox-slide img {
  max-width: 86%; max-height: 90%;
  border-radius: 20px; box-shadow: 0 40px 100px -30px rgba(31,31,31,.5);
  object-fit: contain; cursor: default;
}
.lb-btn {
  all: unset; box-sizing: border-box; cursor: pointer;
  position: absolute; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--dark); color: var(--gold);
  border: 1px solid rgba(200,169,106,.35); transition: all .3s;
}
.lb-btn:hover { background: var(--gold); color: var(--dark); }
.lb-close { top: 28px; right: 28px; width: 46px; height: 46px; font-size: 18px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 20px; }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 20px; }
.lb-counter {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: var(--gold); border-radius: 999px; padding: 8px 18px;
  border: 1px solid rgba(200,169,106,.35);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: .08em;
}

/* ---------- Footer ---------- */
.footer { background: var(--bg-3); color: #F1EDE6; padding: 56px clamp(20px,5vw,48px); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; }
.footer-social { display: flex; gap: 14px; }
.footer-copy { font-size: 13px; opacity: .45; }

/* Mobile-only elements — hidden on desktop */
.hero-bg { display: none; }
.gallery-strip-wrap { display: none; }
.btn-tg-form { display: none; }

/* ---------- Mobile (ported from "Roxet Landing Mobile.dc.html") ---------- */
@media (max-width: 768px) {
  /* Nav: logo + Telegram + CTA only */
  .nav { padding: 14px 20px; }
  .logo { font-size: 19px; }
  .nav-cta { padding: 10px 20px; font-size: 13px; font-weight: 600; }

  /* Hero: full-bleed photo with gradient, content pinned to bottom */
  .hero {
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; min-height: 92vh; max-width: none;
    padding: 120px 22px 34px; gap: 0;
  }
  .hero-bg { display: block; position: absolute; inset: 0; }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(19,18,16,.55) 0%, rgba(19,18,16,.15) 35%, rgba(19,18,16,.55) 62%, #131210 96%);
  }
  .hero-visual { display: none; }
  .hero-copy { position: relative; }
  .kicker { display: none; }
  .hero h1 { font-size: clamp(32px,9vw,44px); margin-bottom: 16px; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
  .lead { font-size: 15px; line-height: 1.65; color: #D8D2C6; margin-bottom: 24px; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-lg { text-align: center; padding: 16px; font-weight: 600; }
  .hero-actions .btn-outline { border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  .hero-stats {
    justify-content: space-between; gap: 12px; margin-top: 26px;
    border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 20px; font-weight: 800; }
  .stat-label { font-size: 11px; margin-top: 2px; }

  /* Sections: compact, left-aligned heads with a gold dash */
  .about, .benefits-section, .services-section, .process-section, .faq-section { padding: 64px 22px; }
  .cta-section { padding: 64px 22px 72px; }
  .section-head { text-align: left; margin-bottom: 28px; }
  h2 { font-size: 26px; }
  .eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; margin-bottom: 14px; }
  .eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

  /* About: text first, then swipeable gallery strip */
  .about-grid { gap: 36px; }
  .about-copy { order: 1; }
  .about-media { order: 2; }
  .carousel, .gallery-open, .about-tag { display: none; }
  .about-copy h2 { font-size: 28px; margin-bottom: 16px; }
  .about-copy p { font-size: 14px; margin-bottom: 22px; }
  .achievements { grid-template-columns: 1fr 1fr; gap: 10px; }
  .achievement { border-radius: 12px; padding: 12px 14px; font-size: 12px; line-height: 1.4; gap: 10px; }
  .diamond { font-size: 15px; }

  .gallery-strip-wrap { display: block; }
  .gallery-strip-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
  .gallery-strip-title { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; }
  .gallery-strip-hint { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .1em; color: var(--gold); }
  .gallery-strip {
    display: flex; gap: 12px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    margin: 0 -22px; padding: 0 22px 8px;
    scrollbar-width: none;
  }
  .gallery-strip::-webkit-scrollbar { display: none; }
  .gallery-strip img {
    width: 78vw; max-width: 340px; height: 420px;
    object-fit: cover; object-position: top;
    border-radius: 18px; flex-shrink: 0; scroll-snap-align: center;
  }

  /* Benefits: compact rows, icon left */
  .benefits-grid { display: flex; flex-direction: column; gap: 10px; }
  .benefit { display: grid; grid-template-columns: 40px 1fr; gap: 4px 14px; padding: 18px; border-radius: 16px; }
  .benefit:hover { transform: none; }
  .benefit-icon { grid-row: 1 / 3; width: 40px; height: 40px; border-radius: 12px; font-size: 17px; margin: 0; }
  .benefit-title { font-size: 15px; font-weight: 700; margin-bottom: 0; }
  .benefit-text { font-size: 13px; line-height: 1.6; }

  /* Services: stacked cards, title + price on one row */
  .services-grid { display: flex; flex-direction: column; gap: 14px; }
  .service-card {
    display: grid; border-radius: 18px; padding: 22px 20px;
    grid-template-columns: 1fr auto; grid-template-areas: "tag tag" "title price" "text text" "btn btn";
    column-gap: 12px;
  }
  .service-tag { grid-area: tag; font-family: 'JetBrains Mono', monospace; font-size: 10px; margin-bottom: 8px; }
  .service-title { grid-area: title; font-size: 19px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
  .service-price { grid-area: price; font-size: 19px; white-space: nowrap; margin-bottom: 0; align-self: baseline; }
  .service-price span { font-size: 11px; }
  .service-text { grid-area: text; font-size: 13px; margin-bottom: 16px; }
  .service-btn { grid-area: btn; min-height: 44px; box-sizing: border-box; }
  .service-flag { top: 16px; right: 16px; font-size: 10px; padding: 5px 11px; }

  /* Process: tighter rail */
  .step { grid-template-columns: 48px 1fr; gap: 18px; }
  .step-num { width: 44px; height: 44px; font-size: 15px; font-weight: 700; }
  .step-line { min-height: 26px; }
  .step-body { padding-bottom: 26px; }
  .step-title { font-size: 16px; font-weight: 700; margin: 10px 0 6px; }
  .step-text { font-size: 13px; }

  /* FAQ */
  .faq-item { border-radius: 14px; }
  .faq-q { font-size: 14px; padding: 17px 18px; min-height: 44px; }
  .faq-item.open .faq-body { max-height: 320px; }
  .faq-a { padding: 0 18px 17px; font-size: 13px; }

  /* CTA: single card, Telegram button inside the form */
  .cta-card { border-radius: 24px; padding: 32px 24px; gap: 22px; }
  .cta-copy h2 { font-size: 24px; margin-bottom: 14px; }
  .cta-copy p { font-size: 13px; margin-bottom: 0; }
  .cta-copy .btn-tg { display: none; }
  .cta-form { background: none; border: none; padding: 0; gap: 11px; backdrop-filter: none; }
  .btn-tg-form {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    border: 1px solid rgba(200,169,106,.6); color: var(--gold);
    border-radius: 12px; padding: 14px; font-size: 14px; font-weight: 500;
    min-height: 44px; box-sizing: border-box; transition: all .3s;
  }
  .btn-tg-form:hover { background: var(--gold-light); color: var(--dark); }
  .cta-success { border-radius: 18px; padding: 36px 24px; }

  /* Footer: centered column */
  .footer { padding: 36px 22px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 18px; }
  .footer-logo { font-size: 18px; font-weight: 900; }
  .icon-btn.lg { width: 44px; height: 44px; }
  .footer-copy { font-size: 12px; }
}
