/* SaarahBuildTech — design system (brand purple from saarahbuildtech.com) */
:root {
  --bg: #f4f1ec;
  --bg-elevated: #ffffff;
  --bg-muted: #ebe6df;
  --text: #1c1917;
  --text-muted: #57534e;
  --border: #d6d3d1;
  --brand: #667eea;
  --brand-2: #764ba2;
  --brand-soft: rgba(102, 126, 234, 0.14);
  --accent: #c2410c;
  --focus: #667eea;
  --danger: #b91c1c;
  --success: #15803d;
  --radius: 14px;
  --radius-sm: 8px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --shadow: 0 10px 30px rgba(28, 25, 23, 0.08);
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --container: 1120px;
  --header-h: 72px;
  --topbar-h: 40px;
}

html[data-theme="dark"] {
  --bg: #0c0a09;
  --bg-elevated: #1c1917;
  --bg-muted: #292524;
  --text: #fafaf9;
  --text-muted: #a8a29e;
  --border: #44403c;
  --brand: #8b9cf7;
  --brand-2: #a78bfa;
  --brand-soft: rgba(139, 156, 247, 0.16);
  --accent: #fb923c;
  --focus: #8b9cf7;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, var(--brand-soft), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(194, 65, 12, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-2); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
}
p { margin: 0 0 var(--space-4); color: var(--text-muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-2); color: #fff; }
.btn-secondary { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-secondary:hover { background: var(--brand-soft); color: var(--brand-2); }
.btn-ghost { background: transparent; color: inherit; border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-muted); }
.btn-full { width: 100%; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.topbar {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.topbar-inner {
  min-height: var(--topbar-h);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: flex-end;
}
.topbar-item {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar a.topbar-item:hover { color: var(--brand); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
}
.brand img { border-radius: 10px; object-fit: contain; }
html[data-theme="dark"] .brand img {
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  box-sizing: content-box;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
}
.nav-link:hover,
.nav-link.is-active { color: var(--brand); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.breadcrumbs { border-bottom: 1px solid var(--border); background: var(--bg-elevated); }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem 0;
  margin: 0;
  font-size: 0.9rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--text-muted);
}
.breadcrumbs a { text-decoration: none; color: var(--text-muted); }
.breadcrumbs [aria-current="page"] { color: var(--text); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 0;
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.22), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(0, 0, 0, 0.18), transparent 36%);
  animation: heroDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 2%, 0) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .page-hero::after { animation: none; }
}
.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-grid > div:first-child {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-2);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
  color: #fff;
  text-align: center;
}
.hero .lede {
  font-size: 1.1rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.hero .btn-primary {
  background: #fff;
  color: #764ba2;
}
.hero .btn-primary:hover {
  background: #f5f3ff;
  color: #5b21b6;
}
.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.hero-visual {
  position: relative;
  min-height: 320px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--brand-2), #4c1d95 45%, #1c1917),
    var(--brand);
  box-shadow: var(--shadow);
  color: #fff;
  padding: 1.5rem;
  display: grid;
  align-content: end;
  gap: 0.75rem;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 40%),
    linear-gradient(transparent 40%, rgba(0,0,0,0.35));
  pointer-events: none;
}
.hero-visual > * { position: relative; z-index: 1; }
.hero-visual h2 { color: #fff; margin: 0; font-size: 1.5rem; }
.hero-visual p { color: rgba(255,255,255,0.85); margin: 0; }

.hero-visual--media {
  padding: 0;
  align-content: stretch;
  background: #f4f4f5;
  min-height: 0;
}
.hero-visual--media::before { display: none; }
.hero-visual--media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 560px);
  object-fit: cover;
  object-position: top center;
}

.hero-visual--photo {
  min-height: 360px;
  background: var(--brand-2);
}
.hero-visual--photo::before {
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.62) 0%, rgba(12, 10, 9, 0.78) 45%, rgba(12, 10, 9, 0.92) 100%);
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.28;
  pointer-events: none;
}
.hero-visual--photo .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: fit-content;
}
.hero-visual--photo h2 {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-visual--photo p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  border-bottom: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  max-width: 52ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-left: auto;
  margin-right: auto;
}

/* Typing caret on hero headlines */
.hero h1.is-typing::after,
.page-hero h1.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.12em;
  background: currentColor;
  vertical-align: -0.05em;
  animation: caretBlink 0.85s step-end infinite;
}
@keyframes caretBlink {
  50% { opacity: 0; }
}

.section { padding: var(--space-8) 0; }
.section-muted { background: var(--bg-elevated); border-block: 1px solid var(--border); }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { margin: 0.6rem 0 0; color: var(--text-muted); line-height: 1.55; }

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.trust-item span { color: var(--text-muted); font-size: 0.92rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
}
.card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow); }
.card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: var(--brand-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.25rem; }
.card ul { margin-top: 0.75rem; }
.card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
}
.feature-list i { color: var(--brand); margin-top: 0.2rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  min-height: 180px;
  display: grid;
  align-content: end;
  padding: 1.1rem;
  color: #fff;
  background-image:
    linear-gradient(transparent, rgba(0,0,0,0.72)),
    linear-gradient(135deg, #667eea, #764ba2);
}
.gallery-card:nth-child(2) { background-image: linear-gradient(transparent, rgba(0,0,0,0.72)), linear-gradient(135deg, #c2410c, #1c1917); }
.gallery-card:nth-child(3) { background-image: linear-gradient(transparent, rgba(0,0,0,0.72)), linear-gradient(135deg, #1e3a8a, #0c0a09); }
.gallery-card h3 { color: #fff; margin: 0 0 0.25rem; font-size: 1.1rem; }
.gallery-card p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.9rem; }

.gallery-card--photo {
  background: var(--brand-2);
  background-image: none;
  min-height: 220px;
}
.gallery-card--photo:nth-child(2),
.gallery-card--photo:nth-child(3) {
  background-image: none;
  background: #1c1917;
}
.gallery-card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.55) 0%, rgba(12, 10, 9, 0.78) 50%, rgba(12, 10, 9, 0.92) 100%);
  pointer-events: none;
}
.gallery-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.28;
  pointer-events: none;
}
.gallery-card--photo h3,
.gallery-card--photo p {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.gallery-card--photo p {
  color: rgba(255, 255, 255, 0.92);
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.product-chip {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #fff;
}
.product-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}
.product-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.product-panel-head span {
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 700;
}
.product-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.product-stats-4 { grid-template-columns: 1fr 1fr; }
.product-stats > div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
}
.product-stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.product-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  display: block;
}
.product-stat-delta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.product-stat-delta.is-up { color: var(--brand); }
.product-panel-rich {
  align-self: stretch;
  background: var(--bg-elevated);
  color: var(--text);
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.product-avatar-alt { background: #c2410c; }
.muted { color: var(--text-muted); font-weight: 400; }

.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}
.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.demo-card {
  min-height: 280px;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(102, 126, 234, 0.92), rgba(118, 75, 162, 0.95)),
    var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.demo-card-inner {
  text-align: center;
  max-width: 22rem;
}
.demo-card-inner i {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
}
.demo-card-inner h3 { color: #fff; margin-bottom: 0.4rem; }
.demo-card-inner p { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }
.product-project {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}
.product-project > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.92rem;
}
.product-project span { color: var(--text-muted); }
.progress-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}
.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 999px;
}
.product-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
}
.product-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.product-message p {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-preview {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.faq-list { display: grid; gap: 0.75rem; max-width: 820px; }
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer {
  padding: 0 1.2rem 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-answer p,
.faq-answer ul {
  margin: 0 0 0.85rem;
}
.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}
.faq-answer ul {
  padding-left: 1.15rem;
}
.faq-answer li + li {
  margin-top: 0.35rem;
}
.faq-answer a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-answer a:hover {
  color: var(--brand-2);
}
.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

.cta-band {
  margin: var(--space-7) 0;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255,255,255,0.88); margin: 0; max-width: 40ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta-band .btn-primary { background: #fff; color: #764ba2; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.45); color: #fff; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
.contact-card, .form-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-row {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.contact-row i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  flex-shrink: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--brand);
}
.field-error { color: var(--danger); font-size: 0.82rem; min-height: 1.1em; display: block; margin-top: 0.3rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-alert {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.form-alert.is-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-alert.is-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
html[data-theme="dark"] .form-alert.is-error { background: #450a0a; color: #fecaca; border-color: #7f1d1d; }
html[data-theme="dark"] .form-alert.is-success { background: #052e16; color: #bbf7d0; border-color: #14532d; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.timeline { border-left: 2px solid var(--border); padding-left: 1.25rem; }
.timeline-item { margin-bottom: 1.25rem; }
.timeline-year {
  display: inline-block;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.expo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.expo-poster {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.expo-poster img { width: 100%; }
.expo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.55);
}
.modal-dialog {
  position: relative;
  width: min(100%, 520px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-height: 90vh;
  overflow: auto;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.site-footer {
  background: #1c1917;
  color: #e7e5e4;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
html[data-theme="dark"] .site-footer { background: #000; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .brand { color: #fff; margin-bottom: 0.75rem; }
.footer-brand .brand img {
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  box-sizing: content-box;
}
.footer-brand p { color: #a8a29e; }
.footer-heading {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.85rem;
}
.footer-links a {
  color: #a8a29e;
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
  min-height: 44px;
  line-height: 44px;
}
.footer-links a:hover { color: #fff; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #44403c;
  display: grid;
  place-items: center;
  color: #e7e5e4;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid #44403c;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  color: #e7e5e4;
  font-size: 0.95rem;
}
.footer-bottom p { color: #e7e5e4; margin: 0; }
.footer-bottom a { color: #a5b4fc; }
.footer-bottom a:hover { color: #c7d2fe; }
.footer-credit { margin: 0; }

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 900;
  text-decoration: none;
}
.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(3, 1fr);
}
.mobile-action-bar a {
  min-height: 56px;
  display: grid;
  place-items: center;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
}
.mobile-action-bar i { color: var(--brand); font-size: 1.1rem; }

.redirect-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}
.redirect-card {
  width: min(100%, 420px);
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.redirect-spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-layout,
  .contact-preview,
  .expo-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid,
  .card-grid-3,
  .card-grid-4,
  .steps-grid,
  .values-grid { grid-template-columns: 1fr 1fr; }
  .trust-band { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav {
    position: fixed;
    inset: calc(var(--header-h)) 0 auto 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    padding: 0.9rem 0.5rem;
    min-height: 44px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .card-grid,
  .card-grid-3,
  .card-grid-4,
  .steps-grid,
  .values-grid,
  .trust-band,
  .form-row { grid-template-columns: 1fr; }
  .mobile-action-bar { display: grid; }
  body { padding-bottom: 64px; }
  .whatsapp-float { bottom: 5.75rem; }
}
