:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --logo-bg: #000000;
  --surface: #0d1320;
  --card: #0e1522;
  --card-hover: #121a2a;
  --text: #e8edf5;
  --muted: #8b98ac;
  --border: rgba(148, 163, 184, 0.12);
  --border-glow: rgba(34, 211, 238, 0.25);
  --primary: #0891b2;
  --primary-hover: #0e7490;
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.12);
  --accent-glow: rgba(34, 211, 238, 0.35);
  --success: #34d399;
  --danger: #f87171;
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1140px;
  --header-height: 76px;
  --font-display: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #67e8f9;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  overflow: visible;
}

.brand-link:hover {
  color: #fff;
}

.brand-mark {
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  background: #000;
}

.brand-wordmark {
  height: 34px;
  width: auto;
  object-fit: contain;
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: var(--muted);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: var(--accent-soft);
}

.nav-cta {
  margin-left: 8px;
  background: linear-gradient(120deg, #22d3ee, #0891b2) !important;
  color: #041019 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.nav-cta:hover {
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.55);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glow);
  color: #fff;
  padding: 8px 13px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 72% 42%, rgba(34, 211, 238, 0.06) 0%, transparent 60%),
    #000000;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.38fr);
  gap: 28px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(34, 211, 238, 0.06);
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 700;
}

.hero h1 .glow-text {
  background: linear-gradient(100deg, #22d3ee 10%, #7dd3fc 50%, #22d3ee 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.13rem;
  color: var(--muted);
  margin: 0 0 34px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.point-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--muted);
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
}

.point-chip::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Hero logo showcase */
.hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 44px);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 65% at 20% 40%, rgba(34, 211, 238, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(8, 145, 178, 0.1) 0%, transparent 55%),
    linear-gradient(148deg, #12243c 0%, #0c1a2e 42%, #070f1a 100%);
  border: 1px solid rgba(34, 211, 238, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(34, 211, 238, 0.1);
}

.logo-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 92% 82% at 50% 48%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 48%, black 25%, transparent 100%);
  pointer-events: none;
}

.logo-stage__aura {
  position: absolute;
  left: 6%;
  top: 50%;
  width: 44%;
  height: 72%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.42) 0%, rgba(34, 211, 238, 0.08) 45%, transparent 72%);
  filter: blur(26px);
  pointer-events: none;
  animation: logo-aura-pulse 4.5s ease-in-out infinite;
}

@keyframes logo-aura-pulse {
  0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}

.hero-logo-card {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  max-height: min(760px, 82vh);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 32px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(34, 211, 238, 0.16);
}

.logo-stage--compact {
  margin-top: 28px;
  padding: clamp(20px, 3vw, 32px);
}

.logo-stage--compact .logo-stage__image {
  width: min(520px, 100%);
}

.logo-stage--compact .logo-stage__aura {
  width: 38%;
  height: 65%;
}

.logo-icon-plate,
.cta-band .cta-mark,
.contact-info .contact-mark,
.footer-brand-row img {
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 211, 238, 0.18) 0%, rgba(12, 24, 42, 0.95) 60%, #081018 100%);
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.14);
}

.logo-icon-plate {
  object-fit: contain;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.15s;
  font-family: var(--font-body);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #22d3ee, #0891b2);
  color: #041019;
  box-shadow: 0 4px 24px rgba(34, 211, 238, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 34px rgba(34, 211, 238, 0.55);
  color: #041019;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-glow);
}

.btn-secondary:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Sections ---------- */
.section {
  padding: 92px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-header p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* ---------- Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  background: var(--card-hover);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 30px rgba(34, 211, 238, 0.06);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(8, 145, 178, 0.08));
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.13rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(100deg, #22d3ee, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Problem / solution ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.split-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.split-panel.panel-solution {
  border-color: var(--border-glow);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.05), var(--card) 45%);
}

.split-panel h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li,
.solution-list li {
  padding: 13px 0 13px 34px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.96rem;
}

.problem-list li:last-child,
.solution-list li:last-child {
  border-bottom: none;
}

.problem-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(120deg, #22d3ee, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%, rgba(34, 211, 238, 0.14) 0%, transparent 60%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.cta-band .cta-mark {
  height: 74px;
  width: 74px;
  margin: 0 auto 26px;
  border-radius: 16px;
  object-fit: contain;
  padding: 10px;
}

.cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.cta-band p {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 1.1rem;
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  padding: 72px 0 80px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 80% at 50% -20%, rgba(34, 211, 238, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #070d18 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -70px;
  width: 300px;
  height: 300px;
  transform: translateY(-50%);
  background: url('../assets/logo-mark.png?v=48') center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
}

.page-hero p {
  position: relative;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 580px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.about-grid h2 {
  font-size: 1.9rem;
}

.about-grid p {
  color: var(--muted);
}

.about-grid p strong {
  color: var(--text);
}

.brand-plate {
  margin: 28px 0 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-plate img,
.logo-showcase .logo-stage__image {
  width: min(560px, 100%);
  object-fit: contain;
}

.logo-showcase {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-card {
  margin-top: 28px;
  width: 100%;
  max-height: none;
}

.about-values {
  display: grid;
  gap: 16px;
}

.value-item {
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-item:hover {
  transform: translateX(4px);
}

.value-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Contact ---------- */
.section-compact {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.contact-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
}

.contact-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.contact-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.contact-info {
  position: relative;
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.07), var(--card) 50%);
  border: 1px solid var(--border-glow);
  color: #fff;
  padding: 34px 30px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-info .contact-mark {
  height: 58px;
  width: 58px;
  border-radius: 12px;
  margin-bottom: 22px;
  object-fit: contain;
  padding: 8px;
}

.contact-info h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-info-lead {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-checklist {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-checklist li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: #d1d5db;
  line-height: 1.5;
}

.contact-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-checklist strong {
  color: #fff;
}

.contact-info-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-form-wrap {
  display: grid;
  gap: 16px;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.label-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-export {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.form-export-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-right: 4px;
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-glow);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.btn-submit {
  width: 100%;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-privacy {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(139, 152, 172, 0.55);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%2322d3ee' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.16);
}

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

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 5px;
}

.form-success {
  display: none;
  padding: 22px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: var(--radius-sm);
  color: var(--success);
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-success p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-success-hint {
  color: var(--muted) !important;
  font-size: 0.85rem !important;
}

.form-success .btn {
  margin-top: 18px;
}

.form-error {
  padding: 22px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: var(--radius-sm);
  color: var(--danger);
}

.form-error p {
  margin: 8px 0 14px;
  color: var(--text);
  font-size: 0.9rem;
}

.contact-email-fallback {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-glow);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.faq-item h3::before {
  content: '› ';
  color: var(--accent);
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Services page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  margin-bottom: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-detail:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.service-num {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22d3ee, #0891b2);
  color: #041019;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.3);
}

.service-detail h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.service-detail p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.78rem;
  padding: 5px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 20px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #04060a;
  color: var(--muted);
  padding: 60px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.footer-brand-row img {
  height: 46px;
  width: 46px;
  border-radius: 10px;
  object-fit: contain;
  padding: 6px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col h4 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  padding: 5px 0;
  font-size: 0.92rem;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-logo img,
  .logo-stage__image,
  .logo-stage__aura {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .brand-wordmark {
    height: 28px;
  }
  .hero-grid,
  .split-section,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 76px;
  }

  .hero-logo {
    min-height: 280px;
    order: -1;
  }

  .hero-logo-card {
    width: 100%;
    max-height: min(520px, 70vh);
  }

  .logo-glow {
    width: 320px;
    height: 180px;
  }

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 7, 12, 0.98);
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .page-hero::after {
    opacity: 0.07;
  }
}

@media (max-width: 620px) {
  .brand-wordmark {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }
}
