/* ══════════════════════════════════════════════════════
   EV Charger Installers Australia
   Porsche.com–inspired: dark, bold, electric, precise
   ══════════════════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --base:      #141414;
  --surface:   #1a1a1a;
  --card:      #222222;
  --card-2:    #2a2a2a;
  --border:    #333333;
  --border-lt: #3d3d3d;

  /* Text */
  --white:  #ffffff;
  --text:   #e8e8e8;
  --muted:  #a0a0a0;
  --subtle: #606060;

  /* Electric blue accent */
  --blue:       #0EA5E9;
  --blue-dark:  #0284C7;
  --blue-glow:  rgba(14,165,233,0.15);
  --blue-xglow: rgba(14,165,233,0.06);

  /* Fonts */
  --head: 'Syne', 'Inter', sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --fast: .18s;
  --med:  .35s;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--base);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

/* ─── LAYOUT ─────────────────────────────────────── */
.container        { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 800px;  margin: 0 auto; padding: 0 48px; }
.section    { padding: 120px 0; }
.section-sm { padding: 72px 0; }

/* ─── TYPOGRAPHY ──────────────────────────────────── */
.display {
  font-family: var(--head);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--white);
}
.display-sm {
  font-family: var(--head);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--white);
}
h2 {
  font-family: var(--head);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
h3 {
  font-family: var(--head);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--white);
}
h4 {
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--white);
}

.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400; color: var(--muted); line-height: 1.7;
}
.body-sm  { font-size: 14px; color: var(--muted); line-height: 1.65; }

.label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); display: block; margin-bottom: 16px;
}
.label-muted { color: var(--subtle); }

.section-num {
  font-family: var(--head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle);
  margin-bottom: 40px; display: flex; align-items: center; gap: 12px;
}
.section-num::before {
  content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--border-lt);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0 28px; height: 48px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: all var(--fast) var(--ease);
  text-decoration: none;
}
/* Primary - solid blue */
.btn-blue {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(14,165,233,0.35); }

/* Ghost - white outline */
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.05); }

/* Dark on light backgrounds */
.btn-dark {
  background: var(--base); color: var(--white);
  border-color: var(--base);
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-1px); }

/* Outline on light bg */
.btn-outline {
  background: transparent; color: var(--base);
  border-color: rgba(0,0,0,0.2);
}
.btn-outline:hover { border-color: var(--base); background: rgba(0,0,0,0.04); }

.btn-lg { height: 56px; padding: 0 36px; font-size: 14px; }
.btn-sm { height: 38px; padding: 0 20px; font-size: 12px; }

/* Text + arrow */
.btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); cursor: pointer; border: none; background: none;
  transition: gap var(--fast) var(--ease);
}
.btn-arrow:hover { gap: 14px; }
.btn-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-arrow.blue { color: var(--blue); }

/* ─── NAVIGATION ──────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  transition: background var(--med) var(--ease), border var(--med) var(--ease);
}
#navbar.over {
  background: transparent;
  border-bottom: 1px solid transparent;
}
#navbar.filled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 64px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--head); font-size: 15px; font-weight: 800;
  color: var(--white); letter-spacing: 0.04em; text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo-bolt {
  width: 32px; height: 32px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-bolt svg { width: 16px; height: 16px; fill: var(--white); }

.nav-links {
  list-style: none; display: flex; gap: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  display: block; padding: 0 18px; height: 64px; line-height: 64px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px;
  background: var(--blue); transform: scaleX(0); transition: transform var(--fast) var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.current::after { transform: scaleX(1); }
.nav-links a.current { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  transition: color var(--fast);
}
.nav-phone:hover { color: var(--white); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: all var(--fast) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--base);
  flex-direction: column; padding: 88px 48px 48px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--head); font-size: 36px; font-weight: 800;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--white); padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block; transition: color var(--fast);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav-footer { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; height: 100svh;
  min-height: 640px; overflow: hidden;
  display: flex; align-items: flex-end;
  background: var(--base);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 10s ease;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.45) 30%, rgba(8,8,8,0.1) 60%, transparent 100%),
    linear-gradient(to right, rgba(8,8,8,0.5) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 48px 80px;
  max-width: 900px;
}
.hero-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.hero-label::before {
  content: ''; width: 28px; height: 1px; background: var(--blue);
}
.hero-content .display { margin-bottom: 24px; }
.hero-content .lead { max-width: 480px; margin-bottom: 40px; color: rgba(255,255,255,0.55); font-size: 17px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── SECTION HERO (interior pages) ──────────────── */
.page-hero {
  min-height: 380px; display: flex; align-items: flex-end;
  padding: 130px 0 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 560px; }

/* Background number decoration */
.page-hero-bg-num {
  position: absolute; right: 8%; bottom: -40px; z-index: 1;
  font-family: var(--head); font-size: 240px; font-weight: 800;
  color: var(--border); line-height: 1; user-select: none; pointer-events: none;
  letter-spacing: -0.05em;
}

/* ─── BRANDS BAR ─────────────────────────────────── */
.brand-row {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.brand-row-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); white-space: nowrap;
}
.brand-names { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.brand-name {
  font-family: var(--head); font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); opacity: 0.75; transition: opacity var(--fast);
}
.brand-name:hover { opacity: 1; }

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background var(--fast);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--card); }
.stat-cell:hover .stat-line { transform: scaleX(1); }
.stat-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.stat-num {
  font-family: var(--head); font-size: clamp(40px,4vw,64px); font-weight: 800;
  letter-spacing: -0.03em; color: var(--white); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-lbl { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--subtle); }

/* ─── SECTION HEADERS ─────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--muted); font-size: 16px; max-width: 520px; line-height: 1.7; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ─── CARD BASE ───────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--med), box-shadow var(--med), transform var(--med);
}
.card:hover { border-color: var(--border-lt); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.card-img { overflow: hidden; background: var(--card-2); }
.card-img img { transition: transform .65s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px 28px 24px; }
.card-body h3 { margin-bottom: 10px; font-size: 18px; }
.card-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.card-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--subtle);
}

/* Service card */
.svc-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color var(--med), box-shadow var(--med), transform var(--med);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.svc-card:hover { border-color: var(--border-lt); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 48px; height: 48px; background: var(--blue-xglow);
  border: 1px solid rgba(14,165,233,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.svc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

/* ─── FEATURE SPLIT ───────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
}
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.split-media { position: relative; overflow: hidden; min-height: 540px; background: var(--card); }
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; position: absolute; inset: 0; transition: transform .7s var(--ease); }
.split-media:hover img { transform: scale(1.04); }
.split-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.2), transparent);
}
.split-body {
  background: var(--surface); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
}
.split-body h2 { margin-bottom: 20px; }
.split-body p  { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; max-width: 420px; }
.split-body ul {
  list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px;
}
.split-body ul li {
  font-size: 14px; color: var(--text); display: flex; gap: 12px; align-items: flex-start; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.split-body ul li:last-child { border-bottom: none; }
.split-body ul li svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; margin-top: 2px; }

/* ─── PORTFOLIO ───────────────────────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.portfolio-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--card); cursor: pointer;
}
.portfolio-item.wide { grid-column: span 2; aspect-ratio: auto; }
.portfolio-item img { transition: transform .6s var(--ease); }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
  opacity: 0; transition: opacity var(--med) var(--ease);
  display: flex; align-items: flex-end; padding: 28px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.p-info .p-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.p-info .p-name { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--white); text-transform: uppercase; }

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonial {
  text-align: center; max-width: 800px; margin: 0 auto; padding: 24px 0;
}
.t-quote-mark {
  font-family: 'Georgia', serif; font-size: 80px; line-height: 0.5;
  color: var(--blue); margin-bottom: 24px; display: block; opacity: 0.6;
}
.t-quote {
  font-family: var(--head); font-size: clamp(20px,2.5vw,30px); font-weight: 700;
  color: var(--white); letter-spacing: -0.02em; line-height: 1.3; text-transform: uppercase;
  margin-bottom: 32px;
}
.t-meta strong { font-size: 14px; font-weight: 600; color: var(--white); display: block; }
.t-meta span   { font-size: 12px; color: var(--subtle); margin-top: 4px; display: block; letter-spacing: 0.06em; text-transform: uppercase; }
.t-stars { color: var(--blue); font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }

/* Slider dots */
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.dot {
  width: 24px; height: 2px; background: var(--border-lt); border: none; cursor: pointer;
  transition: all var(--fast) var(--ease);
}
.dot.on { background: var(--blue); width: 40px; }

/* ─── FORM ────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--subtle);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card); border: 1px solid var(--border);
  padding: 14px 18px; font-family: var(--body); font-size: 14px;
  color: var(--white); outline: none; width: 100%;
  transition: border-color var(--fast), box-shadow var(--fast);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-xglow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--subtle); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
  background-color: var(--card);
}
.form-group select option { background: var(--card); color: var(--white); }

/* ─── CTA FULL BLEED ──────────────────────────────── */
.cta-section {
  position: relative; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--base);
}
.cta-media {
  position: absolute; inset: 0; z-index: 0;
}
.cta-media img { width:100%; height:100%; object-fit:cover; }
.cta-media::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,8,8,0.72);
}
.cta-media.light::after { background: rgba(8,8,8,0.42); }
.cta-content {
  position: relative; z-index: 2; text-align: center;
  padding: 80px 48px; max-width: 760px;
}
.cta-content h2 { margin-bottom: 16px; }
.cta-content p  { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── BRANDS ──────────────────────────────────────── */

/* ─── PILLARS ─────────────────────────────────────── */
.pillars {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid var(--border);
}
.pillar {
  padding: 52px 44px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background var(--fast);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--card); }
.pillar:hover .pillar-line { transform: scaleX(1); }
.pillar-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.pillar-num { font-family: var(--head); font-size: 48px; font-weight: 800; color: var(--border-lt); line-height: 1; margin-bottom: 24px; }
.pillar h3 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.pillar p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── PROCESS ─────────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border);
}
.process-item {
  padding: 44px 36px; border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--fast);
}
.process-item:last-child { border-right: none; }
.process-item:hover { background: var(--card); }
.process-item.active { background: var(--card); }
.process-item.active::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
}
.process-item .p-num { font-family: var(--head); font-size: 40px; font-weight: 800; color: var(--border-lt); line-height: 1; margin-bottom: 20px; }
.process-item.active .p-num { color: var(--blue); }
.process-item h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.process-item p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.price-card {
  background: var(--card); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background var(--fast);
}
.price-card:hover { background: var(--card-2); }
.price-card.featured { background: var(--surface); }
.price-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
}
.price-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-xglow); border: 1px solid rgba(14,165,233,0.2);
  padding: 4px 12px;
}
.price-tier { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); margin-bottom: 12px; }
.price-amount {
  font-family: var(--head); font-size: 60px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.price-amount .sup { font-size: 28px; vertical-align: super; }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-list li { font-size: 14px; color: var(--text); display: flex; gap: 10px; align-items: flex-start; }
.price-list li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3 3 5-6' stroke='%230EA5E9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-list li.off { color: var(--subtle); }
.price-list li.off::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 11L11 5M5 5l6 6' stroke='%234a4a4a' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; font-size: 16px; font-weight: 500; color: var(--white);
  gap: 16px; transition: color var(--fast);
}
.faq-q:hover { color: var(--blue); }
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px; stroke: var(--subtle);
  fill: none; stroke-width: 1.5; transition: transform var(--med) var(--ease), stroke var(--fast);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); stroke: var(--blue); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 15px; color: var(--muted); line-height: 1.7;
  transition: max-height var(--med) var(--ease), padding var(--med) var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-brand .abn { font-size: 11px; color: var(--subtle); letter-spacing: 0.04em; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--subtle); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color var(--fast); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: 12px; color: var(--subtle);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--subtle); transition: color var(--fast); }
.footer-bottom-links a:hover { color: var(--muted); }
.footer-certs { display: flex; gap: 8px; }
.cert-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid var(--border-lt); color: var(--subtle);
}
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--subtle); transition: all var(--fast);
}
.social-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xglow); }
.social-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ─── FLOATING CTA ────────────────────────────────── */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  background: var(--blue); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0 24px; height: 48px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(14,165,233,0.35);
  opacity: 0; transform: translateY(10px);
  transition: all var(--med) var(--ease); pointer-events: none;
}
.float-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { background: var(--blue-dark); box-shadow: 0 8px 36px rgba(14,165,233,0.5); transform: translateY(-2px); }
.float-cta svg { width: 16px; height: 16px; fill: var(--white); }

/* ─── ANIMATIONS ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─── HORIZONTAL LINE ACCENT ──────────────────────── */
.line-accent {
  width: 40px; height: 2px; background: var(--blue);
  margin-bottom: 24px;
}
.rule { border: none; border-top: 1px solid var(--border); }

/* ─── HIGHLIGHT BOX ───────────────────────────────── */
.highlight-box {
  background: var(--blue-xglow); border: 1px solid rgba(14,165,233,0.15);
  padding: 20px 24px;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .hero-content { padding: 0 32px 72px; }
  .split-body { padding: 56px 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-bar  { grid-template-columns: repeat(2,1fr); }
  .stats-bar .stat-cell:nth-child(2) { border-right: none; }
  .stats-bar .stat-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-bar .stat-cell:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .nav-phone { display: none; }
  .hamburger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.flip { direction: ltr; }
  .split-media { min-height: 340px; }
  .split-body { padding: 48px 32px; border-left: none; border-top: 1px solid var(--border); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-item:nth-child(2) { border-right: none; }
  .process-item:nth-child(3) { border-top: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; background: none; gap: 16px; }
  .price-card { border: 1px solid var(--border); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .hero-content { padding: 0 24px 60px; }
  .section { padding: 80px 0; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .float-cta { bottom: 20px; right: 20px; }
  .split-body { padding: 36px 24px; }
}
