/* ═══════════════════════════════════════
   trymysite.co.uk — Public Site CSS
═══════════════════════════════════════ */
:root {
  --navy:        #080d1a;
  --navy-2:      #0d1428;
  --navy-3:      #131d35;
  --navy-4:      #1a2540;
  --orange:      #f97316;
  --orange-2:    #ea6c0e;
  --orange-dim:  rgba(249,115,22,.14);
  --orange-glow: rgba(249,115,22,.28);
  --text:        #eef2ff;
  --muted:       #7a8aa8;
  --dim:         #4a5a72;
  --border:      rgba(255,255,255,.07);
  --border-med:  rgba(255,255,255,.13);
  --white:       #ffffff;
  --red:         #f87171;
  --red-dim:     rgba(248,113,113,.12);
  --green:       #34d399;
  --green-dim:   rgba(52,211,153,.12);

  --container:   1160px;
  --header-h:    68px;
  --radius:      14px;
  --radius-sm:   9px;
  --radius-pill: 999px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(.22,.68,0,1.2);
  --ease-std: cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Layout ──────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
section:nth-child(even) { background: var(--navy-2); }

/* ── Header ──────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: rgba(8,13,26,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
#scroll-progress {
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
  transition: width .1s linear;
  z-index: 10;
  border-radius: 0 2px 2px 0;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange-glow);
  animation: pulse-orange 2.6s ease-out infinite;
}
.logo-tld { color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,.05); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  border: none;
}
.btn:active { transform: scale(.97); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-orange::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-orange:hover { background: var(--orange-2); box-shadow: 0 4px 20px var(--orange-glow); }
.btn-orange:hover::after { animation: shimmer-sweep .55s ease forwards; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-med);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-orange-sm {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--orange);
  color: #fff;
  transition: background .15s;
}
.btn-orange-sm:hover { background: var(--orange-2); }

.btn-ghost-sm {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border-med);
  transition: color .15s, border-color .15s;
}
.btn-ghost-sm:hover { color: var(--text); border-color: var(--orange); }

.btn-full { width: 100%; }

/* ── Hero ────────────────────────────── */
.hero {
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  --glow-x: 50%; --glow-y: -10%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: var(--glow-y, -10%);
  left: var(--glow-x, 50%);
  transform: translate(-50%, -50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.13) 0%, transparent 68%);
  pointer-events: none;
  transition: top .12s ease, left .12s ease;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .02em;
}
.hero-badge {
  animation: hero-badge-float 4s ease-in-out infinite;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-orange 2s ease-out infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 820px;
}
.hero h1 .highlight { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 600px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Section headings ────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── Steps (How It Works) ────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,.2));
  transform: scaleX(0); transform-origin: left center; transition: transform 1.1s cubic-bezier(.25,.46,.45,.94) .3s;
}
.steps-grid.line-drawn::before { transform: scaleX(1); }
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  gap: 16px;
  transition: transform .25s var(--ease-out);
  cursor: default;
}
.step-card:hover { transform: translateY(-6px); }
.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-3);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: var(--orange);
  flex-shrink: 0;
  transition: box-shadow .3s, transform .25s var(--ease-out);
}
.step-card:hover .step-icon {
  box-shadow: 0 0 0 8px var(--orange-dim), 0 0 30px var(--orange-glow);
  transform: scale(1.1);
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.step-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Feature cards (What's Included) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s var(--ease-out), box-shadow .2s;
}
.feature-card:hover {
  border-color: rgba(249,115,22,.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--orange-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background .25s, transform .25s var(--ease-out);
}
.feature-card:hover .feature-icon {
  background: rgba(249,115,22,.22);
  transform: scale(1.12) rotate(-6deg);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.feature-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Why Choose Us ───────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color .2s, background .2s, transform .2s var(--ease-out), box-shadow .2s;
}
.why-card:hover {
  border-color: rgba(249,115,22,.28);
  background: var(--navy-4);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
.why-card svg { transition: transform .25s var(--ease-out); }
.why-card:hover svg { transform: scale(1.15); }
.why-card svg { color: var(--orange); }
.why-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
}
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Portfolio grid ──────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s var(--ease-out), box-shadow .2s, border-color .2s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  border-color: rgba(249,115,22,.25);
}
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.portfolio-thumb svg { opacity: .3; }
.portfolio-thumb::after {
  content: 'View Site →';
  position: absolute;
  inset: 0;
  background: rgba(8,13,26,.72);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .25s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }
.portfolio-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease-out);
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.06); }
.portfolio-thumb-label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dim);
  background: var(--navy-2);
  padding: 3px 8px;
  border-radius: 4px;
}
.portfolio-body { padding: 18px 20px; }
.portfolio-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.portfolio-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.portfolio-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  transition: gap .15s;
}
.portfolio-link:hover { gap: 8px; }

/* ── CTA Banner ──────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #0f1829 50%, #080d1a 100%);
  border-top: 1px solid rgba(249,115,22,.2);
  border-bottom: 1px solid rgba(249,115,22,.2);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.1) 0%, transparent 65%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────── */
.site-footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  gap: 48px;
  padding: 56px 24px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-tagline {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-bottom a { color: var(--muted); transition: color .15s; font-size: 13px; }
.footer-bottom a:hover { color: var(--orange); }

/* ── Forms (contact, auth, brief) ────── */
.form-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px;
  background: var(--navy);
}
.form-card {
  background: var(--navy-2);
  border: 1px solid var(--border-med);
  border-radius: 18px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
}
.form-card-wide { max-width: 760px; }
.form-logo { margin-bottom: 28px; }
.form-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.field-input {
  background: var(--navy-3);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 14.5px;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.field-input::placeholder { color: var(--dim); }
.field-textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 12px; color: var(--dim); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.password-wrap {
  position: relative;
}
.password-wrap .field-input { padding-right: 44px; }
.toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dim);
  cursor: pointer;
  padding: 4px;
  transition: color .15s;
  background: none;
  border: none;
  display: flex;
  align-items: center;
}
.toggle-pw:hover { color: var(--muted); }

.form-divider {
  text-align: center;
  margin: 20px 0;
  font-size: 13px;
  color: var(--dim);
  position: relative;
}
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.form-divider span {
  position: relative;
  background: var(--navy-2);
  padding: 0 12px;
}

.form-footer-link {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 20px;
}
.form-footer-link a { color: var(--orange); font-weight: 500; }
.form-footer-link a:hover { text-decoration: underline; }

/* Brief form sections */
.brief-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  background: var(--navy-3);
}
.brief-section-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.brief-section-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.brief-section-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

/* ── Captcha ─────────────────────────── */
.captcha-box {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.captcha-question {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.captcha-input {
  width: 80px;
  background: var(--navy);
  border: 1px solid var(--border-med);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 14px;
  text-align: center;
}
.captcha-input:focus { outline: none; border-color: var(--orange); }

/* ── Alerts ──────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-error { background: var(--red-dim); color: var(--red); border: 1px solid rgba(248,113,113,.2); }
.alert-success { background: var(--green-dim); color: var(--green); border: 1px solid rgba(52,211,153,.2); }

/* ── Services page ───────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease-out);
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .28s var(--ease-out);
  border-radius: 0 2px 2px 0;
}
.service-row:hover {
  border-color: rgba(249,115,22,.22);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  transform: translateX(3px);
}
.service-row:hover::before { transform: scaleY(1); }
.service-row svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.service-row-body { flex: 1; }
.service-row-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.service-row-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.extra-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .2s, transform .2s var(--ease-out), box-shadow .2s;
}
.extra-card:hover {
  border-color: rgba(249,115,22,.28);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.25);
}
.extra-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.extra-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.extra-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Contact page ────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.contact-info-sub { font-size: 14px; color: var(--muted); line-height: 1.6; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.contact-detail svg { color: var(--orange); flex-shrink: 0; }
.contact-detail a { color: var(--muted); transition: color .15s; }
.contact-detail a:hover { color: var(--orange); }

/* ── Animations ──────────────────────── */
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer-sweep {
  from { left: -100%; }
  to   { left: 160%; }
}
@keyframes hero-badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: .82em;
  background: var(--orange);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 2px;
  animation: cursor-blink 1.1s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.animate-up { animation: fade-up .6s var(--ease-out) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }

/* Scroll reveal — added by IntersectionObserver in site.js */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────── */
@media (max-width: 960px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .nav-link { padding: 10px 14px; }
  .btn-orange-sm, .btn-ghost-sm { text-align: center; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-links { gap: 12px; }
  .extras-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-dot, .hero-badge-dot { animation: none; }
  .animate-up { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-orange::after { display: none; }
  .feature-card, .portfolio-card, .why-card,
  .step-card, .service-row, .extra-card,
  .feature-icon, .why-card svg, .step-icon { transition: none; transform: none; }
  body::after { display: none; }
  .hero-badge { animation: none; }

  .hero-cursor { animation: none; }
}
