:root {
  /* Core palette: white, black, gold, beige (sparing) */
  --white: #ffffff;
  --off-white: #faf8f4;
  --paper: #f4efe6;          /* very subtle warm panel */
  --black: #0a0a0a;
  --ink: #111111;             /* solid font black */
  --ink-soft: rgba(17, 17, 17, 0.62);
  --ink-mute: rgba(17, 17, 17, 0.45);
  --line: rgba(17, 17, 17, 0.10);
  --line-soft: rgba(17, 17, 17, 0.06);

  --beige: #c9a87c;           /* bright warm beige */
  --beige-deep: #9a7a4e;      /* darker brown-beige for text accent */
  --gold: #b8945a;            /* matched to logo bronze */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(42px, 7vw, 92px); }
h2 { font-size: clamp(32px, 5vw, 60px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

em { font-style: italic; color: var(--beige-deep); font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--beige-deep);
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--beige-deep);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-soft);
}
.nav-left { justify-self: start; }
.nav-right { justify-self: end; }
.logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav.scrolled .logo { opacity: 1; }
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-cta {
  border: 1px solid var(--white);
  color: var(--white);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.nav.scrolled .nav-cta {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--white); }
.nav-spacer-mobile { display: none; }

/* ============ HERO — Variant A (Dior Classic) ============ */
.hero {
  background: var(--white);
  color: var(--ink);
  padding: 0;
  position: relative;
}
.hero-photo {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.22) 22%, rgba(0,0,0,0.0) 45%, rgba(0,0,0,0.0) 62%, rgba(0,0,0,0.62) 100%),
    url('https://static.tildacdn.com/tild3139-6233-4538-a235-363864353536/hero.jpg');
  background-size: cover;
  background-position: center 35%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(70px, 9vh, 100px) var(--gutter) clamp(50px, 7vh, 80px);
}
.hero-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}
.hero-mark::before,
.hero-mark::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 14vw, 180px);
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.hero-mark::before { top: -22px; }
.hero-mark::after { bottom: -22px; }
.hero-mark img {
  height: clamp(70px, 9vw, 108px);
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 24px rgba(0,0,0,0.55));
  opacity: 1;
}
.hero-mark-tag {
  font-family: var(--font-body);
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.55em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  font-weight: 500;
  padding-left: 0.55em; /* compensate letter-spacing visual centering */
}
.hero-overlay {
  text-align: center;
  max-width: 860px;
  width: 100%;
}
.hero-discover {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 8px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}
.hero-discover:hover {
  border-color: var(--beige);
  color: var(--beige);
}

/* Hero content section BELOW photo */
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(70px, 9vw, 120px) var(--gutter) clamp(70px, 9vw, 110px);
}
.hero .eyebrow {
  justify-content: center;
}
.hero .eyebrow::before { display: none; }
.hero h2.hero-tagline {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 28px;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Solid black + outline buttons */
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  padding: 18px 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
  background: var(--beige-deep);
  border-color: var(--beige-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(154, 122, 78, 0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 18px 38px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

/* ============ PROOF STRIP ============ */
.proof-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.proof-item { text-align: center; position: relative; }
.proof-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--line);
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-num em { font-style: italic; font-weight: 300; color: var(--beige-deep); }
.proof-label {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ ABOUT ============ */
.about {
  background: var(--white);
  color: var(--ink);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  background: url('https://static.tildacdn.com/tild3835-6236-4461-b061-346136313363/about.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 2;
}
.about-logo-wm {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 3;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
  opacity: 0.95;
}

.about h2 { margin-bottom: 32px; }
.about p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.75;
  max-width: 580px;
}
.about-features {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  max-width: 580px;
}
.about-features li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.about-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--beige-deep);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--beige-deep);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ PRODUCTS ============ */
.products { background: var(--white); border-top: 1px solid var(--line-soft); }
.products-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.products-head .eyebrow { justify-content: center; }
.products-head .eyebrow::before { display: none; }
.products-head h2 { margin-bottom: 24px; }
.products-head p { color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 17px); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 40px) clamp(16px, 1.5vw, 24px);
}
.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.product-meta {
  padding-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-num {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--beige-deep);
  letter-spacing: 0.2em;
  font-style: italic;
}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0;
}

/* ============ BENEFITS ============ */
.benefits {
  background: var(--white);
  color: var(--ink);
}
.benefits-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.benefits-intro {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
}
.benefit-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  gap: 30px;
  align-items: start;
  transition: padding 0.3s ease;
}
.benefit-item:first-child { border-top: 1px solid var(--line); }
.benefit-item:hover { padding-left: 16px; }
.benefit-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--beige-deep);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
}
.benefit-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 12px;
}
.benefit-content p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

/* ============ SUPPORT ============ */
.support {
  background: var(--white);
  position: relative;
}
.support-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.support-head .eyebrow { justify-content: center; }
.support-head .eyebrow::before { display: none; }
.support-head h2 { margin-bottom: 20px; }
.support-head p { color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 17px); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.support-card {
  background: var(--white);
  padding: clamp(40px, 4vw, 60px);
  transition: background 0.3s ease;
}
.support-card:hover { background: #fafafa; }
.support-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--beige-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--beige-deep);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}
.support-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 14px;
}
.support-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ PROCESS (How it works) ============ */
.process {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line-soft);
}
.process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.process-head .eyebrow { justify-content: center; }
.process-head .eyebrow::before { display: none; }
.process-head h2 { margin-bottom: 20px; }
.process-head p { color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 17px); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 122, 78, 0.35) 15%, rgba(154, 122, 78, 0.35) 85%, transparent);
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--beige-deep);
  color: var(--beige-deep);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 28px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 12px;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ============ FAQ ============ */
.faq { background: var(--white); color: var(--ink); }
.faq-head { text-align: center; margin-bottom: 60px; }
.faq-head .eyebrow { justify-content: center; }
.faq-head .eyebrow::before { display: none; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 32px 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 26px);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--beige-deep); }
.faq-toggle {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--beige-deep);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 32px; }
.faq-a p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

/* ============ FORM ============ */
.form-section { background: var(--white); border-top: 1px solid var(--line-soft); }
.form-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.form-head .eyebrow { justify-content: center; }
.form-head .eyebrow::before { display: none; }
.form-head h2 { margin-bottom: 24px; }
.form-head p { color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.7; }
.form-alt {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  flex-wrap: wrap;
  justify-content: center;
}
.form-alt-text {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1fa855;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.wa-link:hover { color: #168a45; }
.wa-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.partner-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--line);
  position: relative;
}
.partner-form::before, .partner-form::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--beige-deep);
}
.partner-form::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.partner-form::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 11px;
  color: var(--beige-deep);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-weight: 600;
}
.form-field input,
.form-field select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--ink); }
.form-field input::placeholder { color: var(--ink-mute); }
.form-submit { width: 100%; margin-top: 12px; justify-content: center; }
.form-note { text-align: center; margin-top: 22px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em; }

.thank-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 60px);
  background: var(--white);
  border: 1px solid var(--line);
}
.thank-block .eyebrow { justify-content: center; }
.thank-block .eyebrow::before { display: none; }
.thank-block h2 { margin-bottom: 24px; }
.thank-block p { color: var(--ink-soft); margin-bottom: 28px; }

/* ============ FOOTER ============ */
.footer { background: var(--white); padding: 80px 0 40px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}
.footer-brand {
  margin-bottom: 16px;
  line-height: 0;
}
.footer-brand img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-tagline {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 340px;
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--beige-deep);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer a {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer a:hover { color: var(--beige-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a.footer-credit {
  display: inline;
  margin: 0;
  font-size: 12px;
  color: var(--beige-deep);
  transition: color 0.3s ease;
}
.footer-bottom a.footer-credit:hover { color: var(--ink); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-photo { height: clamp(360px, 60vh, 560px); margin-top: 70px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .proof-item:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual {
    aspect-ratio: 2/3;
    max-height: none;
    width: 100%;
  }
  .about-features { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .support-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav { padding: 12px var(--gutter); grid-template-columns: auto 1fr auto; }
  .logo img { height: 32px; }
  .nav-left { display: none; }
  .nav-spacer-mobile { display: block; width: 1px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
  .hero-photo { height: clamp(320px, 55vh, 460px); margin-top: 60px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 16px 28px; }
  .proof-item:not(:last-child)::after { display: none; }
  .about-stats { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .about-features { grid-template-columns: 1fr; }
  .about-logo-wm { width: 110px; bottom: 24px; right: 24px; }
  .benefit-item { grid-template-columns: 60px 1fr; gap: 18px; padding: 32px 0; }
  .benefit-item:hover { padding-left: 8px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-alt { flex-direction: column; gap: 10px; padding: 16px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 18px 10px; }
  .product-meta { padding-top: 10px; gap: 4px; }
  .product-num { font-size: 10px; letter-spacing: 0.15em; }
  .product-name { font-size: 13px; line-height: 1.2; }
  section { padding: 70px 0; }
}

/* ============ ПЕРЕБИВКА ОРАНЖЕВЫХ ССЫЛОК ТИЛЬДЫ ============ */
/* Тильда по умолчанию красит все  в оранжевый. Возвращаем свои цвета. */

.nav-cta,
.nav-cta:link,
.nav-cta:visited { color: var(--white) !important; }
.nav.scrolled .nav-cta,
.nav.scrolled .nav-cta:link,
.nav.scrolled .nav-cta:visited { color: var(--ink) !important; }
.nav-cta:hover { color: var(--ink) !important; }
.nav.scrolled .nav-cta:hover { color: var(--white) !important; }

.logo,
.logo:link,
.logo:visited,
.logo:hover { color: inherit !important; }

.btn-primary,
.btn-primary:link,
.btn-primary:visited { color: var(--white) !important; }
.btn-primary:hover { color: var(--white) !important; }

.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited { color: var(--ink) !important; }
.btn-secondary:hover { color: var(--white) !important; }

.hero-discover,
.hero-discover:link,
.hero-discover:visited { color: var(--white) !important; }
.hero-discover:hover { color: var(--beige) !important; }

.product-card,
.product-card:link,
.product-card:visited,
.product-card:hover { color: inherit !important; }

.wa-link,
.wa-link:link,
.wa-link:visited { color: #25D366 !important; }
.wa-link:hover { color: #168a45 !important; }

.footer a,
.footer a:link,
.footer a:visited { color: var(--ink-soft) !important; }
.footer a:hover { color: var(--beige-deep) !important; }

.footer-bottom a.footer-credit,
.footer-bottom a.footer-credit:link,
.footer-bottom a.footer-credit:visited { color: var(--beige-deep) !important; }
.footer-bottom a.footer-credit:hover { color: var(--ink) !important; }

/* Тильда любит добавлять подчёркивания через text-decoration — убираем */
.nav-cta, .btn-primary, .btn-secondary, .hero-discover,
.product-card, .wa-link, .footer a, .footer-credit, .logo {
  text-decoration: none !important;
}
/* На текстовых ссылках в футере Тильда может пририсовать border-bottom — снимаем только там */
.footer a, .footer-credit {
  border-bottom: none !important;
}

/* ============ ПЕРВЫЙ БЛОК БЕЗ ОТСТУПА СВЕРХУ ============ */
.hero { margin-top: 0 !important; padding-top: 0 !important; }
