/* ============================================================
   PubliKrea — Shared Stylesheet  |  Phase 1 Prototype
   Dark theme only · English only
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:       #0d1015;
  --bg-soft:  #121722;
  --panel:    #171c27;
  --panel-2:  #1d2431;
  --text:     #f5f7fb;
  --muted:    #aeb8ca;
  --line:     #2a3343;
  --accent:   #ff6b2c;
  --accent-2: #ffd166;
  --success:  #7dd3a6;
  --max:      1180px;
  --radius:   22px;
  --shadow:   0 20px 48px rgba(0, 0, 0, .26);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 88px; background: var(--bg); }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 8px; }
::-webkit-scrollbar-track        { background: var(--bg); }
::-webkit-scrollbar-thumb        { background: var(--accent-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover  { background: var(--muted); }
* { scrollbar-width: thin; scrollbar-color: var(--accent-2) var(--bg); }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at top right, rgba(255, 107, 44, .08), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #10141d 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0; }
button { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(13, 16, 21, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 16px;
}
.nav-inner > nav {
  display: flex;
  justify-content: center;
}

/* Brand group */
.brand-group {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

/* Brand */
.brand {
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -.03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-publi { color: var(--text); }
.brand-krea  { color: var(--accent); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  padding: 2px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 7px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
  line-height: 1;
}
.lang-btn.active {
  background: var(--accent);
  color: #fff;
}
.lang-btn:not(.active):hover { color: var(--text); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: .95rem;
}
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 600; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px 6px;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background .18s;
}
.hamburger:hover { background: rgba(255,255,255,.06); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .94rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 22px rgba(255, 107, 44, .30);
}
.btn-primary:hover {
  background: #ff7d44;
  box-shadow: 0 8px 28px rgba(255, 107, 44, .40);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .025);
}
.btn-secondary:hover { background: rgba(255, 255, 255, .055); }

.btn-lg { min-height: 54px; padding: 0 30px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--accent-2);
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.tag-orange { background: rgba(255,107,44,.12); color: var(--accent); border: 1px solid rgba(255,107,44,.2); }
.tag-gold   { background: rgba(255,209,102,.1); color: var(--accent-2); border: 1px solid rgba(255,209,102,.18); }
.tag-green  { background: rgba(125,211,166,.1); color: var(--success); border: 1px solid rgba(125,211,166,.2); }

/* ══════════════════════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════════════════════ */
section { padding: 60px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
}
.section-head .section-sub {
  color: var(--muted);
  max-width: 50ch;
  font-size: .96rem;
  text-align: right;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   GRIDS
══════════════════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }

/* ══════════════════════════════════════════════════════════════
   CARD
══════════════════════════════════════════════════════════════ */
.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: border-color .22s ease, transform .22s ease;
}
.card:hover {
  border-color: rgba(255, 255, 255, .13);
  transform: translateY(-2px);
}
.card h3 {
  font-size: 1.1rem;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: .96rem; }
.card-gradient {
  background: linear-gradient(145deg, rgba(255,107,44,.09), var(--panel));
  border-color: rgba(255,107,44,.18);
  position: relative;
  overflow: hidden;
}

/* ── Testimonial cards ───────────────────────────────────────── */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--panel-2);
}
.testimonial-stars {
  color: var(--accent-2);
  font-size: 1.1rem;
  letter-spacing: .08em;
}
.testimonial-quote {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testimonial-author strong {
  font-size: .96rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: .84rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero { padding: 80px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: .94;
  letter-spacing: -.065em;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

/* Proof cards */
.proof-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.proof-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 14px 16px;
  transition: border-color .2s;
}
.proof-card:hover { border-color: rgba(255,107,44,.28); }
.proof-card strong { display: block; font-size: .98rem; letter-spacing: -.02em; margin-bottom: 4px; }
.proof-card span { color: var(--muted); font-size: .86rem; line-height: 1.45; }

/* Hero visual / reel frame */
.hero-visual {
  background: radial-gradient(circle at top right, rgba(255,107,44,.2), transparent 40%), var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  width: 100%;
  position: relative;
  background: #0b0f15;
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,14,.75) 0%, rgba(5,8,14,.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
}
.hero-frame-overlay p {
  font-weight: 700;
  font-size: .96rem;
  color: #fff;
}
.hero-frame-overlay span { font-size: .82rem; color: var(--muted); }

/* Play icon */
.play-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,107,44,.85);
  border: 2px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}
.play-icon:hover { transform: scale(1.08); background: var(--accent); }
.play-icon svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }

/* ══════════════════════════════════════════════════════════════
   LOCAL SEO STRIP
══════════════════════════════════════════════════════════════ */
.local-seo-strip {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 28px 34px;
}
.local-seo-strip h2 {
  font-size: 1.2rem;
  letter-spacing: -.025em;
  margin-bottom: 8px;
}
.local-seo-strip p { color: var(--muted); font-size: .97rem; max-width: 80ch; }

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.service-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: .93rem;
}
.service-list li { margin-bottom: 7px; }
.price-badge {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  background: rgba(255,107,44,.12);
  border: 1px solid rgba(255,107,44,.24);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.price-badge:hover {
  background: rgba(255,107,44,.22);
  border-color: rgba(255,107,44,.5);
}
.service-tier {
  display: flex;
  flex-direction: column;
}
.service-tier .price-badge {
  margin-top: auto;
  align-self: flex-start;
}
.popular-badge {
  position: absolute;
  top: 18px;
  right: -30px;
  width: 120px;
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   GROWTH SYSTEM
══════════════════════════════════════════════════════════════ */
.growth-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.growth-card-inner h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.growth-card-inner p { color: var(--muted); margin-bottom: 14px; font-size: .97rem; }

/* ══════════════════════════════════════════════════════════════
   RESULTS
══════════════════════════════════════════════════════════════ */
.result-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--accent-2);
  margin-bottom: 8px;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   WORK / PORTFOLIO
══════════════════════════════════════════════════════════════ */
.work-card { overflow: hidden; padding: 0; cursor: pointer; }
.work-thumb {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  background: var(--panel-2);
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.work-card:hover .work-thumb-overlay { opacity: 1; }
.work-copy { padding: 18px 20px 22px; }
.work-copy h3 { font-size: 1.05rem; letter-spacing: -.025em; margin-bottom: 8px; }
.work-copy p  { color: var(--muted); font-size: .92rem; line-height: 1.55; }

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════════ */
.step-no {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════════
   MAGAZINE / INSIGHTS
══════════════════════════════════════════════════════════════ */
.insight-card { overflow: hidden; padding: 0; }
.insight-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.insight-card:hover .insight-thumb img { transform: scale(1.04); }
.insight-body { padding: 18px 20px 22px; }
.insight-meta {
  display: block;
  color: var(--accent-2);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 8px;
}
.insight-body h3 {
  font-size: 1.04rem;
  letter-spacing: -.025em;
  margin-bottom: 8px;
  line-height: 1.38;
}
.insight-body p { color: var(--muted); font-size: .92rem; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 12px;
  transition: gap .18s ease;
}
.read-more:hover { gap: 9px; }

/* ══════════════════════════════════════════════════════════════
   ABOUT / STORY BLOCK  (index.html summary section)
══════════════════════════════════════════════════════════════ */
.story-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: stretch;
}
.founder-photo {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.initials-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff9a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.photo-label { color: var(--muted); font-size: .84rem; line-height: 1.5; }
.photo-label strong { display: block; color: var(--text); font-size: .92rem; margin-bottom: 2px; }

.story-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.story-kicker {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.story-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}
.story-lead {
  font-size: 1.04rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.65;
}
.story-body p {
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: 12px;
}
.story-body p:last-child { margin-bottom: 0; }
.quote-line {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════
   LEAD CAPTURE
══════════════════════════════════════════════════════════════ */
.lead-box {
  background: linear-gradient(135deg, rgba(255,107,44,.13), rgba(255,209,102,.07));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 38px 40px;
  box-shadow: var(--shadow);
}
.lead-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -.04em;
  margin-bottom: 10px;
}
.lead-box .lead-sub { color: var(--muted); max-width: 56ch; margin-bottom: 22px; }
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

/* ══════════════════════════════════════════════════════════════
   SHARED FORM INPUTS
══════════════════════════════════════════════════════════════ */
.input, .select-field, .textarea-field {
  width: 100%;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font: inherit;
  font-size: .96rem;
  transition: border-color .18s ease, background .18s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.input        { min-height: 50px; padding: 0 16px; }
.select-field {
  min-height: 50px;
  padding: 0 40px 0 16px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aeb8ca' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.select-field option { background: #1d2431; color: var(--text); }
.textarea-field { min-height: 120px; padding: 14px 16px; resize: vertical; line-height: 1.6; }
.input:focus, .select-field:focus, .textarea-field:focus {
  border-color: rgba(255,107,44,.5);
  background: rgba(255,255,255,.06);
}
.input::placeholder, .textarea-field::placeholder { color: #6e7d92; }

/* ══════════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, rgba(255,107,44,.13), rgba(255,209,102,.08));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 38px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: -.045em;
  margin-bottom: 10px;
}
.cta-band p { color: var(--muted); max-width: 48ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER  (inner pages: about.html, quote.html)
══════════════════════════════════════════════════════════════ */
.page-header {
  padding: 70px 0 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,44,.11), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.06em;
  margin-bottom: 14px;
}
.page-header .page-subtitle {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — FULL BIO
══════════════════════════════════════════════════════════════ */
.about-bio {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 480px;
  text-align: center;
  padding: 32px 24px;
  position: sticky;
  top: 90px;
}
.about-photo .initials-circle { width: 110px; height: 110px; font-size: 2.2rem; }
.avatar-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 107, 44, .35);
  flex-shrink: 0;
}
.about-photo-name { font-weight: 700; font-size: 1.08rem; color: var(--text); }
.about-photo-title { color: var(--muted); font-size: .9rem; }
.about-photo-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .86rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-top: 4px;
}

/* Bio content */
.bio-content {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.bio-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -.045em;
  margin-bottom: 6px;
}
.bio-tagline { color: var(--accent-2); font-weight: 700; margin-bottom: 24px; font-size: .96rem; }
.bio-text p {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.bio-text p:last-child { margin-bottom: 0; }
.bio-text .highlight { color: var(--text); font-weight: 600; }
.bio-quote {
  margin: 24px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255,107,44,.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--text);
}

/* Expertise grid */
.expertise-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Social links */
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s ease;
}
.social-link:hover {
  border-color: rgba(255,107,44,.4);
  color: var(--text);
  background: rgba(255,107,44,.06);
}
.social-icon { display: inline-flex; align-items: center; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   QUOTE FORM PAGE
══════════════════════════════════════════════════════════════ */
.quote-section { padding: 16px 0 80px; }
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
.quote-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: var(--shadow);
}
.quote-card h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.quote-card-sub { color: var(--muted); margin-bottom: 32px; font-size: .96rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--muted); }
.form-field label .required { color: var(--accent); margin-left: 2px; }
.form-field-full { grid-column: span 2; }
.form-submit { margin-top: 10px; }
.required-note { color: var(--muted); font-size: .82rem; margin-top: 14px; text-align: center; }

/* Quote sidebar */
.quote-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.sidebar-card h3 { font-size: 1rem; letter-spacing: -.02em; margin-bottom: 14px; }
.sidebar-card .popular-badge {
  position: static;
  display: inline-block;
  transform: none;
  width: auto;
  border-radius: 4px;
}
.sidebar-card p { color: var(--muted); font-size: .9rem; }
.package-item {
  position: relative;
  overflow: hidden;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
  transition: border-color .18s;
}
.package-item:last-child { margin-bottom: 0; }
.package-item:hover { border-color: rgba(255,107,44,.25); }
.package-item strong { display: block; font-size: .93rem; margin-bottom: 3px; }
.package-item span { color: var(--muted); font-size: .84rem; }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.trust-item:last-child { margin-bottom: 0; }
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  margin-top: 6px;
  flex-shrink: 0;
}
.trust-item p { color: var(--muted); font-size: .9rem; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { padding: 20px 0 40px; color: var(--muted); font-size: .92rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  flex-wrap: wrap;
}
.footer-left { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-dev-link { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer-dev-link:hover { color: var(--text); transition: color .18s; }
.footer-legal { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); }
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--text); transition: color .18s; }
.footer-legal span { opacity: .4; }
.footer-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a:hover { color: var(--text); transition: color .18s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr 1fr; }
  .grid-4          { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-block     { grid-template-columns: 1fr; }
  .founder-photo   { min-height: 280px; flex-direction: row; gap: 20px; padding: 24px; }
  .growth-card-inner { grid-template-columns: 1fr; }
  .about-bio       { grid-template-columns: 1fr; }
  .about-photo     { position: static; min-height: auto; flex-direction: row; padding: 24px 28px; }
  .quote-wrapper   { grid-template-columns: 1fr; }
  .quote-sidebar   { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ── Mobile ≤ 760px ── */
@media (max-width: 760px) {
  body { background-attachment: scroll; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 13, 19, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 2px;
  }
  .nav-links.open  { display: flex; }
  .nav-links li a  {
    display: block;
    padding: 11px 4px;
    font-size: .98rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .hamburger       { display: flex; }

  .hero            { padding: 48px 0 36px; }
  .hero-grid,
  .proof-row,
  .grid-2,
  .grid-3,
  .grid-4          { grid-template-columns: 1fr; }
  .hero-visual     { max-width: 300px; margin: 0 auto; }
  .hero-frame      { max-height: 380px; }

  .section-head    { flex-direction: column; align-items: flex-start; }
  .section-head .section-sub { text-align: left; }

  .lead-box        { padding: 28px 22px; }
  .lead-form       { grid-template-columns: 1fr; }
  .lead-form .btn  { width: 100%; }

  .cta-band        { flex-direction: column; align-items: flex-start; padding: 28px 24px; }

  .founder-photo   { flex-direction: column; min-height: 220px; }

  .footer-inner    { flex-direction: column; align-items: flex-start; }
  .footer-links    { flex-wrap: wrap; gap: 12px; }

  .about-photo     { flex-direction: column; text-align: center; }
  .about-bio       { grid-template-columns: 1fr; }
  .bio-content     { padding: 28px 24px; }

  .quote-card      { padding: 28px 22px; }
  .form-grid       { grid-template-columns: 1fr; }
  .form-field-full { grid-column: span 1; }
  .quote-sidebar   { grid-template-columns: 1fr; }
  .quote-wrapper   { grid-template-columns: 1fr; }

  .page-header     { padding: 48px 0 36px; }
}

/* ── Small mobile ≤ 440px ── */
@media (max-width: 440px) {
  .nav-actions .btn   { display: none; }
  .local-seo-strip    { padding: 20px; }
  .lead-box           { padding: 22px 18px; }
  .cta-band           { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES (Terms & Privacy)
══════════════════════════════════════════════════════════════ */
.legal-section { padding: 16px 0 80px; }
.legal-wrapper { max-width: 820px; margin: 0 auto; }
.legal-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 52px 56px;
  box-shadow: var(--shadow);
}
.legal-block { margin-bottom: 40px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-block p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.75;
  padding-left: 22px;
  margin-bottom: 12px;
}
.legal-block ul li { margin-bottom: 6px; }
.legal-block a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-block a:hover { color: var(--accent-2); }
.legal-block strong { color: var(--text); font-weight: 600; }

@media (max-width: 767px) {
  .legal-card { padding: 28px 22px; }
}
