/* ==========================================================================
   CIMPEX — Global Sourcing (Dark Cinematic Version)
   Palette: deep navy · china red · champagne gold · ivory
   Type: Playfair Display (serif display) + Inter (sans)
   ========================================================================== */

:root {
  --navy-950: #050D1A;
  --navy-900: #0A1526;
  --navy-800: #16233F;
  --navy-700: #1E2E4E;
  --red:      #E4162B;
  --red-dark: #C0122A;
  --gold:     #D6B77A;
  --gold-dim: #b9995c;
  --ivory:    #F4EFE1;
  --ivory-2:  #FAF7F0;
  --paper:    #FBF9F4;
  --ink:      #14161c;

  --line-dark:  rgba(214,183,122,.18);
  --line-light: rgba(20,22,28,.12);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--navy-950);
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
em { font-style: italic; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ------------------------------ Typography ------------------------------ */
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.h2 em { color: var(--gold); font-weight: 500; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.eyebrow--gold { color: var(--gold); }

.kicker {
  font-size: .78rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.lead { font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.7; }

.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__sub { margin-top: 1.1rem; color: rgba(244,239,225,.62); max-width: 46ch; }
.section-head--center .section-head__sub { margin-inline: auto; }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  padding: 1rem 1.9rem;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .5s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(244,239,225,.4); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy-950); }
.btn--gold:hover { background: #e4c793; transform: translateY(-2px); }
.btn--block { width: 100%; padding-block: 1.15rem; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-950);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; place-items: center; gap: 1.6rem; }
.preloader__logo { width: 120px; opacity: .96; animation: floaty 2.4s ease-in-out infinite; }
.preloader__bar { width: 140px; height: 2px; background: rgba(214,183,122,.2); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 40%; background: var(--gold); animation: load 1.1s var(--ease) infinite; }
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: 1400px; margin-inline: auto;
  padding: clamp(14px, 2vw, 22px) var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav.is-solid {
  background: rgba(5,13,26,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-dark);
}
.nav.is-solid .nav__inner { padding-block: 12px; }

.nav__logo { height: 40px; width: auto; transition: height .5s var(--ease); filter: drop-shadow(0 2px 12px rgba(0,0,0,.35)); }
.nav.is-solid .nav__logo { height: 34px; }

.nav__links { display: flex; gap: clamp(1.1rem, 2vw, 2.1rem); }
.nav__links a {
  font-size: .82rem; letter-spacing: .04em; font-weight: 500;
  color: rgba(244,239,225,.82);
  position: relative; padding-block: 4px;
  transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1.2rem; }
.lang { display: flex; align-items: center; gap: .4rem; font-size: .74rem; letter-spacing: .1em; }
.lang__btn { color: rgba(244,239,225,.45); font-weight: 600; letter-spacing: .1em; padding: .3rem .15rem; transition: color .3s; }
.lang__btn:hover { color: var(--ivory); }
.lang__btn.is-active { color: var(--gold); }
.lang__sep { color: rgba(244,239,225,.25); }
.nav__cta { padding: .7rem 1.3rem; font-size: .74rem; }

.nav__burger { display: none; width: 34px; height: 34px; position: relative; }
.nav__burger span {
  position: absolute; left: 6px; right: 6px; height: 1.6px; background: var(--ivory);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ==========================================================================
   01 · HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,13,26,.55) 0%, rgba(5,13,26,.15) 32%, rgba(5,13,26,.55) 68%, rgba(5,13,26,.96) 100%),
    linear-gradient(90deg, rgba(5,13,26,.7) 0%, rgba(5,13,26,.1) 55%);
}
.hero__content {
  position: relative; z-index: 2;
  padding-bottom: clamp(5rem, 11vh, 9rem);
  padding-top: 8rem;
  max-width: 1040px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 1.5rem 0 1.8rem;
}
.hero__title em { color: var(--gold); }
.anim-line { display: block; overflow: hidden; }
.anim-line > span { display: block; }

.hero__sub { max-width: 40ch; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(244,239,225,.86); }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin: 2rem 0 2.4rem;
}
.hero__chips li {
  font-size: .8rem; letter-spacing: .02em;
  padding: .55rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  background: rgba(5,13,26,.3);
  backdrop-filter: blur(6px);
  color: rgba(244,239,225,.8);
}
.hero__chips strong { color: var(--gold); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(2rem, 5vh, 3rem); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,239,225,.6);
}
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:0; left:0; width:100%; height:40%; background: var(--gold); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(260%);} }

/* ==========================================================================
   02 · STATS
   ========================================================================== */
.stats {
  background: var(--navy-900);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: calc(-1 * clamp(.75rem, 2vw, 1.5rem)); top: 12%; bottom: 12%;
  width: 1px; background: var(--line-dark);
}
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--gold); line-height: 1; font-weight: 500; }
.stat__label { margin-top: .7rem; font-size: .82rem; letter-spacing: .02em; color: rgba(244,239,225,.62); }

/* ==========================================================================
   03 · ABOUT
   ========================================================================== */
.about { padding-block: clamp(5rem, 11vw, 9rem); background: var(--navy-950); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__text p { color: rgba(244,239,225,.72); margin-bottom: 1.2rem; }
.about__text .lead { color: var(--ivory); }
.about__text .h2 { margin-bottom: 1.8rem; }

.mission {
  margin-top: 2.4rem; padding: 1.8rem 2rem;
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, rgba(228,22,43,.06), transparent);
}
.mission__mark { display: block; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.mission p { font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.5; color: var(--ivory); font-style: italic; margin: 0; }

.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; }
.about__badge {
  position: absolute; bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 1rem; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(5,13,26,.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line-dark);
}
.about__badge span:nth-child(2) { color: var(--red); font-size: 1.1rem; }
.about__badge span:not(:nth-child(2)) { color: var(--gold); }

/* ==========================================================================
   04 · WHY
   ========================================================================== */
.why { padding-block: clamp(5rem, 11vw, 9rem); background: var(--navy-900); }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.why__card {
  background: var(--navy-900); padding: clamp(2rem, 3.5vw, 3.2rem);
  transition: background .5s var(--ease);
}
.why__card:hover { background: var(--navy-800); }
.why__no { font-family: var(--serif); font-size: 1.4rem; color: var(--red); display: block; margin-bottom: 1.4rem; }
.why__card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.25rem, 2vw, 1.65rem); margin-bottom: .9rem; }
.why__card p { color: rgba(244,239,225,.66); font-size: .96rem; }

/* ==========================================================================
   05 · PROCESS
   ========================================================================== */
.process { padding-block: clamp(5rem, 11vw, 9rem); background: var(--navy-950); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.step { background: var(--navy-950); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; gap: 1.2rem; align-items: flex-start; transition: background .5s var(--ease); }
.step:hover { background: var(--navy-900); }
.step__no { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); line-height: 1; flex-shrink: 0; }
.step__body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.28rem; margin-bottom: .5rem; }
.step__body p { color: rgba(244,239,225,.62); font-size: .92rem; }

/* ==========================================================================
   06 · PRODUCTS
   ========================================================================== */
.products { padding-block: clamp(5rem, 11vw, 9rem); background: var(--ivory-2); color: var(--ink); }
.products .eyebrow { color: var(--red-dark); }
.products .h2 em { color: var(--red-dark); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }

.pcard {
  position: relative; overflow: hidden; border-radius: 3px;
  background: #fff; box-shadow: 0 1px 0 rgba(20,22,28,.06);
  display: flex; flex-direction: column;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -24px rgba(20,22,28,.32); }
.pcard__media { overflow: hidden; aspect-ratio: 3/2; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.07); }
.pcard__body { padding: 1.5rem 1.6rem 1.8rem; }
.pcard__body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.32rem; margin-bottom: .5rem; color: var(--navy-800); }
.pcard__body p { font-size: .92rem; color: rgba(20,22,28,.62); }

.pcard--custom { background: var(--navy-900); color: var(--ivory); justify-content: center; min-height: 100%; }
.pcard--custom .pcard__body { padding: clamp(2rem,3vw,2.6rem); }
.pcard--custom h3 { color: var(--ivory); }
.pcard--custom p { color: rgba(244,239,225,.66); }
.pcard__plus { display: block; font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: .6rem; }
.pcard__link { display: inline-block; margin-top: 1.2rem; color: var(--gold); font-size: .82rem; letter-spacing: .06em; font-weight: 600; transition: gap .3s; }
.pcard--custom:hover .pcard__link { color: #e4c793; }

/* ==========================================================================
   07 · REFERENCES
   ========================================================================== */
.refs { padding-block: clamp(5rem, 11vw, 9rem); background: var(--navy-900); }
.brandwall {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.8rem, 6vw, 5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  margin-bottom: 2rem;
}
.brandwall span {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 500;
  letter-spacing: .04em; color: rgba(244,239,225,.5);
  transition: color .4s var(--ease);
}
.brandwall span:hover { color: var(--gold); }
.refs__landmark { text-align: center; color: rgba(244,239,225,.62); font-size: .98rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.refs__landmark strong { color: var(--ivory); font-weight: 500; }

.refs__cases { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(1rem, 2vw, 1.6rem); }
.case { position: relative; overflow: hidden; border-radius: 3px; }
.case img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.case:hover img { transform: scale(1.06); }
.case--tall img { aspect-ratio: 3/4; }
.case--wide img { aspect-ratio: 3/2.55; }
.case figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem;
  display: flex; flex-direction: column; gap: .2rem;
  background: linear-gradient(0deg, rgba(5,13,26,.82), transparent);
}
.case__tag { font-family: var(--serif); font-size: 1.35rem; }
.case__loc { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* ==========================================================================
   08 · CHINA VISIT
   ========================================================================== */
.visit {
  position: relative; padding-block: clamp(6rem, 13vw, 11rem);
  background:
    linear-gradient(rgba(5,13,26,.9), rgba(5,13,26,.9)),
    url("../assets/hero-bg.jpg") center/cover fixed;
  text-align: center;
}
.visit__inner { max-width: 820px; }
.visit__quote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.28;
  margin: 1.4rem 0 1.8rem;
}
.visit__quote em { color: var(--gold); }
.visit__body { color: rgba(244,239,225,.76); max-width: 60ch; margin: 0 auto 2.4rem; }

/* ==========================================================================
   09 · FAQ
   ========================================================================== */
.faq { padding-block: clamp(5rem, 11vw, 9rem); background: var(--navy-950); }
.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.faq__note { margin-top: 1.4rem; color: rgba(244,239,225,.66); }
.faq__note strong { color: var(--gold); font-weight: 600; }
.qa { border-bottom: 1px solid var(--line-dark); }
.qa summary {
  list-style: none; cursor: pointer;
  padding: 1.35rem 0; padding-right: 2.5rem; position: relative;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500;
  transition: color .3s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; color: var(--gold); transition: transform .4s var(--ease);
}
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa summary:hover { color: var(--gold); }
.qa p { padding: 0 0 1.5rem; color: rgba(244,239,225,.66); max-width: 60ch; }

/* ==========================================================================
   10 · CONTACT
   ========================================================================== */
.contact { padding-block: clamp(5rem, 11vw, 9rem); background: var(--navy-900); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.contact__intro .h2 { margin-bottom: 1.4rem; }
.contact__intro .h2 em { color: var(--gold); }
.contact__meta { margin-top: 2.4rem; display: grid; gap: 1rem; }
.contact__meta li { display: flex; align-items: baseline; gap: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-dark); }
.contact__meta span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); min-width: 100px; flex-shrink: 0; }
.contact__meta a { color: var(--ivory); transition: color .3s; }
.contact__meta a:hover { color: var(--gold); }
.contact__plain { font-style: normal; color: rgba(244,239,225,.78); }

.form { background: var(--navy-950); border: 1px solid var(--line-dark); padding: clamp(1.6rem, 3vw, 2.6rem); border-radius: 3px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,239,225,.62); }
.field input, .field select, .field textarea {
  background: var(--navy-900); border: 1px solid var(--line-dark); border-radius: 2px;
  padding: .85rem 1rem; color: var(--ivory); transition: border-color .3s, background .3s;
  font-size: .95rem;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,239,225,.32); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--navy-800); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--navy-900); }

.field--check { flex-direction: row; align-items: center; gap: .8rem; }
.field--check input { width: 18px; height: 18px; accent-color: var(--red); flex-shrink: 0; }
.field--check span { text-transform: none; letter-spacing: 0; font-size: .9rem; color: rgba(244,239,225,.78); }

.form__file-note { font-size: .82rem; color: rgba(244,239,225,.5); margin: .4rem 0 1.4rem; }
.form__status { margin-top: 1rem; font-size: .9rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--gold); }
.form__status.is-err { color: var(--red); }

/* ==========================================================================
   11 · FOOTER
   ========================================================================== */
.footer { background: var(--navy-950); border-top: 1px solid var(--line-dark); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3rem; }
.footer__logo { height: 46px; width: auto; margin-bottom: 1.2rem; }
.footer__tag { font-family: var(--serif); font-style: italic; color: rgba(244,239,225,.6); font-size: 1.05rem; line-height: 1.5; }
.footer__col h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col p { color: rgba(244,239,225,.66); font-size: .92rem; margin-bottom: .55rem; }
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--gold); }
.footer__muted { color: rgba(244,239,225,.38) !important; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.8rem; border-top: 1px solid var(--line-dark);
  font-size: .8rem; letter-spacing: .04em; color: rgba(244,239,225,.42);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 36px -8px rgba(37,211,102,.75); }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.hero .anim { opacity: 0; transform: translateY(28px); }
.hero .anim-line > span { transform: translateY(105%); }
.hero--static .anim { opacity: 1; transform: none; }
.hero--static .anim-line > span { transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    padding: 2rem clamp(2rem, 6vw, 3rem);
    background: rgba(5,13,26,.97); backdrop-filter: blur(16px);
    border-left: 1px solid var(--line-dark);
    transform: translateX(100%); transition: transform .55s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links a { font-size: 1.1rem; }
  .nav__burger { display: block; }
  .nav__cta { display: none; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .stat:nth-child(2)::after { display: none; }
  .why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .products__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .refs__cases { grid-template-columns: 1fr; }
  .case--tall img { aspect-ratio: 3/2.4; }
  .form__row { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 6rem; }
  .stats__grid { gap: 2rem 1rem; }
  .stat::after { display: none !important; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .visit { background-attachment: scroll; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .hero .anim { opacity: 1 !important; transform: none !important; }
  .hero .anim-line > span { transform: none !important; }
  .hero__img { transform: none !important; }
  .visit { background-attachment: scroll; }
}
