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

:root {
  --black:   #0a0a0a;
  --white:   #f5f2eb;
  --yellow:  #FFD600;
  --red:     #E8272A;
  --blue:    #1B4FFF;
  --teal:    #00C9A7;
  --mid:     #1a1a1a;
  --border:  2px solid var(--black);
  --radius:  0px;
  --mono:    'Space Mono', monospace;
  --display: 'Bebas Neue', cursive;
  --body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: crosshair;
  min-width: 300px;
}

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

/* ─── NOISE OVERLAY ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

body .wrapper {
    max-width: 1400px;
    margin: auto;
    width: 100%;
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  max-width: 1400px;
    margin: auto;
    width: 100%;
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
}

.nav-links li a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 1.2rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s, color 0.15s;
}

.nav-links li a:hover { background: var(--yellow); color: var(--black); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--yellow) !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: crosshair;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    height: auto;
    border-bottom: 3px solid var(--yellow);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
}

/* ─── SECTIONS COMMON ───────────────────────────────────── */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: var(--border);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  
}

.hero-wrapper {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 5rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 3px solid var(--yellow);
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--yellow);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.hero-title .accent { color: var(--yellow); }
.hero-title .accent-red { color: var(--red); }

.hero-body {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(245,242,235,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid currentColor;
  cursor: crosshair;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover { background: var(--white); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  position: relative;
}

.hero-stat-block {
  border-bottom: 3px solid rgba(255,214,0,0.3);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-stat-block:last-child { border-bottom: none; }

.hero-stat-block::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0.06;
  right: -40px; top: -40px;
}

.stat-1::before { background: var(--yellow); }
.stat-2::before { background: var(--red); }

.stat-num {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.5);
}

.stat-desc {
  font-size: 0.95rem;
  color: rgba(245,242,235,0.6);
  margin-top: 0.5rem;
  line-height: 1.5;
  font-weight: 300;
}

.hero-geo {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.08;
}

/* bauhaus decorative cross */
.bauhaus-cross {
  position: absolute;
  right: 2rem; top: 2rem;
  width: 60px; height: 60px;
  opacity: 0.15;
}
.bauhaus-cross::before,
.bauhaus-cross::after {
  content: '';
  position: absolute;
  background: var(--yellow);
}
.bauhaus-cross::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.bauhaus-cross::after { height: 2px; width: 100%; top: 50%; transform: translateY(-50%); }

@media (max-width: 900px) {
  .hero-wrapper { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 3px solid var(--yellow); padding: 3rem 2rem; }
  .hero-right { grid-template-rows: auto auto; }
}

/* ─── AUDIT STRIPS (hero bottom) ────────────────────────── */
.audit-strip {
  background: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  padding: 12px 0;
}

.audit-strip-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}

.audit-strip-item {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--black);
  padding: 0 2.5rem;
  border-right: 2px solid rgba(0,0,0,0.2);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── WHO WE ARE ─────────────────────────────────────────── */
#team {
  background: var(--white);
  border-bottom: 3px solid var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 4rem;
  border: var(--border);
}

.team-card {
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.team-card:first-child { border-right: var(--border); }

.team-card::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  top: -60px; right: -60px;
  opacity: 0.07;
  transition: opacity 0.2s;
}

.card-tom::before { background: var(--blue); }
.card-john::before { background: var(--red); }

.team-card:hover::before { opacity: 0.14; }

.team-avatar {
  width: 72px; height: 72px;
  border: var(--border);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.card-tom .team-avatar { background: var(--blue); color: var(--white); }
.card-john .team-avatar { background: var(--red); color: var(--white); }

.team-name {
  font-family: var(--display);
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  position: relative;
}

.team-role {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  margin-bottom: 1.5rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(10,10,10,0.75);
  margin-bottom: 1.5rem;
}

.team-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1.5px solid var(--black);
  background: transparent;
  transition: background 0.15s, color 0.15s;
}

.tag:hover { background: var(--black); color: var(--white); }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card:first-child { border-right: none; border-bottom: var(--border); }
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
#process {
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--yellow);
}

#process .section-label { border-color: var(--yellow); color: var(--yellow); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 2px solid rgba(255,214,0,0.3);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 2px solid rgba(255,214,0,0.2);
  position: relative;
  transition: background 0.2s;
}

.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,214,0,0.05); }

.step-num {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.step-icon {
  width: 48px; height: 48px;
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.step-title {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.step-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245,242,235,0.65);
  font-weight: 300;
}

.process-delivery {
  grid-column: 1 / -1;
  border-top: 2px solid rgba(255,214,0,0.2);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.delivery-badge {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-size: 1.8rem;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.delivery-items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.delivery-item {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.65);
  border: 1px solid rgba(255,214,0,0.3);
  padding: 6px 14px;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 2px solid rgba(255,214,0,0.2); }
}

@media (max-width: 580px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 2px solid rgba(255,214,0,0.2); }
}

/* ─── POWERED BY ─────────────────────────────────────────── */
#powered {
  background: var(--teal);
  border-bottom: 3px solid var(--black);
  padding: 60px 0;
}

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

.powered-left .section-label { border-color: var(--black); color: var(--black); }

.powered-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.powered-title .underline-word {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.powered-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10,10,10,0.8);
  margin-bottom: 2rem;
}

.powered-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.powered-link:hover { opacity: 0.6; }

.powered-right {
  background: var(--black);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.powered-right::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  right: -60px; bottom: -60px;
  opacity: 0.3;
}

.powered-stat-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(0,201,167,0.3);
  margin-bottom: 1rem;
}

.powered-stat {
  flex: 1;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(0,201,167,0.3);
}
.powered-stat:last-child { border-right: none; }

.powered-stat .num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
}

.powered-stat .lbl {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.5);
  margin-top: 4px;
}

.powered-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.powered-feature-icon {
  width: 28px; height: 28px;
  background: var(--teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--black);
  font-weight: 700;
}

.powered-feature-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245,242,235,0.7);
}

@media (max-width: 768px) {
  .powered-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── PRICING ────────────────────────────────────────────── */
#pricing {
  background: var(--white);
  border-bottom: 3px solid var(--black);
}

.currency-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: var(--border);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 3rem;
}

.currency-btn {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  background: transparent;
  cursor: crosshair;
  border-right: var(--border);
  transition: background 0.15s, color 0.15s;
}

.currency-btn:last-child { border-right: none; }
.currency-btn.active { background: var(--black); color: var(--white); }
.currency-btn:not(.active):hover { background: var(--yellow); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}

.pricing-card {
  padding: 2.5rem;
  border-right: var(--border);
  position: relative;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:last-child { border-right: none; }

.pricing-card.featured {
  background: var(--black);
  color: var(--white);
}

.pricing-card-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.45);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-card-label { color: rgba(245,242,235,0.45); }

.pricing-card-name {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.pricing-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--red);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  transition: opacity 0.2s;
}

.pricing-price-symbol {
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.pricing-price-sub {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 2rem;
}

.pricing-divider {
  border: none;
  border-top: 1.5px solid rgba(10,10,10,0.15);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-divider { border-color: rgba(245,242,235,0.15); }

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px dotted rgba(10,10,10,0.12);
}

.pricing-card.featured .pricing-features li { border-color: rgba(245,242,235,0.12); }
.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '→';
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card.featured .pricing-features li::before { color: var(--teal); }

.btn-pricing {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px;
  border: 2px solid var(--black);
  background: transparent;
  cursor: crosshair;
  text-align: center;
  transition: all 0.15s;
  display: block;
  width: 100%;
}

.btn-pricing:hover { background: var(--black); color: var(--white); }
.pricing-card.featured .btn-pricing { border-color: var(--yellow); color: var(--yellow); }
.pricing-card.featured .btn-pricing:hover { background: var(--yellow); color: var(--black); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: var(--border); }
  .pricing-card:last-child { border-bottom: none; }
}

/* ─── CASE STUDIES ───────────────────────────────────────── */
#case-studies {
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--yellow);
}

#case-studies .section-label { border-color: var(--yellow); color: var(--yellow); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 2px solid rgba(255,214,0,0.2);
}

.case-card {
  padding: 2.5rem;
  border-right: 2px solid rgba(255,214,0,0.2);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.case-card:last-child { border-right: none; }
.case-card:hover { background: rgba(255,255,255,0.03); }

.case-num {
  font-family: var(--display);
  font-size: 6rem;
  opacity: 0.06;
  position: absolute;
  top: -1rem;
  right: 1rem;
  line-height: 1;
}

.case-sector {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.case-title {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.case-body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(245,242,235,0.6);
  margin-bottom: 1.5rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.case-metric {
  border: 1px solid rgba(255,214,0,0.2);
  padding: 0.75rem;
}

.case-metric .val {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--yellow);
  line-height: 1;
}

.case-metric .lbl {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.45);
  margin-top: 3px;
}

@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-card { border-right: none; border-bottom: 2px solid rgba(255,214,0,0.2); }
  .case-card:last-child { border-bottom: none; }
}

/* ── FAQ ── */
#faq{background:var(--white);border-bottom:3px solid var(--black)}
.faq-grid{display:grid;grid-template-columns:1fr 2fr;margin-top:4rem;border:var(--border)}
.faq-sidebar{padding:3rem 2.5rem;background:var(--yellow);border-right:var(--border);display:flex;flex-direction:column;justify-content:space-between}
.faq-sidebar-title{font-family:var(--display);font-size:2.8rem;line-height:.95;color:var(--black);margin-bottom:1.5rem}
.faq-sidebar-body{font-size:.9rem;line-height:1.65;color:rgba(10,10,10,.68);margin-bottom:2rem;flex:1}
.faq-sidebar-stat .num{font-family:var(--display);font-size:3.2rem;color:var(--black);line-height:1}
.faq-sidebar-stat .lbl{font-family:var(--mono);font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:rgba(10,10,10,.5);margin-top:4px}
.faq-sidebar-stat{border-top:2px solid rgba(10,10,10,.2);padding-top:1.5rem}
.faq-list{display:flex;flex-direction:column}
.faq-item{border-bottom:var(--border)}
.faq-item:last-child{border-bottom:none}
.faq-q{
  width:100%;background:none;border:none;text-align:left;
  padding:1.75rem 2rem;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  cursor:crosshair;transition:background .15s;
}
.faq-q:hover{background:rgba(10,10,10,.03)}
.faq-item.open .faq-q{background:var(--black)}
.faq-q-text{font-family:var(--display);font-size:1.3rem;letter-spacing:.02em;color:var(--black);line-height:1.1;transition:color .15s}
.faq-item.open .faq-q-text{color:var(--yellow)}
.faq-icon{
  width:30px;height:30px;border:2px solid var(--black);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--mono);font-size:1.1rem;font-weight:700;color:var(--black);
  transition:all .25s;line-height:1;
}
.faq-item.open .faq-icon{background:var(--yellow);border-color:var(--yellow);transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .25s ease;padding:0 2rem}
.faq-item.open .faq-answer{max-height:400px;padding:0 2rem 2rem}
.faq-answer-inner{border-left:3px solid var(--yellow);padding-left:1.25rem}
.faq-answer p{font-size:.93rem;line-height:1.75;color:rgba(10,10,10,.7)}
.faq-answer strong{color:var(--black);font-weight:500}
@media(max-width:700px){
  .faq-grid{grid-template-columns:1fr}
  .faq-sidebar{border-right:none;border-bottom:var(--border)}
}

/* ─── CONTACT ────────────────────────────────────────────── */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border: var(--border);
  margin-top: 4rem;
}

.contact-sidebar {
  padding: 3rem 2rem;
  background: var(--black);
  color: var(--white);
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-sidebar-title {
  font-family: var(--display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--yellow);
}

.contact-sidebar-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,242,235,0.65);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item .info-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-info-item .info-val {
  font-size: 0.9rem;
  color: rgba(245,242,235,0.8);
}

.contact-form-wrap { padding: 3rem; }

/* Form styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--body);
  font-size: 0.92rem;
  padding: 12px 14px;
  border: var(--border);
  background: transparent;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  background: rgba(27,79,255,0.03);
}

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

/* Domain order builder */
.order-builder {
  border: var(--border);
  margin-bottom: 1.5rem;
}

.order-header {
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-rows { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

.order-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.order-row select,
.order-row input { margin-bottom: 0; }

.remove-row-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.15s;
}

.remove-row-btn:hover { background: #c41e21; }

.add-domain-btn {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1.5px solid var(--black);
  background: transparent;
  cursor: crosshair;
  margin: 0 1rem 1rem;
  transition: background 0.15s;
}

.add-domain-btn:hover { background: var(--black); color: var(--white); }

/* Running total */
.order-total {
  background: var(--yellow);
  border: var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.order-total-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.order-total-amount {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--black);
}

.breakdown-list {
  padding: 0;
  list-style: none;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.breakdown-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(10,10,10,0.15);
  color: rgba(10,10,10,0.7);
}

.breakdown-list li:last-child { border-bottom: none; }

.submit-btn {
  width: 100%;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border: var(--border);
  cursor: crosshair;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.submit-btn:hover { background: var(--blue); border-color: var(--blue); }

.success-msg {
  display: none;
  background: var(--teal);
  padding: 2rem;
  text-align: center;
  border: var(--border);
  margin-top: 1rem;
}

.success-msg.show { display: block; }

.success-msg .success-title {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.success-msg p {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { border-right: none; border-bottom: var(--border); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .order-row { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--yellow);
  max-width: 1400px;
    margin: auto;
    width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.footer-col:last-child { border-right: none; }

.footer-logo {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--red); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245,242,235,0.5);
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.35);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(245,242,235,0.6);
  transition: color 0.15s;
}

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

.footer-bottom {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(2) { border-right: none; }
  .footer-col:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }

/* ─── BAUHAUS DECORATIVES ─────────────────────────────────── */
.bauhaus-bar {
  height: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
    margin: auto;
    width: 100%;
}
.bauhaus-bar div:nth-child(1) { background: var(--black); }
.bauhaus-bar div:nth-child(2) { background: var(--red); }
.bauhaus-bar div:nth-child(3) { background: var(--yellow); }
.bauhaus-bar div:nth-child(4) { background: var(--blue); }

/* Geometric accent */
.geo-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid currentColor;
  opacity: 0.15;
  position: absolute;
}

/* ─── SCROLL INDICATOR ─────────────────────────────────────
#scroll-progress {
  position: fixed;
  top: 56px; left: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 999;
  width: 0%;
  transition: width 0.1s;
  
  
} */