/* ============================================
   Renovation Builders of Auckland — Hyperframe
   Industrial Dark + Lime (#CBFB45)
   Archivo font family
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800&display=swap');

/* --- TOKENS --- */
:root {
  --c-lime: #CBFB45;
  --c-lime-hover: #B8E63D;
  --c-lime-dim: #70833C;
  --c-bg: #151517;
  --c-bg-alt: #1E1E21;
  --c-bg-card: #222225;
  --c-text: #F3F3F3;
  --c-text-muted: #9B9B9F;
  --c-text-on-lime: #151517;
  --c-border: #2A2A2E;
  --c-border-light: #3A3A3E;

  --f-heading: 'Archivo', 'Helvetica Neue', Helvetica, sans-serif;
  --f-body: 'Archivo', 'Helvetica Neue', Helvetica, sans-serif;

  --fs-display: clamp(48px, 7vw, 88px);
  --fs-h1: clamp(36px, 5vw, 64px);
  --fs-h2: clamp(28px, 4vw, 44px);
  --fs-h3: clamp(22px, 3vw, 32px);
  --fs-body: 18px;
  --fs-sm: 15px;
  --fs-xs: 13px;

  --pad-section: clamp(80px, 10vw, 140px);
  --pad-container: clamp(20px, 4vw, 48px);
  --max-w: 1200px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.3s var(--ease);
  --t-med: 0.5s var(--ease);
  --t-slow: 0.8s var(--ease);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- UTILITIES --- */
.label {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-lime);
}
.lime { color: var(--c-lime); }
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  background: var(--c-lime);
  color: var(--c-text-on-lime);
  border: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn:hover {
  background: var(--c-lime-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-light);
}
.btn-outline:hover {
  background: var(--c-lime);
  color: var(--c-text-on-lime);
  border-color: var(--c-lime);
}
.btn-dark {
  background: var(--c-bg);
  color: var(--c-text);
}
.btn-dark:hover { background: var(--c-bg-alt); }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-container);
  transition: background var(--t-fast), padding var(--t-fast);
}
.site-header.scrolled {
  background: rgba(21, 21, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px var(--pad-container);
  border-bottom: 1px solid var(--c-border);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo-icon {
  width: 28px;
  height: 28px;
  position: relative;
}
.header-logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-lime);
  clip-path: polygon(50% 0%, 100% 38%, 80% 100%, 20% 100%, 0% 38%);
}
.header-logo-text {
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-phone {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--c-text-muted);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
  position: relative;
}
.header-nav a:hover,
.header-nav a.active { color: var(--c-text); }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-lime);
}
.header-cta {
  font-size: 14px;
  padding: 10px 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-text);
  transition: var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--f-heading);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  color: var(--c-text);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--c-lime); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-container);
  padding-top: 120px;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 21, 23, 0.95) 0%,
    rgba(21, 21, 23, 0.6) 40%,
    rgba(21, 21, 23, 0.3) 70%,
    rgba(21, 21, 23, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-label { margin-bottom: 24px; }
.hero h1 {
  font-family: var(--f-heading);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--pad-container);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--c-border-light);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-lime);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* ========== TAGLINE BAR ========== */
.tagline-bar {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
}
.tagline-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tagline-text {
  font-family: var(--f-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.tagline-steps {
  display: flex;
  gap: 32px;
}
.tagline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.tagline-step-num {
  font-family: var(--f-heading);
  font-weight: 700;
  color: var(--c-lime);
  font-size: 16px;
}

/* ========== REIMAGINED (ABOUT) SECTION ========== */
.reimagined-section {
  padding: var(--pad-section) 0;
}
.reimagined-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reimagined-text .label { margin-bottom: 16px; display: block; }
.reimagined-text h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.reimagined-text p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
  max-width: 480px;
}
.reimagined-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.reimagined-image img { width: 100%; height: 100%; object-fit: cover; }
.reimagined-image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--c-border);
  z-index: 1;
  pointer-events: none;
}

/* ========== SPEED STAT ========== */
.speed-stat {
  background: var(--c-bg-alt);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.speed-stat-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}
.speed-number {
  font-family: var(--f-heading);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--c-lime);
}
.speed-label {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.speed-label span { display: block; color: var(--c-text-muted); }

/* ========== PROCESS SECTION ========== */
.process-section {
  padding: var(--pad-section) 0;
}
.process-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  margin-bottom: 64px;
}
.process-header .label { margin-bottom: 16px; display: block; }
.process-header h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.process-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.process-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 32px 24px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.process-card:hover {
  background: var(--c-bg-card);
  border-color: var(--c-lime-dim);
}
.process-card-num {
  font-family: var(--f-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--c-lime);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.5;
  transition: opacity var(--t-fast);
}
.process-card:hover .process-card-num { opacity: 1; }
.process-card h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.process-card p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ========== BENEFITS / SERVICES GRID ========== */
.benefits-section {
  padding: var(--pad-section) 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.benefits-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  margin-bottom: 64px;
}
.benefits-header .label { margin-bottom: 16px; display: block; }
.benefits-header h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.benefits-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.benefit-card {
  padding: 36px 28px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  transition: var(--t-fast);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--c-lime);
  transition: height var(--t-med);
}
.benefit-card:hover::before { height: 100%; }
.benefit-card:hover { border-color: var(--c-border-light); }
.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-lime);
  border: 1px solid var(--c-border);
}
.benefit-card h3 {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefit-card p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ========== SERVICE IMAGE CARDS ========== */
.service-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-img-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.service-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-img-card:hover img { transform: scale(1.04); }
.service-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,21,23,0.85) 0%, transparent 60%);
}
.service-img-card-info {
  position: relative;
  z-index: 1;
}
.service-img-card-info h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 4px;
}
.service-img-card-info span {
  font-size: var(--fs-sm);
  color: var(--c-lime);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: var(--pad-section) 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
}
.testimonials-inner .label { margin-bottom: 48px; display: block; }
.testimonial-card { display: none; }
.testimonial-card.active { display: block; }
.testimonial-quote {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  max-width: 800px;
}
.testimonial-author {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-weight: 400;
}
.testimonial-author strong {
  color: var(--c-text);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.testimonial-nav {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}
.testimonial-nav button {
  width: 32px;
  height: 3px;
  background: var(--c-border-light);
  transition: background var(--t-fast), width var(--t-fast);
}
.testimonial-nav button.active {
  background: var(--c-lime);
  width: 48px;
}

/* ========== COST / ABOUT SPLIT ========== */
.cost-section {
  padding: var(--pad-section) 0;
}
.cost-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cost-text .label { margin-bottom: 16px; display: block; }
.cost-text h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cost-text p {
  color: var(--c-text-muted);
  max-width: 480px;
}
.cost-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.cost-image img { width: 100%; height: 100%; object-fit: cover; }

/* ========== CTA ========== */
.cta-section {
  padding: var(--pad-section) 0;
  background: var(--c-lime);
  color: var(--c-text-on-lime);
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  text-align: center;
}
.cta-inner .label { color: var(--c-lime-dim); margin-bottom: 16px; display: block; }
.cta-inner h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--c-text-on-lime);
}
.cta-inner p {
  color: var(--c-lime-dim);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-phone {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--c-text-on-lime);
  display: block;
  margin-bottom: 24px;
  transition: opacity var(--t-fast);
}
.cta-phone:hover { opacity: 0.7; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-container) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.footer-logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-lime);
  clip-path: polygon(50% 0%, 100% 38%, 80% 100%, 20% 100%, 0% 38%);
}
.footer-logo-text {
  font-family: var(--f-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-brand > p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  max-width: 280px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--c-lime); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--pad-container);
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
.footer-bottom a:hover { color: var(--c-text); }

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
  background: var(--c-bg-alt);
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--c-border);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
}
.page-hero .label { margin-bottom: 16px; display: block; }
.page-hero h1 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ========== ABOUT PAGE ========== */
.about-intro {
  padding: var(--pad-section) 0;
}
.about-intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-intro-text h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-intro-text p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.about-intro-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; }

/* Values */
.values-section {
  padding: var(--pad-section) 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
}
.values-inner .label { margin-bottom: 16px; display: block; }
.values-inner > h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.value-card-num {
  font-family: var(--f-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-lime);
  line-height: 1;
  opacity: 0.5;
}
.value-card h3 {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: var(--pad-section) 0;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-container);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-info > p {
  color: var(--c-text-muted);
  margin-bottom: 36px;
}
.contact-detail {
  margin-bottom: 24px;
}
.contact-detail .label { margin-bottom: 6px; display: block; }
.contact-detail a,
.contact-detail p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}
.contact-detail a:hover { color: var(--c-lime); }
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 300;
  transition: border-color var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--c-lime);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { align-self: flex-start; }
#formStatus {
  font-size: var(--fs-sm);
  color: var(--c-lime);
  margin-top: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .reimagined-inner,
  .cost-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-inner { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-nav, .header-cta, .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { min-height: 90dvh; }
  .hero h1 { font-size: clamp(32px, 8vw, 56px); }
  .hero-scroll { display: none; }
  .tagline-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tagline-steps { flex-wrap: wrap; gap: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .speed-stat-inner { flex-direction: column; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}