:root {
  --bg: #0f1115;
  --panel: #151923;
  --panel-2: #1d2330;
  --text: #f4f5f7;
  --muted: #b9c0cb;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #d9a441;
  --accent-2: #f6d28a;
  --success: #dff8e8;
  --danger: #ffe4d7;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.15), transparent 28%),
    radial-gradient(circle at 0% 30%, rgba(76, 122, 255, 0.12), transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #9da7b4;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  background: rgba(217, 164, 65, 0.14);
  border-bottom: 1px solid rgba(217, 164, 65, 0.22);
  color: var(--accent-2);
  font-size: 0.92rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(15, 17, 21, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.25), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(217, 164, 65, 0.28);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand small {
  color: var(--muted);
}

.brand strong {
  font-size: 1rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.desktop-nav a {
  color: var(--muted);
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  padding: 0.7rem;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(15, 17, 21, 0.97);
}

.mobile-menu .container {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 0 1.25rem;
}

.mobile-menu a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.section {
  padding: 4.8rem 0;
}

.hero {
  padding: 5.2rem 0 3.8rem;
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
}

.hero-card,
.panel,
.service-card,
.process-card,
.pricing-card,
.proof-card,
.form-card,
.faq-item,
.contact-card,
.kpi-card,
.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.3);
  background: rgba(217, 164, 65, 0.13);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-copy p,
.section-copy p,
.card-copy p,
.muted {
  color: var(--muted);
}

.cta-row,
.button-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn,
button[type="submit"],
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn,
button[type="submit"] {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #111318;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn:hover,
button[type="submit"]:hover {
  filter: brightness(1.03);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

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

.kpi-card {
  padding: 1.15rem;
}

.kpi-card strong {
  display: block;
  font-size: 1.5rem;
}

.kpi-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  gap: 1.5rem;
}

.pricing-grid,
.services-grid,
.process-grid,
.proof-grid,
.contact-grid,
.quote-grid {
  display: grid;
  gap: 1rem;
}

.pricing-card,
.service-card,
.process-card,
.proof-card,
.form-card,
.contact-card,
.quote-card {
  padding: 1.35rem;
}

.service-card ul,
.process-card ul,
.proof-card ul,
.checklist,
.quote-card ul {
  padding-left: 1.15rem;
  margin: 0.85rem 0 0;
}

.service-card li,
.process-card li,
.proof-card li,
.checklist li,
.quote-card li {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.price-tag {
  display: inline-flex;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  color: var(--accent-2);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.two-col {
  display: grid;
  gap: 1.3rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.tiny {
  font-size: 0.86rem;
  color: #9ba4b0;
}

.estimate-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  display: inline-flex;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-visual {
  height: 180px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.proof-visual::before,
.proof-visual::after {
  position: absolute;
  top: 1rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-visual::before {
  content: 'Before';
  left: 1rem;
  color: rgba(255, 255, 255, 0.74);
}

.proof-visual::after {
  content: 'After';
  right: 1rem;
  color: var(--accent-2);
}

.proof-visual span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 50%, rgba(217, 164, 65, 0.12) 50% 100%);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 1.15rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}

.faq-item .answer {
  display: none;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.faq-item .icon {
  color: var(--accent-2);
}

.notice {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid rgba(217, 164, 65, 0.24);
  color: var(--accent-2);
}

.service-hero {
  padding-top: 4.8rem;
}

.breadcrumbs {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: #9ba4b0;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.contact-card a.link,
.footer a {
  color: var(--accent-2);
}

.footer {
  padding: 2rem 0 5.5rem;
  color: var(--muted);
}

.footer-top {
  display: grid;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(12, 14, 18, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.sticky-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
}

.highlight {
  color: var(--accent-2);
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-grid,
  .split,
  .two-col,
  .contact-grid,
  .quote-grid {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: start;
  }

  .pricing-grid,
  .services-grid,
  .process-grid,
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-top {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .sticky-cta .container {
    grid-template-columns: repeat(3, max-content);
    justify-content: end;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: center;
  }

  .hero-panel {
    padding: 2.3rem;
  }
}


.brand-mark--image {
  background: #f0ede6;
  border-color: rgba(255, 255, 255, 0.12);
  padding: 0.35rem;
}

.brand-mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 22px;
  background: #f0ede6;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.logo-plate--compact {
  padding: 0.45rem 0.65rem;
}

.logo-plate--footer,
.logo-plate--panel {
  width: min(100%, 360px);
}

.hero-logo {
  margin: 1rem 0 1.35rem;
}

.hero-logo-image,
.footer-logo,
.brand-proof-logo {
  width: 100%;
  height: auto;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.proof-card--photo,
.project-showcase-card {
  overflow: hidden;
}

.proof-photo {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.gallery-strip figure,
.gallery-card {
  margin: 0;
}

.gallery-strip img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-strip figcaption,
.gallery-card figcaption {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.brand-proof-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

@media (min-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


.hp-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* --- refinement pass --- */
:root {
  --bg: #090909;
  --panel: #111111;
  --panel-2: #151515;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: rgba(255,255,255,0.10);
  --accent: #ffffff;
  --accent-2: #ffffff;
  --success: #e9f9ef;
  --danger: #fff2e8;
  --radius: 18px;
  --shadow: 0 10px 28px rgba(0,0,0,0.25);
}
body {
  background: #090909;
  color: var(--text);
}
.topbar { display:none; }
.site-header {
  background: rgba(9,9,9,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-mark {
  background: #fff;
  border: 1px solid rgba(255,255,255,0.85);
}
.brand-mark--image img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav a, .mobile-menu a { color: #d4d4d4; }
.desktop-nav a:hover, .desktop-nav a.active, .mobile-menu a:hover { color: #fff; }
.btn, button[type="submit"] {
  background: #fff;
  color: #090909;
  border: 1px solid #fff;
  border-radius: 14px;
  font-weight: 800;
}
.btn:hover, button[type="submit"]:hover { background:#090909; color:#fff; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
}
.btn-secondary:hover { border-color:#fff; }
.hero { padding: 4rem 0 2.4rem; }
.hero-logo { max-width: 360px; margin: 1.1rem 0 0.9rem; }
.logo-plate, .hero-card, .panel, .service-card, .process-card, .pricing-card, .proof-card, .form-card, .faq-item, .contact-card, .kpi-card, .quote-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.section { padding: 4rem 0; }
.section-dark { background: #0d0d0d; border-color: rgba(255,255,255,0.06); }
.badge, .price-tag {
  background:#111111;
  color:#fff;
  border:1px solid rgba(255,255,255,0.16);
}
.notice {
  background:#121212;
  color:#d9d9d9;
  border:1px solid rgba(255,255,255,0.12);
}
input, select, textarea {
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 1px #fff inset;
}
.quote-compact-intro { margin-bottom: 1.1rem; }
.estimate-result {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background:#0d0d0d;
  margin-top: 0.35rem;
}
.estimate-inline {
  display:flex;
  flex-wrap:wrap;
  gap:0.55rem;
  margin-top:0.85rem;
}
.estimate-pill {
  display:inline-flex;
  padding:0.4rem 0.7rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  color:#e8e8e8;
  font-size:0.88rem;
}
.hero-proof { display:grid; gap:0.8rem; }
.kpi-card { padding: 1rem 1rem; }
.pricing-grid, .services-grid, .proof-grid { gap: 1rem; }
.checklist { padding-left: 1.1rem; }
.checklist li { margin-bottom: 0.55rem; }
.contact-grid { gap: 1rem; }
.aiblock {
  display:grid;
  gap:1rem;
}
.aiblock .panel { padding:1.25rem; }
.sticky-cta {
  background: rgba(9,9,9,0.95);
  border-top:1px solid rgba(255,255,255,0.08);
}
.sticky-cta .container {
  grid-template-columns: 1fr 1fr;
}
.sticky-cta .container a:last-child { display:none; }
.footer { padding-bottom: 5rem; }
@media (max-width: 759px) {
  .site-header .container { align-items:flex-start; }
  .header-actions { gap:0.5rem; }
  .header-actions .btn-secondary { padding:0.8rem 0.9rem; text-align:center; }
  .hero-logo { max-width: 300px; }
  h1 { font-size: 2.5rem; }
  .section { padding: 3.3rem 0; }
}


.brand-panel { position: relative; overflow: hidden; }
.brand-mark-wrap { display:flex; align-items:center; justify-content:flex-start; margin: 0.9rem 0 1rem; }
.brand-mark-wrap.subtle-mark { margin-top: 0.6rem; margin-bottom: 0.8rem; }
.brand-mark { max-width: 270px; width: 100%; height: auto; filter: drop-shadow(0 12px 34px rgba(0,0,0,0.28)); }
.brand-submark { max-width: 220px; width: 100%; height: auto; opacity: 0.88; filter: drop-shadow(0 10px 26px rgba(0,0,0,0.22)); }
.fine-print { font-size: 0.74rem; line-height: 1.55; letter-spacing: 0.03em; opacity: 0.72; margin-top: 1rem; text-transform: none; }
.fine-print--brand { opacity: 0.78; }


/* AxiomShield Lite */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #a5a5a5;
  margin-top: 0.2rem;
}
.consent-check input {
  margin-top: 0.2rem;
  width: auto;
}


.assessment-result {
  min-height: auto;
}

@media (min-width: 900px) {
  #assessment .split,
  #calculator .split {
    align-items: start;
  }
}

#assessment .form-card,
#calculator .form-card {
  position: relative;
}

.notice + .cta-row {
  margin-top: 1.1rem;
}
