/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --blue: #075bff;
  --blue-dark: #0048dc;
  --navy: #07143d;
  --text: #17234f;
  --muted: #5d6b88;
  --line: #dce6f4;
  --soft: #f2f8ff;
  --soft-strong: #e9f4ff;
  --white: #ffffff;
  --shadow-sm: 0 12px 28px rgba(8, 28, 74, 0.08);
  --shadow-md: 0 22px 48px rgba(8, 28, 74, 0.14);
  --shadow-cta: none;
  --container: min(1180px, calc(100% - 64px));
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

.container { width: var(--container); margin: 0 auto; }

/* ─── HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 122px; height: auto; display: block; }

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  margin-left: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.main-nav a { white-space: nowrap; transition: color 0.18s ease; }
.main-nav a:hover { color: var(--blue); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0964ff 0%, var(--blue-dark) 100%);
  box-shadow: var(--shadow-cta);
  color: var(--white);
  font-weight: 850;
  letter-spacing: 0.005em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-small { min-width: 210px; height: 48px; padding: 0 24px; font-size: 14px; }
.btn-large { min-width: 280px; height: 54px; padding: 0 28px; font-size: 15px; }

/* ─── TYPOGRAPHY: HEADINGS & EYEBROW ───────────────────── */
.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.founder-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}
.hero h1 span,
.section-heading h2 span,
.final-cta h2 span,
.founder-copy h2 span { color: var(--blue); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  padding: 86px 0 96px;
  background:
    radial-gradient(circle at 78% 34%, rgba(7, 91, 255, 0.11), transparent 29%),
    radial-gradient(circle at 18% 10%, rgba(219, 241, 255, 0.45), transparent 30%),
    var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 50px;
}
.hero h1 {
  max-width: 640px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}
.hero-text {
  max-width: 530px;
  margin: 28px 0 32px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.72;
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 32px;
  margin-bottom: 32px;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
}
.benefit strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}
.benefit small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.check-icon {
  position: relative;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}
.check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.check-icon-small { width: 15px; height: 15px; border-width: 1.5px; }
.check-icon-small::after {
  left: 3px; top: 3px;
  width: 5px; height: 3px;
  border-left-width: 1.5px;
  border-bottom-width: 1.5px;
}

.micro-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.btn-text-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: opacity 0.18s ease;
}
.btn-text-link:hover { opacity: 0.75; }

.hero-visual {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

/* ─── HERO DIAGRAM ──────────────────────────────────── */
.hero-diagram {
  position: relative;
  width: min(100%, 480px);
}
.dg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.dg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.dg-node {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(8, 28, 74, 0.07);
  white-space: nowrap;
}
.dg-node svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  stroke: var(--blue);
}
.dg-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--navy);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(7, 20, 61, 0.28), 0 0 0 8px rgba(7, 91, 255, 0.07);
}
.dg-hub-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.dg-hub-name span { color: var(--blue); }

/* ─── PROCESS ────────────────────────────────────────────── */
.process {
  padding: 92px 0 88px;
  background: linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
}
.section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.16;
}
.section-heading > p:not(.eyebrow) {
  max-width: 790px;
  margin: 14px auto 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  margin-top: 54px;
}
.step {
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 0 16px;
  border: 1px solid #cfe4ff;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.line-icon, .card-icon {
  margin: 0 auto;
  fill: none;
  stroke: #061342;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-icon { width: 56px; height: 56px; margin-bottom: 14px; }

.step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}
.step p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.75;
}

.step-arrow {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin-top: 0;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  opacity: 0.5;
}

/* ─── SERVICES ──────────────────────────────────────────── */
.services {
  padding: 92px 0 88px;
  background: var(--white);
}
.services .section-heading { max-width: 890px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}
.service-card {
  min-width: 0;
  min-height: 230px;
  padding: 26px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 14px 30px rgba(16, 38, 82, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(16, 38, 82, 0.08);
  border-color: #cfe4ff;
}
.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  padding: 9px;
  border: 1px solid #cfe4ff;
  border-radius: 16px;
  background: var(--soft);
  stroke: var(--blue);
  box-sizing: border-box;
}
.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.25;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.65;
}

/* ─── FOUNDER ───────────────────────────────────────────── */
.founder {
  padding: 0;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 72% 95%, rgba(200, 220, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 65% 85% at 78% 65%, rgba(10, 55, 210, 0.42) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 45% 85%, rgba(7, 91, 255, 0.14) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
#founder-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.founder-grid {
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  align-items: center;
  gap: 58px;
  position: relative;
  z-index: 1;
}
.founder-photo {
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 360px;
}
.founder-photo img {
  width: min(100%, 420px);
  height: auto;
  border-radius: 0;
  margin-bottom: -30px;
  filter: drop-shadow(0 0 40px rgba(190, 215, 255, 0.16)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.40));
}

.founder-copy {
  max-width: 650px;
  padding: 64px 0;
}
.founder-copy .eyebrow { margin-bottom: 9px; color: var(--blue); }
.founder-copy h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.08; color: var(--white); }
.founder-copy h2 span { color: var(--blue); }
.founder-copy p:not(.eyebrow) {
  margin: 16px 0 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.72;
}

/* ─── FINAL CTA ─────────────────────────────────────────── */
.final-cta {
  padding: 104px 0 96px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}
.final-cta p:not(.eyebrow):not(.micro-note) {
  max-width: 700px;
  margin: 18px auto 28px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}
.centered { justify-content: center; }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 42px;
  padding: 48px 0 34px;
}
.footer-brand img { width: 110px; height: auto; margin-bottom: 18px; display: block; }
.footer-brand p,
.footer-column a,
.footer-bottom {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.7;
}
.footer-brand p { max-width: 260px; margin: 0; }
.footer-column h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.footer-column a {
  display: block;
  margin-bottom: 8px;
  transition: color 0.15s ease;
}
.footer-column a:hover { color: var(--blue); }
.contact-column > a {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.35;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid #bdc8da;
  border-radius: 50%;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.socials a:hover { border-color: var(--blue); color: var(--blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 34px;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-bottom a { transition: color 0.15s ease; }
.footer-bottom a:hover { color: var(--blue); }
.footer-legal {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: default;
}

/* ─── ANALISI PAGE ──────────────────────────────────── */
.site-header-minimal .main-nav { display: none; }
.header-back {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.18s ease;
}
.header-back:hover { color: var(--blue); }

.analisi-main {
  min-height: calc(100vh - 82px);
  padding: 72px 0 96px;
  background: var(--soft);
}
.analisi-heading {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}
.analisi-heading h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}
.analisi-heading p {
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.7;
}
.btn-copy {
  margin-top: 10px;
  padding: 8px 16px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: transparent;
  color: var(--blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn-copy:hover { background: var(--blue); color: white; }
.request-preview {
  margin-top: 12px;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.request-preview-text {
  white-space: pre-line;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ─── CONTACT FORM ──────────────────────────────────────── */
.contact-form {
  padding: 92px 0 88px;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-form {
  max-width: 620px;
  margin: 48px auto 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.required { color: var(--blue); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 91, 255, 0.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.form-group textarea {
  resize: vertical;
  min-height: 148px;
}


.field-hint {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
}

.field-error {
  display: none;
  color: #d63031;
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form .btn {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.65;
}

.form-confirmation {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid #b6d9ff;
  border-radius: 10px;
  background: var(--soft);
  text-align: center;
}

.form-confirmation p {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.form-confirmation p:last-child { margin-bottom: 0; }

.form-confirmation a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── RESPONSIVE: TABLET LARGE (1080) ───────────────────── */
@media (max-width: 1080px) {
  :root { --container: min(1180px, calc(100% - 48px)); }

  .hero { padding: 72px 0 80px; }
  .process, .services { padding: 80px 0; }
  .contact-form { padding: 80px 0; }
  .final-cta { padding: 88px 0; }

  .header-inner {
    flex-wrap: wrap;
    min-height: 0;
    padding: 18px 0;
    gap: 16px 28px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar { display: none; }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }
  .step-arrow { display: none; }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .founder-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 40px;
  }
  .founder-photo img { width: min(100%, 320px); }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── RESPONSIVE: TABLET SMALL (860) ────────────────────── */
@media (max-width: 860px) {
  :root { --container: min(1180px, calc(100% - 40px)); }

  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-copy, .hero-text { max-width: 680px; }
  .hero-visual { justify-content: center; order: 2; }
  .hero-visual img { width: min(100%, 520px); }

  .process, .services { padding: 72px 0; }
  .contact-form { padding: 72px 0; }

  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .founder-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    text-align: center;
  }
  .founder-photo {
    min-height: 260px;
    order: 2;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .founder-photo img { width: min(100%, 340px); }
  .founder-copy {
    margin: 0 auto;
    padding: 48px 0 24px;
    order: 1;
  }

  .final-cta { padding: 76px 0; }
}

/* ─── RESPONSIVE: MOBILE (560) ──────────────────────────── */
@media (max-width: 560px) {
  :root { --container: min(1180px, calc(100% - 32px)); }

  body { font-size: 15px; }

  .header-inner { gap: 12px; padding: 14px 0; }
  .brand img { width: 108px; }
  .btn-small {
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    font-size: 12.5px;
  }
  .main-nav { gap: 18px; font-size: 12.5px; }

  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .hero-text { font-size: 16px; margin: 22px 0 28px; }
  .benefits {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
  }
  .benefit { width: 100%; }
  .btn-large {
    width: 100%;
    min-width: 0;
    padding: 0 20px;
  }

  .process, .services { padding: 64px 0; }
  .contact-form { padding: 64px 0; }
  .inquiry-form { margin-top: 36px; }
  .section-heading h2 { font-size: 26px; }

  .steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-top: 36px;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 36px;
  }
  .service-card { min-height: 0; padding: 24px 22px; }

  .founder-photo { min-height: 0; padding: 0 0 36px; }
  .founder-photo img { width: min(100%, 260px); }
  .founder-copy { padding: 36px 0 20px; }
  .founder-copy h2 { font-size: 26px; }
  .hero-diagram { display: none; }

  .final-cta { padding: 64px 0 72px; }
  .final-cta h2 { font-size: 32px; }
  .final-cta p:not(.eyebrow):not(.micro-note) { font-size: 15.5px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 40px 0 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0 28px;
  }
  .footer-bottom div { gap: 22px; }
}

/* ─── RESPONSIVE: SMALL MOBILE (380) ────────────────────── */
@media (max-width: 380px) {
  :root { --container: min(1180px, calc(100% - 24px)); }

  .hero h1 { font-size: 34px; }
  .eyebrow { font-size: 11px; letter-spacing: 2px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom div { gap: 18px; }
}
