/* ==========================================================================
   LAXMI CORPORATION — stylesheet
   Design tokens: steel/oxide-red/safety-yellow, Oswald + Inter + Plex Mono
   ========================================================================== */

:root {
  /* color */
  --bg: #EFECE3;
  --surface: #FFFFFF;
  --surface-2: #F7F4EC;
  --ink: #1A1D1F;
  --ink-soft: #5B6066;
  --steel: #22262A;
  --steel-soft: #343A40;
  --steel-line: #454C53;
  --red: #C5202D;
  --red-dark: #9B1820;
  --yellow: #F2B705;
  --line: #DCD5C6;
  --whatsapp: #25D366;
  --whatsapp-dark: #1CAE57;

  /* layout */
  --container: 1220px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(20, 18, 12, 0.04), 0 14px 30px -18px rgba(20, 18, 12, 0.35);
  --shadow-sm: 0 1px 2px rgba(20, 18, 12, 0.06);

  /* type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

/* ---------- reset ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

input {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 999;
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.kicker-light {
  color: var(--yellow);
}

.kicker-light::before {
  background: var(--yellow);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--ink);
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  margin-top: 10px;
}

h3 {
  font-size: 19px;
  line-height: 1.3;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 560px;
  margin-top: 12px;
}

section {
  padding: 88px 0;
}

@media (max-width: 720px) {
  section {
    padding: 60px 0;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06320f;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* ============================== HEADER ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--steel);
  border-bottom: 1px solid var(--steel-line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--red);
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.03em;
  color: var(--red);
}

.brand-text small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: #C9CDD1;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: 12px;
  flex: 1;
}

.nav a {
  color: #D7DADD;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav a:hover {
  color: #fff;
  border-color: var(--red);
}

.header-cta {
  display: flex;
  gap: 10px;
  flex: none;
}

.header-cta .btn {
  padding: 11px 16px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex: none;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  top: 19px;
}

.nav-toggle span::before {
  content: "";
  top: -7px;
}

.nav-toggle span::after {
  content: "";
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .header-cta .btn-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-mobile-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--steel);
    border-bottom: 1px solid var(--steel-line);
    flex-direction: column;
    padding: 8px 24px 20px;
  }

  .header-mobile-nav.open {
    display: flex;
  }

  .header-mobile-nav a {
    color: #D7DADD;
    padding: 13px 0;
    border-bottom: 1px solid var(--steel-line);
    font-size: 15px;
    font-family: var(--font-display);
    letter-spacing: 0.03em;
  }
}

@media (min-width: 921px) {
  .header-mobile-nav {
    display: none !important;
  }
}

/* ============================== HERO ============================== */
.hero {
  background: var(--steel);
  color: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/brand/steel-texture.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "●";
  font-size: 9px;
  color: var(--red);
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.04;
  margin-top: 16px;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  color: #C9CDD1;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--steel-line);
  flex-wrap: wrap;
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--red);
  line-height: 1;
}

.hero-stats dd {
  font-size: 12.5px;
  color: #9CA1A6;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
}

.hero-art {
  position: relative;
  height: 440px;
}

.hero-art .tile {
  position: absolute;
  width: 152px;
  height: 152px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.55);
  border: 4px solid #fff;
  background: #fff;
}

.hero-art .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art .t1 {
  top: 0;
  left: 6%;
  width: 168px;
  height: 168px;
  transform: rotate(-6deg);
  z-index: 3;
}

.hero-art .t2 {
  top: 8%;
  left: 46%;
  transform: rotate(4deg);
  z-index: 2;
}

.hero-art .t3 {
  top: 38%;
  left: 2%;
  transform: rotate(3deg);
  z-index: 2;
}

.hero-art .t4 {
  top: 34%;
  left: 56%;
  width: 168px;
  height: 168px;
  transform: rotate(-3deg);
  z-index: 4;
}

.hero-art .t5 {
  top: 68%;
  left: 22%;
  transform: rotate(-5deg);
  z-index: 3;
}

.hero-art .t6 {
  top: 64%;
  left: 64%;
  transform: rotate(6deg);
  z-index: 1;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    display: none;
  }
}

/* ============================== ABOUT ============================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-photo-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--steel);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  line-height: 1.3;
}

.about-photo-cap span {
  color: #9CA1A6;
  font-size: 12px;
}

.about-copy p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 56ch;
}

.about-copy p:first-of-type {
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 280px;
  }
}

/* ============================== PLEDGE ============================== */
.pledge {
  background: var(--steel);
  color: #fff;
}

.pledge h2 {
  color: #fff;
}

.pledge .section-sub {
  color: #9CA1A6;
}

.pledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--steel-line);
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}

.pledge-grid li {
  background: var(--steel);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pledge-num {
  font-family: var(--font-mono);
  color: var(--yellow);
  font-size: 13px;
}

.pledge-grid h3 {
  color: #fff;
}

.pledge-grid p {
  color: #9CA1A6;
  font-size: 14.5px;
}

@media (max-width: 880px) {
  .pledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .pledge-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================== CATEGORIES ============================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.cat-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.cat-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
}

.cat-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2px;
}

.cat-card-blurb {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.cat-card-count {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

@media (max-width: 1080px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 580px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ============================== CATALOGUE / MARKETPLACE ============================== */
.catalogue {
  background: var(--surface-2);
}

.catalogue-controls {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.search-wrap {
  position: relative;
  max-width: 460px;
}

.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
  pointer-events: none;
}

#searchInput {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 15px;
  color: var(--ink);
}

#searchInput:focus {
  border-color: var(--red);
  outline: none;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.result-count {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--surface-2);
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.product-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(34, 38, 42, 0.85);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 999px;
}

.product-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.25;
}

.product-card-std {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.02em;
}

.product-card-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  flex: 1;
}

.product-card-specs {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  background: var(--surface-2);
  padding: 8px 10px;
  border-radius: 6px;
}

.product-card .btn {
  margin-top: 6px;
}

.no-results {
  display: none;
  text-align: center;
  padding: 60px 0;
  color: var(--ink-soft);
}

.no-results.show {
  display: block;
}

.load-more-wrap {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 460px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================== CTA STRIP ============================== */
.cta-strip {
  background: var(--red);
  color: #fff;
  padding: 56px 0;
}

.cta-strip-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-strip h2 {
  color: #fff;
  margin-top: 0;
}

.cta-strip p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-strip .btn-whatsapp {
  margin-top: 24px;
  background: var(--steel);
  color: #fff;
}

.cta-strip .btn-whatsapp:hover {
  background: #000;
}

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--steel);
  color: #C9CDD1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--steel-line);
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  color: #9CA1A6;
  max-width: 32ch;
  line-height: 1.5;
}

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 500;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-col a.link {
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid var(--steel-line);
  padding-bottom: 2px;
}

.footer-col a.link:hover {
  border-color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: #777E84;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: #9CA1A6;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================== FLOATING ELEMENTS ============================== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #06320f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.4);
  z-index: 90;
  transition: transform 0.15s ease;
}

.float-whatsapp:hover {
  transform: scale(1.07);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 92px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--steel);
  color: #fff;
  border: 1px solid var(--steel-line);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  font-size: 18px;
}

.back-to-top.show {
  display: flex;
}

@media (max-width: 560px) {
  .float-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .float-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top {
    right: 76px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ============================== DOWNLOAD MODAL ============================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(34, 38, 42, 0.82);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.22s ease-out;
}
.modal.open {
  display: flex;
}
.modal-content {
  background: var(--surface);
  border: 1.5px solid var(--steel-line);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.45);
  animation: scaleIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: var(--ink-soft);
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.modal-close:hover {
  color: var(--red);
  transform: scale(1.1);
}
#modalTitle {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--steel);
  margin-top: 0;
  margin-bottom: 8px;
  text-align: center;
}
.modal-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 0;
  margin-bottom: 26px;
  line-height: 1.45;
  text-align: center;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--steel-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.form-group input {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-group input::placeholder {
  text-align: center;
  color: var(--ink-soft);
  opacity: 0.6;
  font-size: 13.5px;
}
.form-group input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(197, 32, 45, 0.12);
  outline: none;
  background: var(--surface);
}
.download-success {
  text-align: center;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon {
  width: 52px;
  height: 52px;
  color: var(--whatsapp);
}
.download-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--steel);
  margin: 0;
}
.download-success p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 8px 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
