/* ═══════════════════════════════════════════════════════
   WEBSITE BUILDER NISH — STYLES
   Design: Clean, modern, professional with a bold teal/
   midnight palette. No generic blue-purple gradients.
   Signature element: The diagonal split hero and CSS
   wireframe mockups in the portfolio section.
══════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────── */
:root {
  /* Palette: Midnight navy + electric teal + warm white */
  --c-bg:         #F7F8FA;
  --c-surface:    #FFFFFF;
  --c-dark:       #0D1117;
  --c-dark-2:     #161C26;
  --c-primary:    #00B8A9;      /* electric teal */
  --c-primary-d:  #009B8E;
  --c-accent:     #F5A623;      /* warm amber — used sparingly */
  --c-text:       #1C2333;
  --c-text-muted: #5C677D;
  --c-border:     #E2E6EE;
  --c-tag-bg:     #E8F9F7;
  --c-tag-text:   #007A70;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: 1rem;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ── LAYOUT ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: var(--sp-2xl) 0;
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.125rem; font-weight: 700; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--sp-xs);
}
.section-sub {
  color: var(--c-text-muted);
  max-width: 520px;
  margin: 0.75rem auto 0;
  font-size: 1.0625rem;
}

.section-header.light h2,
.section-header.light p { color: #fff; }
.section-header.light .section-label { color: var(--c-primary); }
.section-header.light .section-sub { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-primary-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,184,169,0.35);
}
.btn-ghost {
  background: transparent;
  border-color: var(--c-border);
  color: var(--c-text);
}
.btn-ghost:hover {
  border-color: var(--c-text-muted);
  background: rgba(0,0,0,0.03);
}
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-full { width: 100%; }

/* ── DARK SECTIONS ────────────────────────────────── */
.dark-section {
  background: var(--c-dark);
  color: #fff;
}

/* ── HEADER ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,248,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.logo strong { font-weight: 700; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: all 0.15s;
}
.main-nav a:hover { color: var(--c-text); background: rgba(0,0,0,0.04); }
.nav-cta {
  background: var(--c-primary) !important;
  color: #fff !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--c-primary-d) !important;
  box-shadow: 0 2px 10px rgba(0,184,169,0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--c-dark);
  color: #fff;
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 88vh;
}

/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,184,169,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,184,169,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.8);
}

.hero-headline {
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-headline em {
  font-style: normal;
  color: var(--c-primary);
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.proof-item {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Hero visual — CSS device mockup */
.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  opacity: 0.25;
  pointer-events: none;
}

.device-mockup {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
}
.device-screen {
  background: var(--c-bg);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}
.mock-nav {
  height: 28px;
  background: #fff;
  border-radius: 6px;
}
.mock-hero-block {
  height: 80px;
  background: linear-gradient(135deg, var(--c-dark) 60%, var(--c-primary));
  border-radius: 6px;
}
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mock-card {
  height: 50px;
  background: #fff;
  border-radius: 6px;
}
.mock-footer {
  height: 24px;
  background: #fff;
  border-radius: 6px;
  opacity: 0.6;
}

/* ── TRUST STRIP ──────────────────────────────────── */
.trust-strip {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-lg) 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.trust-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.trust-item p {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ── SERVICES ─────────────────────────────────────── */
.services { background: var(--c-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0,184,169,0.08), var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.service-card h3 {
  margin-bottom: 0.5rem;
}
.service-card > p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.service-list li {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  padding-left: 1.1em;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 700;
}

/* ── WORK / PORTFOLIO ─────────────────────────────── */
.work { background: var(--c-surface); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.work-card:hover {
  box-shadow: var(--shadow-lg);
}

/* CSS wireframe previews */
.work-preview {
  height: 200px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.work-preview--tradie { background: linear-gradient(160deg, #0D1117 0%, #1a2535 100%); }
.work-preview--ecom   { background: linear-gradient(160deg, #13293D 0%, #1d3a57 100%); }
.work-preview--biz    { background: linear-gradient(160deg, #162032 0%, #1e2f44 100%); }

.wp-nav {
  height: 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  flex-shrink: 0;
}

.wp-hero {
  flex: 1;
  background: rgba(0,184,169,0.2);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.wp-h1 {
  height: 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  width: 70%;
}
.wp-h2 {
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
  width: 50%;
}
.wp-btn {
  height: 18px;
  background: var(--c-primary);
  border-radius: 4px;
  width: 100px;
  margin-top: 4px;
}

.wp-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
  flex-shrink: 0;
}
.wp-card {
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
}

.wp-products {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 6px;
  flex: 1;
}
.wp-product {
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
}

.wp-cta-bar {
  height: 28px;
  background: var(--c-primary);
  border-radius: 5px;
  opacity: 0.8;
  flex-shrink: 0;
}

.wp-lp-hero {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.wp-lp-text {
  height: 40px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
}
.wp-lp-btn {
  height: 18px;
  background: var(--c-accent);
  border-radius: 4px;
  width: 80px;
}
.wp-trust-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
  flex-shrink: 0;
}
.wp-trust {
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
}

.work-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.work-tag {
  display: inline-block;
  background: var(--c-tag-bg);
  color: var(--c-tag-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.625rem;
}
.work-info h3 {
  margin-bottom: 0.375rem;
  font-size: 1rem;
}
.work-info p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* ── PRICING ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.25);
}
.pricing-card.popular {
  border-color: var(--c-primary);
  background: rgba(0,184,169,0.08);
}

.popular-badge {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.pricing-header h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.price {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.price strong {
  font-size: 1.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}
.pricing-header p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.pricing-list {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-list li {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.1em;
  position: relative;
  line-height: 1.4;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-top: 2rem;
}
.pricing-note a {
  color: var(--c-primary);
  font-weight: 500;
}

/* ── PROCESS ──────────────────────────────────────── */
.process { background: var(--c-bg); }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}

.step-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}
.step-content p {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.process-connector {
  width: 2rem;
  height: 2px;
  background: var(--c-border);
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid var(--c-border);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, #009B8E 100%);
  padding: var(--sp-xl) 0;
}

.cta-inner {
  text-align: center;
  max-width: 600px;
}
.cta-inner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--c-primary);
}
.cta-banner .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ── FAQ ──────────────────────────────────────────── */
.faq { background: var(--c-surface); }

.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.faq-inner .section-header {
  text-align: left;
  margin-bottom: 0;
  position: sticky;
  top: 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--c-primary); }
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--c-primary);
}

.faq-a {
  display: none;
  padding-bottom: 1.25rem;
}
.faq-a.open { display: block; }
.faq-a p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── CONTACT ──────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-text .section-label { margin-bottom: 0.5rem; }
.contact-text h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.contact-text > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.contact-link:hover { color: var(--c-primary); }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.optional {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

input, select, textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
select option { background: var(--c-dark-2); color: #fff; }
input:focus, select:focus, textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0,184,169,0.2);
}

/* Form success / error states */
.form-success[hidden],
.form-error[hidden] {
  display: none;
}

.form-success,
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.form-success {
  background: rgba(0,184,169,0.15);
  border: 1px solid rgba(0,184,169,0.4);
  color: #fff;
}
.form-success-icon { font-size: 1.25rem; flex-shrink: 0; }
.form-success strong { display: block; margin-bottom: 0.2rem; font-size: 0.9375rem; }
.form-success p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.85rem; }
.form-error {
  background: rgba(220,50,50,0.12);
  border: 1px solid rgba(220,50,50,0.35);
  color: rgba(255,255,255,0.8);
}
.form-error a { color: var(--c-primary); }
.form-error p { margin: 0; font-size: 0.875rem; }
.site-footer {
  background: var(--c-dark-2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }

.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--c-primary); }

.footer-copy a { color: var(--c-primary); }

/* ── RESPONSIVE ───────────────────────────────────── */

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-inner .section-header { position: static; }
  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }
  .process-connector {
    width: 2px;
    height: 1rem;
    background: var(--c-border);
  }
  .process-connector::after {
    right: 50%;
    top: auto;
    bottom: -6px;
    transform: translateX(50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--c-border);
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--c-dark);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .main-nav.open a {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    color: rgba(255,255,255,0.8) !important;
    background: transparent !important;
  }
  .main-nav.open a:hover { color: var(--c-primary) !important; }
  .menu-toggle { display: flex; z-index: 300; position: relative; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-toggle.open span { background: #fff; }

  .trust-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  .section-pad { padding: var(--sp-xl) 0; }
}

/* ── UTILITIES ────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
