/* ═══════════════════════════════════════════
   SOLIANIC — Web Consultancy
   Artistic × Corporate × AI-Enabled
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy:      #0a0e17;
  --navy-soft: #111620;
  --charcoal:  #1a1d24;
  --charcoal-l:#252830;
  --slate:     #3a3d46;
  --silver:    #8b8d94;
  --cloud:     #c5c6ca;
  --white:     #f0f1f3;
  --gold:      #c9a84c;
  --gold-light:#dcc07a;
  --gold-dim:  #8b733a;
  --accent:    #4a90d9;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;

  --max-width:  1200px;
  --header-h:   72px;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--cloud);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle animated background mesh */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(74,144,217,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Geometric mesh grid overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  display: none;
}

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 400; line-height:1.2; }
h1 { font-family: var(--font-display); }
h2 { font-family: var(--font-display); font-size:clamp(2rem,4vw,3rem); }
h3 { font-family: var(--font-display); font-size:clamp(1.3rem,2.5vw,1.75rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items:center; gap:0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--slate);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm { font-size:0.7rem; padding:0.5rem 1.2rem; }
.btn-lg { font-size:0.85rem; padding:1rem 2.4rem; }

.contact-trap { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.contact-alert { margin-bottom:1rem; padding:0.85rem 1rem; border-radius:var(--radius); font-size:0.78rem; line-height:1.5; }
.contact-alert-success { color:#b9ead7; background:rgba(44,132,96,0.16); border:1px solid rgba(80,185,142,0.35); }
.contact-alert-error { color:#f0c4c4; background:rgba(174,63,63,0.14); border:1px solid rgba(213,99,99,0.32); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,14,23,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(10,14,23,0.95);
  box-shadow: 0 1px 24px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  z-index: 1001;
}

.logo-mark { flex-shrink:0; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--silver);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link.active { font-weight: 500; }

.nav-cta { margin-left: 0.75rem; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}

/* ── ANIMATED SPACE HERO ── */
.hero-space {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-network-canvas,
.hero-network-canvas canvas,
.hero-space-canvas,
.hero-space-canvas canvas,
.hero-space-vignette {
  position: fixed;
  inset: 0;
}

.hero-network-canvas,
.hero-space-canvas {
  z-index: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(201,168,76,0.12), transparent 28%),
    linear-gradient(135deg, #070b16, #03050c);
}

.hero-network-canvas {
  z-index: 0;
  pointer-events: none;
}

.hero-space-canvas {
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

.hero-network-canvas canvas,
.hero-space-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hero-space-vignette {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,8,18,0.96) 0%, rgba(5,8,18,0.7) 34%, transparent 65%),
    linear-gradient(180deg, rgba(5,8,18,0.25), transparent 55%, rgba(5,8,18,0.9)),
    radial-gradient(ellipse at center, transparent 35%, rgba(2,4,10,0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  width: min(1180px, calc(100% - 4rem));
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 0 2rem;
  animation: heroFadeIn 1s 0.3s ease both;
}

@keyframes heroFadeIn {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.6vw, 3.7rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.82rem, 1.15vw, 0.98rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  max-width: 48ch;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.7;
}

.hero-ctas {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 780px;
}

.hero-ctas .btn {
  padding: 0.72rem 1.25rem;
  font-size: 0.75rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounceDown 2s infinite;
  opacity: 0.9;
  transition: opacity 0.5s;
}

.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-scroll-indicator svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ── */
.section {
  position: relative;
  padding: 6rem 2rem;
  z-index: 3;
}

.section-dark,
.section-soft { background: transparent; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--white);
  max-width: 56ch;
  margin: 0 auto;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(11,16,27,0.96);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(16,23,37,0.98);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.service-link:hover { gap: 0.7rem; }

/* ── ABOUT PAGE ── */
.about-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--charcoal), var(--navy-soft));
  position: relative;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.about-content h1,
.about-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem,4vw,3rem);
}

.about-content p {
  color: var(--silver);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(11,16,27,0.96);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: rgba(11,16,27,0.96);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.about-team-compact {
  height: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  gap: 0.75rem;
  background: transparent;
}

.compact-profile {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
  min-height: 116px;
  padding: 0.9rem;
  background: rgba(11,16,27,0.96);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}
.compact-profile img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,0.45);
}
.compact-profile strong { display: block; color: var(--white); font: 500 0.9rem var(--font-display); }
.compact-profile span { display: block; color: var(--silver); font-size: 0.57rem; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.07em; }
.compact-profile p { margin: 0.45rem 0 0; color: var(--silver); font-size: 0.64rem; line-height: 1.45; }

.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
}

.value-card .value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--silver);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  overflow: hidden;
  background: rgba(11,16,27,0.96);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.team-card-content { padding: 1.5rem; }
.team-card h3 { color: var(--white); margin: 0.15rem 0 0.75rem; }
.team-card-content > p:last-child { color: var(--silver); font-size: 0.84rem; line-height: 1.7; }
.team-role {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── SERVICES PAGE ── */
.service-detail {
  position: relative;
  z-index: 3;
  padding: 5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.service-detail:last-child { border-bottom: none; }

.service-detail:nth-child(odd),
.service-detail:nth-child(even) { background: transparent; }

.service-detail-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--cloud);
}

.service-feature svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: rgba(11,16,27,0.96);
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-visual .visual-icon {
  color: var(--gold-dim);
  opacity: 0.5;
  transform: scale(3);
}

.service-detail-visual canvas { width: 100%; height: 100%; display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 5rem 2rem;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--silver);
  max-width: 48ch;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* ── CONTACT SECTION ── */
.contact-section {
  position: relative;
  z-index: 3;
  padding: 6rem 2rem;
  background: transparent;
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--silver);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-text h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.2rem;
}

.contact-detail-text span {
  color: var(--cloud);
  font-size: 0.9rem;
}

.contact-form {
  background: rgba(11,16,27,0.96);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate);
}

.form-privacy {
  margin-top: 1rem;
  color: var(--silver);
  font-size: 0.72rem;
  text-align: center;
}

.form-privacy a,
.contact-detail-text a { color: var(--gold-light); }
.optional-label { color: var(--slate); font-size: 0.62rem; letter-spacing: 0.04em; text-transform: none; }
.form-submit { width: 100%; justify-content: center; }

/* ── SMALL-BUSINESS SALES PAGES ── */
.trust-strip {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: -1px auto 0;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(7,11,20,0.72);
}

.trust-strip div { text-align: center; }
.trust-strip strong { display: block; color: var(--white); font: 500 1rem var(--font-display); }
.trust-strip span { display: block; color: var(--silver); font-size: 0.7rem; margin-top: 0.2rem; }

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.route-card,
.proof-card,
.package-card,
.step-card,
.soft-card {
  position: relative;
  background: rgba(11,16,27,0.96);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
}

.route-card { padding: clamp(2rem, 4vw, 3.5rem); overflow: hidden; }
.route-card::after {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  top: -110px;
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 50%;
}
.route-card h3 { color: var(--white); margin: 0.55rem 0 1rem; max-width: 18ch; }
.route-card > p:not(.route-kicker):not(.route-promise):not(.price-teaser) { color: var(--silver); font-size: 0.88rem; max-width: 55ch; }
.route-kicker { color: var(--gold); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.route-promise { color: var(--white); margin: 1.4rem 0; padding-left: 1rem; border-left: 2px solid var(--gold); font-size: 0.92rem; line-height: 1.7; }
.price-teaser { color: var(--gold-light); margin: 1.5rem 0; font-size: 0.85rem; }

.plain-list { display: grid; gap: 0.45rem; margin: 1.5rem 0 2rem; }
.plain-list li { color: var(--cloud); font-size: 0.82rem; }
.plain-list li::before { content: '—'; color: var(--gold); margin-right: 0.55rem; }

.split-story,
.ownership-panel,
.expectation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}
.split-story h2,
.ownership-panel h2,
.expectation-grid h2 { color: var(--white); }
.story-copy p,
.ownership-points p,
.expectation-grid > div > p { color: var(--silver); line-height: 1.85; margin-bottom: 1.2rem; }
.ownership-points { display: grid; gap: 1rem; }
.ownership-points p { padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin: 0; }
.ownership-points strong { color: var(--white); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.proof-card { padding: 2rem; }
.proof-card h3 { color: var(--white); margin: 0.6rem 0 0.8rem; }
.proof-card p { color: var(--silver); font-size: 0.85rem; line-height: 1.75; margin-bottom: 1.25rem; }
.proof-type { color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.61rem; font-weight: 600; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.step-grid.three-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-card { padding: 1.8rem; }
.step-card > span { display: block; color: var(--gold); font: 500 1.15rem var(--font-display); margin-bottom: 1rem; }
.step-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--silver); font-size: 0.8rem; line-height: 1.7; }

.sales-hero { min-height: 530px; display: flex; align-items: center; }
.narrow-copy { width: 100%; }
.narrow-copy h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 5rem); max-width: 15ch; margin-bottom: 1.5rem; }
.narrow-copy > p:not(.section-label) { color: var(--cloud); max-width: 60ch; font-size: 1rem; line-height: 1.8; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.package-card { padding: 2rem; display: flex; flex-direction: column; }
.package-card.featured { border-color: rgba(201,168,76,0.45); transform: translateY(-0.5rem); box-shadow: 0 20px 50px rgba(0,0,0,0.22); }
.featured-label { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; color: var(--navy); background: var(--gold); border-radius: 999px; padding: 0.35rem 0.8rem; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.package-name { color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.7rem; }
.package-card h3 { color: var(--white); font-size: 1.18rem; min-height: 4.2em; }
.price-range { color: var(--white); font: 500 1.75rem var(--font-display); margin: 1.35rem 0; }
.price-range span { display: block; color: var(--silver); font: 400 0.64rem var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.25rem; }
.check-list { display: grid; gap: 0.75rem; margin: 0 0 1.5rem; }
.check-list li { position: relative; color: var(--cloud); font-size: 0.8rem; line-height: 1.55; padding-left: 1.45rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }
.package-care { color: var(--gold-light); font-size: 0.72rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.07); margin-top: auto; margin-bottom: 1rem; }
.soft-card { padding: 2rem; }
.soft-card h3 { color: var(--white); margin-bottom: 1.25rem; }

/* ── LEGAL PAGES ── */
.legal-shell { max-width: 850px; margin: 0 auto; }
.legal-shell > h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 0.5rem; }
.legal-updated { color: var(--gold) !important; font-size: 0.72rem !important; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2.5rem !important; }
.legal-shell h2 { color: var(--white); font: 500 clamp(1.3rem, 3vw, 1.8rem) var(--font-display); margin: 3rem 0 1rem; }
.legal-shell p,
.legal-shell li { color: var(--cloud); font-size: 0.9rem; line-height: 1.85; }
.legal-shell p { margin-bottom: 1rem; }
.legal-shell ul { display: grid; gap: 0.55rem; padding-left: 1.2rem; list-style: disc; }
.legal-shell li::marker { color: var(--gold); }
.legal-shell a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); }
.legal-table { width: 100%; border-collapse: collapse; min-width: 620px; background: rgba(11,16,27,0.88); }
.legal-table th,
.legal-table td { text-align: left; vertical-align: top; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); color: var(--cloud); font-size: 0.78rem; line-height: 1.6; }
.legal-table th { color: var(--white); background: rgba(255,255,255,0.035); font-weight: 600; }
.legal-table tr:last-child td { border-bottom: 0; }

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 3;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo .logo-text { color: var(--white); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--silver);
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--slate);
}

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-center { text-align:center; }
.mt-1 { margin-top:1rem; }
.mt-2 { margin-top:2rem; }
.mb-1 { margin-bottom:1rem; }
.mb-2 { margin-bottom:2rem; }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .contact-grid,
  .service-detail-grid { grid-template-columns: 1fr; gap:2rem; }
  .service-detail:nth-child(even) .service-detail-grid { direction:ltr; }
  .service-detail-visual { min-height:240px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .package-card h3 { min-height: 0; }
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .about-image { aspect-ratio: auto; }
  .about-team-compact { grid-template-columns: 1fr; }
  .compact-profile { min-height: 100px; }

  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,14,23,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { font-size: 1.2rem; padding: 0.75rem 1.5rem; }
  .nav-cta { margin: 1rem 0 0; }

  .mobile-toggle { display: flex; }

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

  .trust-strip,
  .route-grid,
  .proof-grid,
  .step-grid,
  .step-grid.three-steps,
  .split-story,
  .ownership-panel,
  .expectation-grid { grid-template-columns: 1fr; }

  .trust-strip { margin: 0; padding: 1.5rem; }
  .trust-strip div { padding: 0.55rem 0; }
  .sales-hero { min-height: 0; }
  .narrow-copy h1 { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .featured-label { font-size: 0.52rem; }

  .footer-grid { grid-template-columns: 1fr; gap:2rem; }

  .service-detail { padding: 3rem 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .contact-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .inline-actions { flex-direction: column; align-items: stretch; }
  .inline-actions .btn { justify-content: center; }
}

@media (max-width: 768px) {
  .hero-space-vignette {
    background: linear-gradient(180deg, rgba(5,8,18,0.38), rgba(5,8,18,0.72) 52%, rgba(5,8,18,0.94));
  }
  .hero-content {
    width: calc(100% - 3rem);
    text-align: center;
    align-self: flex-end;
    padding-bottom: 6rem;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas {
    justify-content: center;
    margin: 0 auto;
  }
  .hero-scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-scroll-indicator { animation: none; }
  .reveal { transition: none; }
}
