/* =========================================================
   Pro Cam Solutions — styles.css
   Palette: deep navy/charcoal + white + electric blue accent
   ========================================================= */

:root {
  /* Brand colors */
  --navy-950: #070d18;
  --navy-900: #0b1424;
  --navy-850: #0e192c;
  --navy-800: #122036;
  --navy-700: #1a2c47;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --blue: #2f7ff6;
  --blue-600: #1e6ee6;
  --blue-bright: #39b7ff;
  --blue-glow: rgba(47, 127, 246, 0.45);

  --white: #ffffff;
  --ink: #0b1424;      /* dark text on light bg */
  --ink-soft: #43526b;
  --slate-50: #f5f8fc;
  --slate-100: #eef3f9;
  --slate-200: #dbe4f0;

  /* Text on dark */
  --text: #eaf1fb;
  --text-muted: #9fb2cc;
  --text-dim: #6f83a1;

  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px -20px rgba(2, 8, 20, 0.6);
  --shadow-blue: 0 16px 40px -12px var(--blue-glow);

  --container: 1200px;
  --ff-head: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --header-h: 74px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 13px; --btn-px: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; text-align: center;
}
.btn svg { flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: #fff;
  box-shadow: 0 10px 26px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-outline {
  border: 1.5px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,.02);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--blue-bright); color: #fff; transform: translateY(-2px); background: rgba(47,127,246,.12); }
.btn-ghost { border: 1.5px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn-sm { --btn-py: 10px; --btn-px: 17px; font-size: 0.9rem; }
.btn-lg { --btn-py: 16px; --btn-px: 30px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--blue-bright);
  padding: 7px 14px 7px 12px; border-radius: 999px;
  background: rgba(47,127,246,.1); border: 1px solid rgba(47,127,246,.22);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 3px rgba(57,183,255,.25); }
.eyebrow.light { color: var(--blue-bright); }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(1.85rem, 4.2vw, 2.9rem); margin-bottom: 16px; }
.section-lead { color: var(--text-muted); font-size: 1.08rem; }
.section-head .section-lead { margin-inline: auto; }

.accent { color: transparent; background: linear-gradient(120deg, var(--blue) 10%, var(--blue-bright) 90%); -webkit-background-clip: text; background-clip: text; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 20, 36, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(9, 16, 30, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-head); }
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 4px 10px rgba(47,127,246,.35)); }
.brand-text { font-size: 1.16rem; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.brand-text strong { font-weight: 800; color: #fff; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  padding: 9px 15px; border-radius: 10px; font-size: 0.96rem; font-weight: 500;
  color: var(--text-muted); transition: color .18s, background .18s;
}
.nav-desktop a:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-desktop a[aria-current="page"] { color: #fff; background: rgba(47,127,246,.16); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem;
  color: var(--text); transition: color .2s;
}
.header-phone svg { color: var(--blue-bright); }
.header-phone:hover { color: var(--blue-bright); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border: 1px solid var(--line-strong); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(9, 16, 30, 0.98);
  backdrop-filter: blur(14px);
  padding: 14px 22px 26px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a { padding: 14px 6px; font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-nav nav a:active { color: var(--blue-bright); }
.mobile-nav nav a[aria-current="page"] { color: var(--blue-bright); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(40px, 6vw, 64px);
  background:
    radial-gradient(1100px 620px at 78% -10%, rgba(47,127,246,.22), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(57,183,255,.10), transparent 55%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(900px 600px at 65% 20%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(900px 600px at 65% 20%, #000 0%, transparent 78%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  margin-bottom: 20px;
}
.hero .lead {
  color: var(--text-muted); font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  max-width: 560px; margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.hero-points svg { color: var(--blue-bright); }

/* Hero media */
.hero-media { position: relative; }
.hero-image-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), 0 0 0 6px rgba(47,127,246,.06);
}
.hero-image-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(7,13,24,.5)); }
.hero-image-card img { width: 100%; aspect-ratio: 3 / 2.35; object-fit: cover; }
.hero-chip {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.82rem; letter-spacing: .01em;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(7,13,24,.72); border: 1px solid var(--line-strong); backdrop-filter: blur(8px);
  color: #fff;
}
.hero-chip-live { top: 16px; left: 16px; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #34e29b; box-shadow: 0 0 0 0 rgba(52,226,155,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(52,226,155,.55);} 70%{box-shadow:0 0 0 9px rgba(52,226,155,0);} 100%{box-shadow:0 0 0 0 rgba(52,226,155,0);} }

.hero-stat {
  position: absolute; right: -14px; bottom: -26px; z-index: 3;
  display: flex; align-items: center; gap: 14px; max-width: 300px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid var(--line-strong); border-radius: 18px; padding: 16px 20px;
  box-shadow: var(--shadow);
}
.hero-stat-num {
  font-family: var(--ff-head); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: #fff; display: inline-flex; align-items: baseline; gap: 4px;
}
.hero-stat-num span { font-size: 1rem; color: var(--blue-bright); }
.hero-stat-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.35; }

/* Trust strip */
.trust-strip {
  position: relative; z-index: 1;
  margin-top: clamp(64px, 8vw, 92px);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  padding: 24px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.trust-strip li { text-align: center; padding: 4px; border-right: 1px solid var(--line); }
.trust-strip li:last-child { border-right: none; }
.trust-strip strong { display: block; font-family: var(--ff-head); font-size: 1.15rem; color: #fff; font-weight: 800; }
.trust-strip span { font-size: 0.82rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }

/* =========================================================
   SERVICES
   ========================================================= */
#services { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  overflow: hidden;
}
.service-card::before {
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1px;
  background: linear-gradient(140deg, rgba(57,183,255,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow); background: linear-gradient(180deg, rgba(47,127,246,.09), rgba(255,255,255,.02)); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(47,127,246,.22), rgba(57,183,255,.12));
  border: 1px solid rgba(57,183,255,.25); color: var(--blue-bright);
  transition: transform .25s ease;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { transform: scale(1.06) rotate(-3deg); }
.service-card h3 { font-size: 1.16rem; margin-bottom: 9px; color: #fff; }
.service-card p { color: var(--text-muted); font-size: 0.96rem; }

.section-cta {
  margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px 24px; text-align: center;
  padding: 26px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47,127,246,.12), rgba(57,183,255,.05));
  border: 1px solid rgba(47,127,246,.2);
}
.section-cta p { color: var(--text); font-weight: 500; font-family: var(--ff-head); font-size: 1.08rem; }

/* Home explore hub — cards that link to each page */
.link-card { display: flex; flex-direction: column; }
.link-card .card-arrow {
  margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 7px;
  color: var(--blue-bright); font-family: var(--ff-head); font-weight: 700; font-size: .92rem;
}
.link-card .card-arrow svg { transition: transform .25s ease; }
.link-card:hover .card-arrow svg { transform: translateX(4px); }

/* =========================================================
   SPLIT SECTIONS (Residential / Commercial)
   ========================================================= */
.split-section.alt { background: linear-gradient(180deg, var(--navy-900), var(--navy-850)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split.reverse .split-media { order: 2; }

.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 4 / 3.15; object-fit: cover; transition: transform .6s ease; }
.split-media:hover img { transform: scale(1.04); }
.split-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 60%, rgba(7,13,24,.35)); pointer-events:none; }
.media-tag {
  position: absolute; z-index: 2; left: 16px; bottom: 16px;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; padding: 7px 14px; border-radius: 999px;
  background: rgba(47,127,246,.85); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px);
}
.split-copy .eyebrow { margin-bottom: 18px; }
.split-copy h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.split-copy .section-lead { margin-bottom: 26px; }
.split-copy .btn { margin-top: 30px; }

.feature-list { display: grid; gap: 16px; }
.feature-list.two-col { grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .fl-icon {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; margin-top: 2px;
  background: rgba(52,226,155,.14); color: #34e29b; border: 1px solid rgba(52,226,155,.3);
}
.feature-list .fl-icon svg { width: 15px; height: 15px; }
.feature-list div { font-size: 0.96rem; color: var(--text-muted); }
.feature-list strong { display: block; color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 1rem; margin-bottom: 1px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { background: linear-gradient(180deg, var(--navy-850), var(--navy-900)); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  position: relative; padding: 32px 28px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.why-num {
  display: inline-grid; place-items: center; width: 60px; height: 60px; margin-bottom: 18px;
  font-family: var(--ff-head); font-weight: 800; font-size: 1.7rem; color: #fff; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright)); box-shadow: var(--shadow-blue);
}
.why-ic {
  display: inline-grid; place-items: center; width: 60px; height: 60px; margin-bottom: 18px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(47,127,246,.2), rgba(57,183,255,.1));
  border: 1px solid rgba(57,183,255,.25); color: var(--blue-bright);
}
.why-ic svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.18rem; color: #fff; margin-bottom: 9px; }
.why-card p { color: var(--text-muted); font-size: 0.96rem; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-section { background: var(--navy-900); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; position: relative; }
.process-step {
  position: relative; padding: 30px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.process-step:hover { transform: translateY(-5px); border-color: rgba(57,183,255,.4); box-shadow: var(--shadow); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px; border-radius: 50%;
  font-family: var(--ff-head); font-weight: 800; font-size: 1.15rem; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 0 5px rgba(47,127,246,.14);
}
.process-step h3 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; color: var(--text-muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03); overflow: hidden; transition: border-color .25s, background .25s;
}
.faq-item[open] { border-color: rgba(57,183,255,.4); background: rgba(47,127,246,.06); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px; font-family: var(--ff-head); font-weight: 700; font-size: 1.07rem; color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-bright); }
.faq-chevron { position: relative; flex: none; width: 20px; height: 20px; }
.faq-chevron::before, .faq-chevron::after {
  content:""; position:absolute; top:50%; left:50%; width:11px; height:2px; border-radius:2px;
  background: var(--blue-bright); transform: translate(-50%,-50%); transition: transform .3s ease;
}
.faq-chevron::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-chevron::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { color: var(--text-muted); font-size: 0.98rem; }
/* open animation */
.faq-item[open] .faq-answer { animation: fadeDown .3s ease; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  background:
    radial-gradient(800px 500px at 85% 0%, rgba(47,127,246,.18), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 16px 0 14px; }
.contact-methods { margin-top: 34px; display: grid; gap: 20px; }
.contact-methods li { display: flex; gap: 16px; align-items: flex-start; }
.cm-icon {
  flex: none; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(47,127,246,.2), rgba(57,183,255,.1));
  border: 1px solid rgba(57,183,255,.25); color: var(--blue-bright);
}
.cm-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: 2px; }
.contact-methods a { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: #fff; transition: color .2s; }
.contact-methods a:hover { color: var(--blue-bright); }
.contact-methods div span:not(.cm-label) { color: var(--text-muted); font-size: 0.95rem; }

.contact-form-wrap {
  padding: clamp(24px, 3.5vw, 38px); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line-strong); box-shadow: var(--shadow);
}
.contact-form { display: grid; gap: 18px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-family: var(--ff-head); font-weight: 600; font-size: 0.9rem; color: var(--text); }
.form-row label span { color: var(--blue-bright); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; color: var(--text);
  background: rgba(7,13,24,.5); border: 1px solid var(--line-strong);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-row textarea { resize: vertical; min-height: 96px; }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-dim); }
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2339b7ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--blue-bright); background: rgba(7,13,24,.75);
  box-shadow: 0 0 0 4px rgba(47,127,246,.16);
}
.form-row input.invalid, .form-row select.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 4px rgba(255,107,107,.14); }
.form-note { font-size: 0.82rem; color: var(--text-dim); text-align: center; }
.form-success {
  padding: 14px 16px; border-radius: 11px; font-size: 0.95rem; text-align: center;
  background: rgba(52,226,155,.12); border: 1px solid rgba(52,226,155,.35); color: #d6ffef;
}
.form-success a { color: #fff; font-weight: 700; text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--line); padding-top: clamp(52px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; max-width: 340px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .11em; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; margin-bottom: 18px; }
.footer-col a, .footer-col span { color: var(--text-muted); font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center;
  padding: 24px 22px; border-top: 1px solid var(--line);
}
.footer-bottom p { color: var(--text-dim); font-size: 0.86rem; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
/* stagger cards inside a grid */
.cards-grid .in-view, .why-grid .in-view, .process-steps .in-view { transition-delay: var(--d, 0ms); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  .nav-desktop, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 560px; margin: 0 auto 30px; width: 100%; }
  .hero-stat { right: 8px; bottom: -22px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .split-media { max-width: 620px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-actions .btn-primary { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .trust-strip li { border-right: none; }
  .trust-strip li:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-strip li:last-child { grid-column: 1 / -1; border-right: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .feature-list.two-col { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stat { position: static; margin: 22px auto 0; max-width: none; }
  .section-cta { flex-direction: column; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 380px) {
  .brand-text { font-size: 1.02rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
  .split-media img { transition: none; }
}
