/* ==========================================================================
   Sparkles Packaging — Exquisite Premium UI + Glassmorphism
   White sections for sharp contrast · Brand colors preserved
   ========================================================================== */

@font-face { font-family:"Manrope"; font-style:normal; font-weight:500; src:url("fonts/manrope-latin-500-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Manrope"; font-style:normal; font-weight:600; src:url("fonts/manrope-latin-600-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Manrope"; font-style:normal; font-weight:700; src:url("fonts/manrope-latin-700-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Manrope"; font-style:normal; font-weight:800; src:url("fonts/manrope-latin-800-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; src:url("fonts/inter-latin-400-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; src:url("fonts/inter-latin-500-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; src:url("fonts/inter-latin-600-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; src:url("fonts/inter-latin-700-normal.woff2") format("woff2"); font-display:swap; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:800; src:url("fonts/inter-latin-800-normal.woff2") format("woff2"); font-display:swap; }

:root {
  --ink: #1B140E;
  --ink-soft: #6B5D4F;
  --white: #FFFFFF;
  --surface: #FAFAFA;
  --blue: #1B33E0;
  --blue-deep: #0A1258;
  --blue-mid: #1522A6;
  --red: #E4291B;
  --red-deep: #A81D12;
  --orange: #F5901F;
  --orange-deep: #C96C0E;
  --line: rgba(27,20,14,0.08);

  --display: "Manrope", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;

  --container: 1160px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
p { margin: 0; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; background: var(--white); }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 0 rgba(201,108,14,0.35), 0 12px 28px rgba(245,144,31,0.28);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(201,108,14,0.4), 0 18px 36px rgba(245,144,31,0.35);
}
.btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(201,108,14,0.3); }
.btn-dark {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,18,88,0.25);
}
.btn-dark:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,51,224,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}
.btn-lg { padding: 18px 34px; font-size: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(27,20,14,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-mark-wrap { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-mark { width: 100%; height: 100%; object-fit: contain; }
.brand-type { display: flex; flex-direction: column; justify-content: center; gap: 2px; line-height: 1.1; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; text-transform: lowercase; color: var(--ink); }
.brand-descriptor { font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color 0.15s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }
.desktop-only { display: inline-flex; }
.mobile-only { display: none; }
.menu-toggle {
  display: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px;
  color: var(--ink);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
@media (max-width: 920px) {
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 28px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-link { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-link::after { display: none; }
  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; margin-top: 24px; align-self: flex-start; }
  .menu-toggle { display: inline-flex; }
}

.hero {
  position: relative;
  background: linear-gradient(145deg, #070d3a 0%, var(--blue-deep) 35%, var(--blue-mid) 70%, #1a2fd0 100%);
  padding: 80px 0 88px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245,144,31,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,144,31,0.35);
}
.hero-content h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  color: #fff;
  margin-bottom: 22px;
}
.text-gradient {
  background: linear-gradient(90deg, var(--orange) 0%, #ffb347 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  font-size: 17.5px;
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 42ch;
}
.proof-item {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.proof-item strong { color: #fff; font-weight: 600; }
.video-stage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  height: 460px;
}
@media (max-width: 979px) {
  .video-stage { grid-template-columns: 1fr; height: auto; }
}
.video-main, .video-secondary {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #0a0f2e;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
}
.video-main { height: 100%; }
.video-main video, .video-secondary video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 7px 14px;
  border-radius: var(--r-pill);
}
.video-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 979px) {
  .video-main { height: 280px; }
  .video-stack { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .video-secondary { height: 160px; }
}
@media (min-width: 1100px) {
  .video-stage { height: 520px; }
}

.metrics { background: var(--ink); color: #fff; padding: 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}
.metric {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}
.metric:last-child { border-right: none; }
.metric:hover { background: rgba(255,255,255,0.04); }
.metric-value { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.metric-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

.pathways { background: var(--white); }
.section-intro { max-width: 640px; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-deep);
  background: rgba(228,41,27,0.08);
  border: 1px solid rgba(228,41,27,0.12);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.tag-blue { color: var(--blue-mid); background: rgba(27,51,224,0.08); border-color: rgba(27,51,224,0.12); }
.tag-light { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); }
.section-intro h2 { font-size: clamp(30px, 3.8vw, 42px); margin-bottom: 16px; }
.section-intro p { font-size: 16.5px; color: var(--ink-soft); max-width: 48ch; line-height: 1.7; }
.route-grid { display: grid; gap: 20px; }
@media (min-width: 880px) {
  .route-grid { grid-template-columns: repeat(3, 1fr); }
}
.route-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  box-shadow: 0 1px 2px rgba(27,20,14,0.03), 0 12px 40px -16px rgba(27,20,14,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(27,20,14,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
}
.route-card.route-warm::before { background: var(--orange); }
.route-card.route-accent::before { background: var(--red); }
.route-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 1px 2px rgba(27,20,14,0.04), 0 28px 56px -12px rgba(27,20,14,0.18), inset 0 1px 0 rgba(255,255,255,1);
}
.route-number {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  opacity: 0.45;
  margin-bottom: 20px;
}
.route-body { flex: 1; }
.route-body h3 { font-size: 22px; margin-bottom: 12px; letter-spacing: -0.02em; }
.route-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.route-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: gap 0.2s ease;
}
.route-card:hover .route-cta { gap: 12px; }

.industries { background: var(--surface); }
.industries-layout { display: grid; gap: 56px; align-items: center; }
@media (min-width: 900px) {
  .industries-layout { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.industries-copy h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 18px; }
.lead { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 32px; max-width: 42ch; line-height: 1.7; }
.industry-list { display: flex; flex-direction: column; gap: 10px; }
.industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(27,20,14,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.industry-item:hover {
  background: var(--blue-deep);
  color: #fff;
  transform: translateX(4px);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(10,18,88,0.2);
}
.industry-item svg { opacity: 0.4; transition: opacity 0.2s ease; }
.industry-item:hover svg { opacity: 1; }

.final-cta { background: var(--ink); padding: 88px 0; }
.final-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.final-copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: #fff;
  max-width: 14ch;
}

.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  gap: 48px;
  padding-bottom: 56px;
}
@media (min-width: 860px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-descriptor { color: rgba(255,255,255,0.5); }
.footer-tagline {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 18px;
  line-height: 1.6;
}
.footer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14.5px;
  padding: 6px 0;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 5px; }
.footer-contact span { font-size: 14.5px; color: rgba(255,255,255,0.7); }
.footer-wa {
  margin-top: 18px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 14px;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.footer-wa:hover {
  background: #fff;
  color: var(--blue-deep);
  transform: translateY(-1px);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(245,144,31,0.45), 0 0 0 0 rgba(245,144,31,0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 8px 28px rgba(245,144,31,0.45), 0 0 0 0 rgba(245,144,31,0.35); }
  70% { box-shadow: 0 8px 28px rgba(245,144,31,0.45), 0 0 0 14px rgba(245,144,31,0); }
  100% { box-shadow: 0 8px 28px rgba(245,144,31,0.45), 0 0 0 0 rgba(245,144,31,0); }
}
.floating-whatsapp:hover {
  background: var(--red);
  transform: scale(1.08);
  animation: none;
}

.page-hero {
  position: relative;
  background: linear-gradient(145deg, #070d3a 0%, var(--blue-deep) 40%, var(--blue-mid) 100%);
  padding: 72px 0 80px;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(245,144,31,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 720px; }
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  color: #fff;
  margin-bottom: 18px;
}
.page-hero-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 48ch;
  margin-bottom: 28px;
  line-height: 1.7;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}
.split-copy h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  margin-bottom: 14px;
}
.split-copy p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pill {
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(27,51,224,0.07);
  color: var(--blue-mid);
  border: 1px solid rgba(27,51,224,0.1);
}

.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  padding: 20px 22px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  border: 1px solid rgba(27,20,14,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.step strong { display: block; font-size: 15.5px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

.dark-band {
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
}
.dark-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.dark-band h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  max-width: 18ch;
  margin-bottom: 10px;
}
.dark-band p {
  color: rgba(255,255,255,0.7);
  max-width: 42ch;
  font-size: 15.5px;
  line-height: 1.65;
}
.dark-band-list { display: flex; flex-direction: column; gap: 10px; }
.dark-band-list p { color: rgba(255,255,255,0.85); font-size: 15px; margin: 0; }

.catalog-grid { display: grid; gap: 20px; }
@media (min-width: 700px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
.catalog-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(27,20,14,0.06);
  box-shadow: 0 1px 2px rgba(27,20,14,0.03), 0 12px 36px -16px rgba(27,20,14,0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 2px rgba(27,20,14,0.04), 0 24px 48px -12px rgba(27,20,14,0.16);
}
.catalog-card-media {
  aspect-ratio: 16/10;
  background: var(--surface);
  overflow: hidden;
}
.catalog-card-media img,
.catalog-card-media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.catalog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 10px;
}
.catalog-card-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.catalog-card-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 8px;
}
.catalog-card-body p strong { color: var(--ink); font-weight: 600; }
.catalog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: gap 0.2s ease, color 0.15s ease;
}
.catalog-card-cta:hover { gap: 10px; color: var(--blue); }
a.catalog-card-cta { text-decoration: none; }

.contact-grid { display: grid; gap: 40px; }
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.detail-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.detail-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.detail-item span { font-size: 15.5px; color: var(--ink); }
.form-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid rgba(27,20,14,0.06);
  box-shadow: 0 12px 40px -12px rgba(27,20,14,0.12);
}
.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink);
}
.form-card input,
.form-card textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border: 1.5px solid rgba(27,20,14,0.12);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-help { font-size: 13px; color: var(--ink-soft); margin-top: 12px; }
.success-state { text-align: center; padding: 24px 8px; }
.success-state h3 { font-size: 20px; margin: 12px 0 8px; }
.success-state p { color: var(--ink-soft); margin-bottom: 20px; }
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27,51,224,0.1);
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 0 rgba(201,108,14,0.35), 0 12px 28px rgba(245,144,31,0.28);
}
.button-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.button-dark {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,18,88,0.25);
}
.button-dark:hover { background: var(--blue); transform: translateY(-2px); }
