/* ==========================================================================
   Nano Apart Landing — design system
   Inspired by Pody (Webflow) — bold typography, rounded geometry, conversion focus
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #1B3448;
  --navy-2:      #122636;
  --navy-3:      #0a1822;
  --gold:        #c9a468;
  --gold-2:      #b48d4e;
  --gold-soft:   #f5ecd9;

  /* Surfaces */
  --bg:          #ffffff;
  --bg-warm:     #faf7f2;
  --bg-soft:     #f4f6f9;
  --bg-card:     #ffffff;

  /* Text */
  --text:        #0f1d29;
  --text-muted:  #5a6775;
  --text-soft:   #7a8693;

  /* Lines */
  --border:      #e6e9ee;
  --border-strong: #d3d8e0;

  /* Effects */
  --radius-sm:   12px;
  --radius:      18px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --shadow-xs:   0 1px 2px rgba(15,29,41,.04);
  --shadow-sm:   0 4px 14px rgba(15,29,41,.06);
  --shadow:      0 12px 36px rgba(15,29,41,.08);
  --shadow-lg:   0 24px 64px rgba(15,29,41,.16);

  /* Type */
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ====================  Reset / base  ==================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-2); }
button { font: inherit; }
::selection { background: var(--gold); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ====================  Typography  ==================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 600; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: -0.025em; }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
h4 { font-family: var(--font-sans); font-weight: 600; font-size: .95rem; }
em { font-style: italic; color: var(--gold-2); font-weight: 600; }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ====================  Pills / eyebrows  ==================== */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  background: var(--navy);
  color: #fff;
  margin-bottom: 22px;
}
.pill-light  { background: var(--bg-warm); color: var(--navy); border: 1px solid var(--border); }
.pill-on-dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,164,104,.25); }

/* ====================  Buttons  ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.btn-sm  { padding: 9px 16px; font-size: 14px; }
.btn-lg  { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-2); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ====================  Header  ==================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,.94);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 24px; }
.brand img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 15px; position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--gold); border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; left: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-drawer a { padding: 14px 8px; border-bottom: 1px solid var(--border); font-weight: 500; color: var(--text); }
.mobile-drawer a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-drawer .btn { padding: 14px 22px; }

/* ====================  HERO  ==================== */
.hero {
  position: relative;
  padding: 56px 0 24px;
  background:
    radial-gradient(900px 400px at 100% -10%, rgba(201,164,104,.16), transparent 60%),
    radial-gradient(700px 350px at -10% 100%, rgba(27,52,72,.05), transparent 60%),
    var(--bg-warm);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 32px 24px 48px;
}
.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  margin: 0 0 22px;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 600;
  position: relative;
}
.hero-lead { font-size: 1.18rem; color: var(--text-muted); max-width: 56ch; line-height: 1.65; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 28px; }

.hero-trust {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}
.trust-stars { display: inline-flex; gap: 2px; }
.trust-text { font-size: 14px; color: var(--text-muted); }
.trust-text strong { color: var(--text); font-weight: 700; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.6;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-blob {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--gold-2));
  filter: blur(60px);
  opacity: .7;
  bottom: -40px; left: -40px;
  z-index: -1;
}
.hero-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(10px);
}
.hero-badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-badge-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-soft);
  font-weight: 600;
}
.trust-strip-items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-strip-items img { height: 26px; width: auto; opacity: .8; filter: invert(15%) sepia(28%) saturate(749%) hue-rotate(167deg) brightness(96%) contrast(91%); }
.trust-divider { width: 1px; height: 24px; background: var(--border); }
.trust-item { font-size: 14px; color: var(--text-muted); }
.trust-item strong { color: var(--navy); font-weight: 700; font-size: 15px; }

/* ====================  Sections  ==================== */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--text-muted); margin: 0; }
.split-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  text-align: left; max-width: 100%;
  align-items: end;
}
.split-head .section-sub { padding-bottom: 8px; }

.section-soft { background: var(--bg-warm); }
.section-dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 80% 0%, rgba(201,164,104,.18), transparent 60%);
  pointer-events: none;
}
.section-dark h2 { color: #fff; }

/* ====================  Cards (oferta)  ==================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold-2);
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); margin: 0 0 22px; flex-grow: 1; }
.card-link {
  font-weight: 600; font-size: 14px; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link span { transition: transform .25s ease; display: inline-block; }
.card-link:hover { color: var(--gold-2); }
.card-link:hover span { transform: translateX(4px); }

/* ====================  Projects  ==================== */
.projects {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.project {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-lg { grid-row: span 2; }
.project-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.project-lg .project-img { aspect-ratio: 4/5; }
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.project:hover .project-img img { transform: scale(1.05); }
.project-meta { padding: 24px 24px 26px; }
.project-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 6px;
}
.project h3 { margin: 0 0 16px; font-size: 1.3rem; }
.project-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.project-stats > div { display: flex; flex-direction: column; }
.project-stats span { font-size: 12px; color: var(--text-soft); margin-bottom: 2px; }
.project-stats strong { font-size: 14px; color: var(--navy); font-weight: 700; }

/* ====================  Stats  ==================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.4; }

/* ====================  Steps  ==================== */
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
  z-index: 0;
}
.steps li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  transition: transform .25s ease, box-shadow .3s ease;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px var(--bg-warm);
}
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--text-muted); margin: 0; }

/* ====================  Testimonials  ==================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.testimonial blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  flex-grow: 1;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold-2));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.t-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.t-role { font-size: 13px; color: var(--text-soft); }

/* ====================  FAQ  ==================== */
.faq-wrap { max-width: 880px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] { border-color: var(--navy); box-shadow: var(--shadow-xs); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 28px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 24px; top: 50%;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-warm);
  transform: translateY(-50%);
  transition: background .2s ease;
}
.faq-item summary::before {
  content: '+';
  position: absolute;
  right: 32px; top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  font-family: var(--font-sans);
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] summary::before { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary::after { background: var(--gold-soft); }
.faq-body { padding: 0 28px 24px; color: var(--text-muted); }
.faq-body p { margin: 0; }

/* ====================  CTA section  ==================== */
.section-cta {
  padding: 96px 0;
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(201,164,104,.22), transparent 60%),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-copy h2 { color: #fff; margin: 0 0 18px; }
.cta-copy h2 em { color: var(--gold); }
.cta-copy p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 50ch; }

.contact-info {
  display: flex; flex-direction: column; gap: 12px; margin-top: 32px;
}
.contact-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: #fff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-link:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  transform: translateY(-2px);
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201,164,104,.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); display: block; }
.ci-value { font-size: 16px; font-weight: 600; display: block; margin-top: 2px; }

/* CTA Form */
.cta-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
}
.form-title { font-size: 1.4rem; margin: 0 0 8px; }
.field { display: grid; gap: 8px; }
.field-label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: .01em; }
.field input,
.cta-form input[type="text"],
.cta-form input[type="tel"],
.cta-form input[type="email"] {
  font: inherit;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.cta-form input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,52,72,.12);
}
.checkbox {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  font-size: 13px; color: var(--text-muted); font-weight: 400;
  padding: 4px 0;
}
.checkbox input { margin-top: 3px; accent-color: var(--navy); }
.form-note { font-size: 12px; color: var(--text-soft); margin: 0; text-align: center; }
.form-note a { color: var(--navy); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 500; text-align: center; }
.form-status-ok  { background: #e8f5ec; color: #1a6b34; border: 1px solid #b9e1c4; }
.form-status-err { background: #fdecec; color: #8a1f1f; border: 1px solid #f3c2c2; }

/* ====================  Footer  ==================== */
.site-footer {
  background: var(--navy-3);
  color: rgba(255,255,255,.72);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 44px; width: auto; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer-addr { font-size: 14px; line-height: 1.7; margin-top: 22px; color: rgba(255,255,255,.65); }
.site-footer h4 {
  color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 16px; font-family: var(--font-sans);
}
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--gold); }
.footer-col p { font-size: 14px; line-height: 2; margin: 0; }
.footer-bottom {
  padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom small { color: rgba(255,255,255,.48); font-size: 12px; }

/* ====================  Reveal animations  ==================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ====================  Responsive  ==================== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .projects { grid-template-columns: 1fr 1fr; }
  .project-lg { grid-row: span 1; }
  .project-lg .project-img { aspect-ratio: 4/3; }
  .split-head { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 32px 0 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 16px 0 32px; }
  .hero-visual { order: -1; }
  .hero-image { aspect-ratio: 4/3; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 18px; padding: 22px; }
  .trust-strip-items { gap: 16px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .cards, .testimonials, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .projects { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .section-cta { padding: 64px 0; }
  .cta-box { grid-template-columns: 1fr; gap: 40px; }
  .cta-form { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 16px; bottom: 16px; padding: 14px 18px; }
  .hero-badge-num { font-size: 2rem; }
}

/* Drawer open state */
body.drawer-open { overflow: hidden; }
body.drawer-open .mobile-drawer { display: flex; }

/* ====================  Floating CTA + Popup  ==================== */
.fab {
  position: fixed;
  right: 22px; bottom: 40vh;
  z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 16px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15,29,41,.28), 0 0 0 0 rgba(201,164,104,.6);
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab:hover { background: var(--gold-2); transform: translateY(-3px); animation-play-state: paused; }
.fab svg { color: var(--gold); transition: color .2s ease; }
.fab:hover svg { color: #fff; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(15,29,41,.28), 0 0 0 0 rgba(201,164,104,.55); }
  60%      { box-shadow: 0 12px 30px rgba(15,29,41,.28), 0 0 0 16px rgba(201,164,104,0); }
}

/* Popup */
.popup {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.popup.is-open { opacity: 1; pointer-events: auto; }
.popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 22, 32, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.popup-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.97);
  transition: transform .35s cubic-bezier(.2,.8,.2,1.05);
}
.popup.is-open .popup-card { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.popup-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.popup-body { padding: 36px 32px 30px; }
.popup-pill { margin-bottom: 18px; }
.popup-title { font-size: 1.7rem; line-height: 1.15; margin: 0 0 10px; }
.popup-title em { color: var(--gold-2); }
.popup-lead { color: var(--text-muted); font-size: 15px; margin: 0 0 22px; }

.popup-form { display: grid; gap: 14px; }
.popup-form .field input {
  font: inherit;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: #fff;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.popup-form .field input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,52,72,.12);
}
.popup-form .field input.is-invalid {
  border-color: #d03b3b;
  box-shadow: 0 0 0 3px rgba(208,59,59,.14);
}

.popup-submit { position: relative; }
.popup-submit .btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.popup-submit.is-loading .btn-label,
.popup-submit.is-loading .btn-arrow { display: none; }
.popup-submit.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.popup-status {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}
.popup-status-err { background: #fdecec; color: #8a1f1f; border: 1px solid #f3c2c2; }

.popup-success { text-align: center; padding: 12px 0 6px; }
.popup-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  animation: successPop .5s cubic-bezier(.2,.8,.2,1.4);
}
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.popup-success h3 { margin: 0 0 8px; font-size: 1.4rem; }
.popup-success p { color: var(--text-muted); margin: 0 0 22px; }

body.popup-open { overflow: hidden; }

@media (max-width: 480px) {
  .fab { right: 14px; bottom: 14px; padding: 12px 18px 12px 14px; font-size: 14px; }
  .fab-text { display: none; }
  .fab { padding: 14px; }
  .popup-body { padding: 28px 22px 22px; }
  .popup-title { font-size: 1.45rem; }
}
