*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #03091e;
  --blue:   #1a56ff;
  --bright: #4d8bff;
  --light:  #e8f0ff;
  --xlight: #f4f7ff;
  --white:  #ffffff;
  --ink:    #07112e;
  --ink2:   #3a4a6b;
  --ink3:   #7a8bb0;
  --border: #e0e7f5;
  --r: 14px; --rl: 22px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white); color: var(--ink);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes countUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.reveal { opacity:0; transform:translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.on { opacity:1; transform:none; }
.d1 { transition-delay:.1s } .d2 { transition-delay:.2s } .d3 { transition-delay:.3s }

/* ─── NAV ────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0; transition: all .3s;
}
nav.solid {
  background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(3,9,30,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 36px; display: block; }
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink2);
  text-decoration: none; padding: 8px 15px; border-radius: 9px;
  transition: all .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--xlight); }
nav.solid .nav-links a { color: var(--ink2); }
nav.solid .nav-links a:hover { color: var(--ink); background: var(--xlight); }
/* White links only on dark hero pages */
.dark-hero .nav-links a { color: rgba(255,255,255,.85); }
.dark-hero .nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.dark-hero nav.solid .nav-links a { color: var(--ink2); }
.dark-hero nav.solid .nav-links a:hover { color: var(--ink); background: var(--xlight); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.pill-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; padding: 11px 22px;
  border-radius: 100px; text-decoration: none; transition: all .2s; border: none; cursor: pointer;
}
.pill-btn.solid { background: var(--blue); color: #fff; box-shadow: 0 4px 18px rgba(26,86,255,.35); }
.pill-btn.solid:hover { background: #1340e0; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(26,86,255,.45); }
.pill-btn.ghost { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.25); }
.pill-btn.ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.08); }
nav.solid .pill-btn.ghost { color: var(--ink2); border-color: var(--border); }
nav.solid .pill-btn.ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--light); }
.pill-btn svg { transition: transform .2s; }
.pill-btn:hover svg { transform: translateX(3px); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; background:none; border:none; }
.hamburger span { width:22px; height:2px; background:var(--ink); border-radius:2px; display:block; }
.mobile-nav {
  display:none; position:fixed; inset:72px 0 0; background:var(--white); z-index:199;
  padding:24px 32px 32px; flex-direction:column; gap:4px; border-top:1px solid var(--border);
}
.mobile-nav.open { display:flex; }
.mobile-nav a { font-size:17px; font-weight:500; color:var(--ink); text-decoration:none; padding:14px 0; border-bottom:1px solid var(--xlight); }
.mobile-nav .pill-btn { margin-top:18px; justify-content:center; }
@media(max-width:780px){ .nav-links,.nav-cta{display:none} .hamburger{display:flex} }

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('hero-bg.jpg') center center / cover no-repeat;
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(3,9,30,.82) 0%,
    rgba(3,9,30,.65) 50%,
    rgba(3,9,30,.45) 100%
  );
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
}
.hero-glow-1 { display: none; }
.hero-glow-2 { display: none; }
.hero-inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:100px; padding:6px 16px 6px 8px;
  font-size:12px; font-weight:600; color:rgba(255,255,255,.7);
  margin-bottom:30px;
}
.hero-tag-dot {
  width:22px; height:22px; border-radius:50%; background:var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.hero-h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 900; line-height: 1.02; letter-spacing: -.04em;
  color: var(--white); margin-bottom: 24px;
}
.hero-h1 .stroke {
  color: rgba(255,255,255,.22);
}
.hero-h1 .blue-grad {
  background: linear-gradient(95deg, #4d8bff 0%, #a5c4ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-p {
  font-size: 17px; color: rgba(255,255,255,.55);
  line-height: 1.8; margin-bottom: 40px; max-width: 440px;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:52px; }
.hero-proof { display:flex; align-items:center; gap:16px; }
.hp-faces { display:flex; }
.hp-faces span {
  width:36px; height:36px; border-radius:50%;
  border:2.5px solid rgba(255,255,255,.15);
  background:var(--blue); color:#fff; font-size:11px; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin-left:-10px;
}
.hp-faces span:first-child { margin-left:0; }
.hp-text { font-size:13px; color:rgba(255,255,255,.45); font-weight:500; }
.hp-text strong { color:rgba(255,255,255,.85); }
.hp-stars { color:#fbbf24; font-size:12px; letter-spacing:2px; }

.hero-right { position:relative; padding: 72px 40px; }
.main-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(16px); border-radius:var(--rl);
  padding:28px; animation:float 6s ease-in-out infinite;
  position: relative; z-index: 1;
}
.mc-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; }
.mc-title { font-size:13px; font-weight:700; color:rgba(255,255,255,.85); }
.live-dot {
  display:flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; color:#4ade80;
}
.live-dot::before { content:''; width:7px; height:7px; border-radius:50%; background:#4ade80; animation:pulse 2s infinite; }
.metrics-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:20px; }
.m-cell {
  background:rgba(255,255,255,.05); border-radius:10px;
  padding:14px; border:1px solid rgba(255,255,255,.06);
}
.m-l { font-size:10px; font-weight:700; color:rgba(255,255,255,.35); text-transform:uppercase; letter-spacing:.08em; margin-bottom:5px; }
.m-v { font-size:22px; font-weight:900; color:#fff; letter-spacing:-.03em; line-height:1; }
.m-d { font-size:11px; font-weight:700; margin-top:4px; }
.m-d.up { color:#4ade80; } .m-d.dn { color:#f87171; }
.mini-chart { display:flex; align-items:flex-end; gap:4px; height:44px; }
.mc-bar { flex:1; border-radius:4px 4px 0 0; background:rgba(77,139,255,.2); }
.mc-bar.active { background:linear-gradient(180deg,#4d8bff,#1a56ff); }
.mini-chart-lbl { font-size:10px; font-weight:700; color:rgba(255,255,255,.3); text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px; }

.mini-card {
  position:absolute; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px); border-radius:12px;
  padding:12px 16px; display:flex; align-items:center; gap:11px; white-space:nowrap;
}
.mini-card-1 { top:0; right:8px; animation:float 5s 1s ease-in-out infinite; z-index:2; }
.mini-card-2 { bottom:0; left:8px; animation:float 5s .5s ease-in-out infinite; z-index:2; }
.mi-icon {
  width:34px; height:34px; border-radius:9px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mi-icon.g { background:rgba(74,222,128,.15); }
.mi-icon.b { background:rgba(77,139,255,.2); }
.mi-lbl { font-size:10px; color:rgba(255,255,255,.4); font-weight:500; }
.mi-val { font-size:14px; font-weight:800; color:#fff; letter-spacing:-.02em; }

@media(max-width:900px){
  .hero-inner { grid-template-columns:1fr; }
  .hero-right { display:none; }
  .hero { min-height:auto; padding:120px 0 72px; }
}

/* ─── MARQUEE ────────────────────────────── */
.marquee-wrap {
  background: var(--blue); overflow:hidden; padding:14px 0;
}
.marquee-track {
  display:flex; width:max-content;
  animation: ticker 28s linear infinite;
}
.marquee-track:hover { animation-play-state:paused; }
.marquee-item {
  display:flex; align-items:center; gap:12px;
  font-size:14px; font-weight:700; color:rgba(255,255,255,.85);
  padding:0 36px; white-space:nowrap;
}
.marquee-item .sep {
  width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.4);
}
.marquee-item strong { color:#fff; }

/* ─── STATS ROW ──────────────────────────── */
.stats-row { padding:0; background:var(--white); }
.stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
  background:#0a0f1e;
}
.stat-cell {
  padding:56px 36px;
  border-right:1px solid rgba(255,255,255,.08);
  transition:background .2s;
}
.stat-cell:last-child { border-right:none; }
.stat-cell:hover { background:rgba(255,255,255,.02); }
.stat-eyebrow {
  font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.3); margin-bottom:16px;
}
.stat-num {
  font-size:clamp(22px,2.4vw,30px); font-weight:600;
  color:#fff; line-height:1.1; margin-bottom:8px;
  letter-spacing:-.01em;
}
.stat-label { font-size:13px; color:rgba(255,255,255,.4); line-height:1.5; }
@media(max-width:680px){
  .stats-inner{grid-template-columns:1fr 1fr;}
  .stat-cell{border-bottom:1px solid rgba(255,255,255,.08); padding:40px 24px;}
  .stat-cell:nth-child(even){border-right:none;}
}

/* ─── HOMEPAGE REDESIGN ──────────────────── */

/* Hero */
.sg-hero {
  background: #181818;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.sg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,.07);
}
.sg-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sg-loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}
.sg-loc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.sg-hero-h1 {
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 24px;
}
.sg-hero-h1 span {
  color: #1a56ff;
}
.sg-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}
.sg-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  border: 2px solid #fff;
}
.sg-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
.sg-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.18);
  transition: all .2s;
}
.sg-btn-secondary:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.sg-hero-fine {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  font-weight: 500;
}

/* Browser mockup */
.sg-hero-right {
  position: relative;
  padding: 40px 24px 60px;
}
.sg-browser {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  position: relative;
  z-index: 1;
}
.sg-browser-sm {
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.sg-browser-bar {
  background: #e8e8e8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sg-browser-dots {
  display: flex;
  gap: 6px;
}
.sg-browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #c0c0c0;
}
.sg-browser-dots span:nth-child(1) { background: #ff5f57; }
.sg-browser-dots span:nth-child(2) { background: #febc2e; }
.sg-browser-dots span:nth-child(3) { background: #28c840; }
.sg-browser-url {
  flex: 1;
  background: #d0d0d0;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  color: #555;
  font-family: monospace;
  text-align: center;
}
.sg-browser-body img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
}

/* Mobile overlay */
.sg-mobile-frame {
  position: absolute;
  bottom: -20px;
  right: -28px;
  width: 160px;
  z-index: 2;
  background: #111;
  border-radius: 32px;
  padding: 12px 7px 20px;
  box-shadow: 0 28px 64px rgba(0,0,0,.65);
  border: 3px solid #2a2a2a;
}
.sg-mobile-frame::before {
  content: '';
  display: block;
  width: 44px;
  height: 5px;
  background: #2e2e2e;
  border-radius: 3px;
  margin: 0 auto 8px;
}
.sg-mobile-inner {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: #fff;
}
.sg-mobile-inner img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Floating stat badges */
.sg-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  z-index: 3;
}
.sg-badge-top {
  top: 10px;
  right: 10px;
}
.sg-badge-bot {
  bottom: 48px;
  left: -10px;
}
.sg-badge-val {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.sg-badge-lbl {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
  font-weight: 500;
}

@media(max-width:860px) {
  .sg-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .sg-hero-right { display: none; }
  .sg-hero { min-height: auto; padding: 120px 0 72px; }
}

/* How it works */
.sg-how {
  background: #fff;
  padding: 100px 0;
  border-bottom: 1px solid #eee;
}
.sg-sec-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1a56ff;
  text-align: center;
  margin-bottom: 14px;
}
.sg-sec-h {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #111;
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.1;
}
.sg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.sg-step {
  text-align: center;
  padding: 0 16px;
}
.sg-step-num {
  font-size: 48px;
  font-weight: 900;
  color: #1a56ff;
  opacity: .15;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}
.sg-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.sg-step-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
}
@media(max-width:680px) { .sg-steps { grid-template-columns: 1fr; gap: 48px; } }

/* Client spotlight */
.sg-spotlight {
  background: #f7f7f7;
  padding: 100px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.sg-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sg-spotlight-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}
.sg-spotlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sg-spotlight-list li {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sg-spotlight-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #e8f0ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a56ff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}
@media(max-width:800px) { .sg-spotlight-inner { grid-template-columns: 1fr; gap: 48px; } }
.sg-spotlight-reverse { direction: rtl; }
.sg-spotlight-reverse > * { direction: ltr; }

/* Testimonials */
.sg-testimonial {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}
.sg-testi-card {
  max-width: 800px;
  margin: 0 auto;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 56px 64px;
  border: 1px solid #eee;
}
.sg-testi-quote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: #222;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 500;
}
.sg-testi-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.sg-testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #1a56ff;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sg-testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-align: left;
}
.sg-testi-biz {
  font-size: 13px;
  color: #1a56ff;
  text-decoration: none;
  display: block;
  margin-top: 2px;
  text-align: left;
}
.sg-testi-biz:hover { text-decoration: underline; }
.sg-testi-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
@media(max-width:680px) { .sg-testi-card { padding: 36px 28px; } }

/* Story / Why */
.sg-story {
  background: #181818;
  padding: 100px 0;
}
.sg-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sg-story .sg-sec-label { color: #4d8bff; text-align: left; }
.sg-story .sg-sec-h { color: #fff; text-align: left; margin-bottom: 28px; }
.sg-story-body {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  margin-bottom: 20px;
}
.sg-story-body strong { color: rgba(255,255,255,.85); font-weight: 600; }
.sg-story-sig {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sg-story-vals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sg-val {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 28px;
  transition: background .2s;
}
.sg-val:hover { background: rgba(255,255,255,.07); }
.sg-val-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(26,86,255,.15);
  border: 1px solid rgba(26,86,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sg-val h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sg-val p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}
@media(max-width:860px) { .sg-story-inner { grid-template-columns: 1fr; gap: 56px; } }

/* CTA */
.sg-cta {
  background: #1a56ff;
  padding: 100px 0;
  text-align: center;
}
.sg-cta-inner { max-width: 680px; margin: 0 auto; }
.sg-cta-h {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}
.sg-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 40px;
}
.sg-cta .sg-btn-primary {
  background: #fff;
  color: #1a56ff;
  border-color: #fff;
}
.sg-cta .sg-btn-primary:hover { background: #f0f0f0; }
.sg-btn-secondary-light {
  color: rgba(255,255,255,.8) !important;
  border-color: rgba(255,255,255,.3) !important;
}
.sg-btn-secondary-light:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,.6) !important;
}

/* ─── CLIENT TESTIMONIAL (old) ──────────── */
.cc-testimonial {
  background: #03091e;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cc-testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,86,255,.4), transparent);
}
.cc-testimonial::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,86,255,.4), transparent);
}
.cc-t-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cc-t-quote-mark {
  font-size: 120px;
  line-height: .7;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: .35;
  margin-bottom: 8px;
  user-select: none;
}
.cc-t-text {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  letter-spacing: -.01em;
  font-style: normal;
  margin-bottom: 40px;
  padding: 0 20px;
}
.cc-t-attr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 10px 22px 10px 10px;
}
.cc-t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue);
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-t-name {
  font-size: 14px; font-weight: 700; color: #fff;
}
.cc-t-loc {
  font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px;
}
.cc-t-loc a {
  color: var(--bright); text-decoration: none; font-weight: 600;
}
.cc-t-loc a:hover { text-decoration: underline; }

/* ─── SERVICES TEASER LINK ───────────────── */
.services-teaser {
  background:#0a0f1e; text-align:center; padding:28px 0;
}
.services-teaser a {
  font-size:15px; font-weight:700; color:var(--bright);
  text-decoration:none; transition:color .2s;
}
.services-teaser a:hover { color:#fff; }

/* ─── SERVICES ───────────────────────────── */
.services { padding:112px 0; background:var(--xlight); }
.sec-eyebrow {
  font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue); margin-bottom:14px; display:flex; align-items:center; gap:10px;
}
.sec-eyebrow::before { content:''; width:24px; height:2px; background:var(--blue); border-radius:2px; }
.sec-h { font-size:clamp(28px,3.5vw,46px); font-weight:900; letter-spacing:-.03em; line-height:1.1; }
.sec-h span { color:var(--blue); }
.sec-sub { font-size:17px; color:var(--ink2); line-height:1.75; max-width:520px; margin-top:14px; }
.sec-head { margin-bottom:64px; }
.sec-head.c { text-align:center; }
.sec-head.c .sec-sub { margin:14px auto 0; }
.sec-head.c .sec-eyebrow { justify-content:center; }
.sec-head.c .sec-eyebrow::before { display:none; }

.svc-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.svc {
  background:var(--white); border:1px solid var(--border); border-radius:var(--rl);
  padding:44px; position:relative; overflow:hidden; transition:all .25s;
}
.svc::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--bright));
  transform:scaleX(0); transform-origin:left; transition:transform .3s;
}
.svc:hover { box-shadow:0 12px 48px rgba(3,9,30,.09); transform:translateY(-4px); border-color:transparent; }
.svc:hover::before { transform:scaleX(1); }
.svc-num { font-size:72px; font-weight:900; letter-spacing:-.04em; color:#111; line-height:1; margin-bottom:-16px; }
.svc-icon { width:54px; height:54px; border-radius:16px; background:var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.svc-title { font-size:24px; font-weight:800; letter-spacing:-.02em; margin-bottom:12px; }
.svc-desc { font-size:15px; color:var(--ink2); line-height:1.75; margin-bottom:28px; }
.svc-list { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom:32px; }
.svc-list li { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ink2); font-weight:500; }
.svc-list li::before {
  content:''; flex-shrink:0; width:18px; height:18px; border-radius:50%;
  background:var(--light);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a56ff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:center; background-size:10px;
}
.svc-cta { font-size:14px; font-weight:700; color:var(--blue); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:gap .2s; }
.svc-cta:hover { gap:10px; }
@media(max-width:680px){ .svc-grid{grid-template-columns:1fr;} }

/* ─── PORTFOLIO ──────────────────────────── */
.portfolio-sec { padding:100px 0; background:var(--xlight); }
.portfolio-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.port-card { background:#fff; border-radius:20px; overflow:hidden; border:1.5px solid var(--border); box-shadow:0 4px 32px rgba(26,86,255,.06); }
.browser-mock { border-radius:14px 14px 0 0; overflow:hidden; }
.browser-bar { background:#1e2130; display:flex; align-items:center; gap:12px; padding:10px 16px; }
.browser-dots { display:flex; gap:6px; }
.browser-dots span { width:10px; height:10px; border-radius:50%; background:#3a3f55; }
.browser-dots span:first-child { background:#ff5f57; }
.browser-dots span:nth-child(2) { background:#febc2e; }
.browser-dots span:last-child { background:#28c840; }
.browser-url { flex:1; background:#2a2f45; border-radius:6px; padding:4px 12px; font-size:11px; color:rgba(255,255,255,.4); font-family:monospace; text-align:center; }
.browser-body { overflow:hidden; }
/* Canterbury Clear preview */
.cc-preview { background:#0d1229; }
.cc-nav { display:flex; justify-content:space-between; align-items:center; padding:10px 16px; background:#0d1229; border-bottom:1px solid rgba(255,255,255,.06); }
.cc-logo { display:flex; align-items:center; gap:8px; }
.cc-logo img { width:28px; height:28px; object-fit:cover; border-radius:6px; flex-shrink:0; }
.cc-logo strong { font-size:11px; color:#fff; display:block; line-height:1.2; }
.cc-logo small { font-size:9px; color:rgba(255,255,255,.4); }
.cc-nav-btn { background:#1a56ff; color:#fff; font-size:9px; font-weight:700; padding:5px 10px; border-radius:6px; white-space:nowrap; }
.cc-hero { display:grid; grid-template-columns:1.1fr .9fr; min-height:210px; }
.cc-hero-text { padding:16px; }
.cc-pill { display:inline-flex; align-items:center; background:rgba(26,86,255,.2); color:#4d8bff; font-size:8px; font-weight:700; padding:3px 8px; border-radius:20px; margin-bottom:8px; }
.cc-hero-text h3 { font-size:14px; font-weight:800; color:#fff; line-height:1.3; margin-bottom:6px; }
.cc-hero-text h3 span { color:#4d8bff; }
.cc-hero-text p { font-size:9px; color:rgba(255,255,255,.5); line-height:1.5; margin-bottom:8px; }
.cc-price { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); border-radius:6px; padding:5px 8px; font-size:8px; color:rgba(255,255,255,.6); margin-bottom:8px; }
.cc-price strong { color:#fff; font-size:10px; }
.cc-btns { display:flex; gap:6px; }
.cc-btn-solid { background:#1a56ff; color:#fff; border:none; border-radius:6px; padding:5px 8px; font-size:8px; font-weight:700; cursor:default; }
.cc-btn-ghost { background:transparent; color:rgba(255,255,255,.6); border:1px solid rgba(255,255,255,.2); border-radius:6px; padding:5px 8px; font-size:8px; cursor:default; }
.cc-hero-img { overflow:hidden; }
.cc-hero-img img { width:100%; height:100%; object-fit:cover; object-position:50% 35%; display:block; }
/* Happy Home Team preview */
.hht-preview {
  background: linear-gradient(160deg, #1a2a1a 0%, #0d1a0d 100%);
  position: relative; overflow: hidden;
}
.hht-preview::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 100%);
  z-index: 0;
}
.hht-nav {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 14px; background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e5e5e5;
}
.hht-logo { display: flex; align-items: center; gap: 6px; }
.hht-logo-icon { width: 28px; height: 28px; }
.hht-logo strong { font-size: 10px; color: #1a3a1a; line-height: 1.2; display: block; }
.hht-logo small { font-size: 8px; color: #2d7a2d; font-weight: 700; }
.hht-nav-phone { background: #2d7a2d; color: #fff; font-size: 8px; font-weight: 700; padding: 5px 9px; border-radius: 6px; display: flex; align-items: center; gap: 4px; }
.hht-hero-content { position: relative; z-index: 1; padding: 18px 16px 14px; min-height: 210px; }
.hht-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 3px 10px; font-size: 8px; color: #fff; font-weight: 600; margin-bottom: 10px; }
.hht-badge .star { color: #f59e0b; }
.hht-badge .cert { color: #f59e0b; }
.hht-h1 { font-size: 18px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.02em; text-transform: uppercase; margin-bottom: 2px; }
.hht-h1 span { color: #f59e0b; display: block; }
.hht-sub { font-size: 8px; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 12px; max-width: 220px; }
.hht-btns { display: flex; gap: 7px; margin-bottom: 16px; }
.hht-btn-orange { background: #f59e0b; color: #1a1a00; border: none; border-radius: 6px; padding: 6px 11px; font-size: 8px; font-weight: 800; cursor: default; }
.hht-btn-dark { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 6px; padding: 6px 11px; font-size: 8px; font-weight: 700; cursor: default; }
.hht-trust { display: flex; gap: 14px; }
.hht-trust-item { font-size: 8px; color: #fff; }
.hht-trust-item strong { font-size: 11px; font-weight: 900; display: block; line-height: 1.1; }
.hht-trust-item small { color: rgba(255,255,255,.6); font-size: 7px; }
/* Port info */
.port-info { padding:20px 24px; }
.port-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.port-client { font-size:15px; font-weight:700; color:var(--ink); }
.port-type { font-size:12px; color:var(--ink3); margin-top:2px; }
.port-link { display:flex; align-items:center; gap:4px; font-size:12px; font-weight:700; color:var(--blue); text-decoration:none; white-space:nowrap; }
.port-link:hover { text-decoration:underline; }
.port-tags { display:flex; flex-wrap:wrap; gap:6px; }
.port-tags span { background:var(--xlight); color:var(--ink2); font-size:11px; font-weight:600; padding:4px 10px; border-radius:20px; border:1px solid var(--border); }
@media(max-width:800px){ .portfolio-grid{grid-template-columns:1fr;} }

.how { padding:112px 0; background:var(--navy); overflow:hidden; position:relative; }
.how::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(26,86,255,.06) 1px, transparent 1px), linear-gradient(90deg,rgba(26,86,255,.06) 1px, transparent 1px);
  background-size:80px 80px;
}
.how-inner { position:relative; z-index:1; }
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:64px; }
.step {
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07);
  border-radius:var(--rl); padding:36px 28px; transition:background .2s;
  position:relative;
}
.step:hover { background:rgba(255,255,255,.06); }
.step-num { font-size:56px; font-weight:900; letter-spacing:-.04em; color:rgba(255,255,255,.25); line-height:1; margin-bottom:-8px; }
.step-icon { width:46px; height:46px; border-radius:13px; background:rgba(26,86,255,.2); border:1px solid rgba(26,86,255,.3); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.step-title { font-size:16px; font-weight:700; color:#fff; margin-bottom:10px; }
.step-desc { font-size:13px; color:rgba(255,255,255,.45); line-height:1.7; }
@media(max-width:860px){ .steps{grid-template-columns:1fr 1fr;} }
@media(max-width:480px){ .steps{grid-template-columns:1fr;} }

/* ─── WHO ─────────────────────────────────── */
.who { padding:112px 0; }
.who-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.who-card {
  background:var(--white); border:1px solid var(--border); border-radius:var(--rl);
  padding:32px 24px; text-align:center; transition:all .25s; cursor:default;
}
.who-card:hover { border-color:var(--blue); box-shadow:0 8px 36px rgba(3,9,30,.08); transform:translateY(-4px); }
.who-icon { width:56px; height:56px; border-radius:50%; background:var(--xlight); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; transition:background .2s; }
.who-card:hover .who-icon { background:var(--light); border-color:rgba(26,86,255,.2); }
.who-name { font-size:15px; font-weight:700; margin-bottom:8px; }
.who-desc { font-size:13px; color:var(--ink3); line-height:1.65; }
@media(max-width:780px){ .who-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:420px){ .who-grid{grid-template-columns:1fr;} }

/* ─── WHY ─────────────────────────────────── */
.why { padding:112px 0; background:var(--xlight); }
.why-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.why-list { display:flex; flex-direction:column; gap:0; }
.why-item {
  display:flex; gap:20px; padding:28px 0;
  border-bottom:1px solid var(--border); align-items:flex-start;
}
.why-item:first-child { padding-top:0; }
.why-item:last-child { border-bottom:none; padding-bottom:0; }
.why-num { font-size:13px; font-weight:800; color:var(--blue); flex-shrink:0; padding-top:3px; font-variant-numeric:tabular-nums; }
.why-item-title { font-size:17px; font-weight:700; margin-bottom:6px; }
.why-item-desc { font-size:14px; color:var(--ink2); line-height:1.7; }
.panel {
  background:var(--navy); border-radius:var(--rl); padding:44px;
  box-shadow:0 24px 64px rgba(3,9,30,.2);
}
.panel-title { font-size:17px; font-weight:800; color:#fff; margin-bottom:32px; }
.panel-stats { display:flex; flex-direction:column; gap:22px; }
.ps-item-top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:10px; }
.ps-lbl { font-size:13px; color:rgba(255,255,255,.5); font-weight:500; }
.ps-val { font-size:15px; font-weight:800; color:var(--bright); }
.ps-track { height:5px; background:rgba(255,255,255,.07); border-radius:3px; overflow:hidden; }
.ps-fill { height:100%; background:linear-gradient(90deg,var(--blue),var(--bright)); border-radius:3px; }
@media(max-width:800px){ .why-inner{grid-template-columns:1fr;} }

/* ─── WHY WE DO IT ──────────────────────── */
.why-we-do-it { padding:112px 0; background:var(--navy); position:relative; overflow:hidden; }
.why-we-do-it::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,86,255,.12) 0%, transparent 70%);
}
.wwdi-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:96px; align-items:center; }
.wwdi-left .sec-eyebrow { color:var(--bright); }
.wwdi-left .sec-eyebrow::before { background:var(--bright); }
.wwdi-left .sec-h { color:#fff; margin-bottom:28px; }
.wwdi-body { font-size:16px; color:rgba(255,255,255,.55); line-height:1.85; margin-bottom:20px; }
.wwdi-body strong { color:rgba(255,255,255,.85); font-weight:600; }
.wwdi-sig { margin-top:40px; display:flex; align-items:center; gap:16px; }
.wwdi-avatar {
  width:52px; height:52px; border-radius:50%; background:var(--blue);
  color:#fff; font-weight:800; font-size:16px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  border:2px solid rgba(77,139,255,.4);
}
.wwdi-sig-name { font-size:15px; font-weight:700; color:#fff; }
.wwdi-sig-role { font-size:13px; color:rgba(255,255,255,.4); margin-top:2px; }
.wwdi-values { display:flex; flex-direction:column; gap:20px; }
.wwdi-val {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r); padding:28px 32px; transition:background .2s;
}
.wwdi-val:hover { background:rgba(255,255,255,.07); }
.wwdi-val-icon { width:42px; height:42px; border-radius:12px; background:rgba(26,86,255,.2); border:1px solid rgba(26,86,255,.3); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.wwdi-val-title { font-size:16px; font-weight:700; color:#fff; margin-bottom:8px; }
.wwdi-val-desc { font-size:14px; color:rgba(255,255,255,.45); line-height:1.7; }
@media(max-width:860px){ .wwdi-inner{grid-template-columns:1fr;gap:56px;} }

/* ─── REVIEWS ────────────────────────────── */
.reviews { padding:112px 0; background:var(--white); }
.reviews-featured { max-width:780px; margin:0 auto 32px; }
.rv {
  background:var(--white); border:1px solid var(--border); border-radius:var(--rl);
  padding:34px; display:flex; flex-direction:column; transition:all .25s;
}
.rv:hover { box-shadow:0 12px 48px rgba(3,9,30,.09); transform:translateY(-3px); }
.rv.hero-rv {
  background:linear-gradient(140deg,#0f2260 0%,var(--navy) 100%);
  border-color:transparent;
  box-shadow:0 16px 56px rgba(3,9,30,.2);
  padding:44px;
}
.rv-stars { display:flex; gap:3px; margin-bottom:20px; }
.rv-star { color:#fbbf24; font-size:15px; }
.rv.hero-rv .rv-star { color:#fcd34d; font-size:18px; }
.rv-text { font-size:15px; line-height:1.8; color:var(--ink2); flex:1; margin-bottom:28px; font-style:italic; }
.rv.hero-rv .rv-text { color:rgba(255,255,255,.75); font-size:17px; }
.rv-author { display:flex; align-items:center; gap:13px; }
.rv-avatar {
  width:44px; height:44px; border-radius:50%; overflow:hidden;
  background:var(--blue); color:#fff; font-weight:800; font-size:14px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.rv-avatar img { width:100%; height:100%; object-fit:cover; }
.rv-name { font-size:14px; font-weight:700; display:flex; align-items:center; gap:6px; }
.rv.hero-rv .rv-name { color:#fff; }
.rv-role { font-size:12px; color:var(--ink3); margin-top:2px; }
.rv.hero-rv .rv-role { color:rgba(255,255,255,.4); }
.g-badge { display:flex; align-items:center; gap:5px; font-size:11px; font-weight:600; color:var(--ink3); margin-top:2px; }
.rv.hero-rv .g-badge { color:rgba(255,255,255,.4); }
.reviews-more-cta { text-align:center; margin-top:40px; font-size:14px; color:var(--ink3); }
.reviews-more-cta a { color:var(--blue); font-weight:600; text-decoration:none; }
.reviews-more-cta a:hover { text-decoration:underline; }

/* ─── CTA ─────────────────────────────────── */
.cta-sec { padding:112px 0; background:var(--navy); position:relative; overflow:hidden; }
.cta-sec::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 70% at 50% 100%, rgba(26,86,255,.2) 0%, transparent 70%);
}
.cta-inner { position:relative; z-index:1; text-align:center; max-width:720px; margin:0 auto; }
.cta-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:100px; padding:7px 18px; font-size:12px; font-weight:700;
  color:rgba(255,255,255,.7); margin-bottom:30px;
}
.cta-tag::before { content:''; width:7px; height:7px; border-radius:50%; background:#4ade80; animation:pulse 2s infinite; }
.cta-h { font-size:clamp(34px,5vw,64px); font-weight:900; letter-spacing:-.04em; line-height:1.05; color:#fff; margin-bottom:20px; }
.cta-h em { font-style:normal; background:linear-gradient(95deg,#4d8bff,#a5c4ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.cta-p { font-size:17px; color:rgba(255,255,255,.55); line-height:1.8; margin-bottom:44px; }
.cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.cta-note { margin-top:24px; font-size:13px; color:rgba(255,255,255,.3); }

/* ─── ORDER FORM ─────────────────────────── */
.order-sec { background:var(--xlight); padding:100px 0; }
.order-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.order-packages { display:flex; flex-direction:column; gap:12px; }
.pkg { background:#fff; border:1.5px solid var(--border); border-radius:14px; padding:18px 20px; position:relative; }
.pkg-pop { border-color:var(--blue); background:var(--blue); }
.pkg-badge { position:absolute; top:-11px; left:18px; background:var(--bright); color:#fff; font-size:11px; font-weight:700; letter-spacing:.06em; padding:3px 10px; border-radius:20px; text-transform:uppercase; }
.pkg-name { font-size:14px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.pkg-pop .pkg-name, .pkg-pop .pkg-price, .pkg-pop .pkg-desc { color:#fff; }
.pkg-price { font-size:20px; font-weight:800; color:var(--blue); margin-bottom:4px; }
.pkg-price strong { font-size:24px; }
.pkg-price span { font-size:13px; font-weight:500; opacity:.7; }
.pkg-pop .pkg-price { color:#fff; }
.pkg-desc { font-size:13px; color:var(--ink3); }
.order-right { background:#fff; border-radius:20px; padding:40px; box-shadow:0 4px 40px rgba(26,86,255,.07); border:1.5px solid var(--border); }
.order-form { display:flex; flex-direction:column; gap:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:13px; font-weight:600; color:var(--ink2); }
.form-group input, .form-group select, .form-group textarea {
  border:1.5px solid var(--border); border-radius:10px; padding:11px 14px;
  font-size:14px; font-family:inherit; color:var(--ink); background:#fff;
  outline:none; transition:border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--blue); }
.form-group textarea { resize:vertical; }
.order-submit { width:100%; justify-content:center; font-size:15px; padding:15px 24px; margin-top:4px; }
.form-note { font-size:12px; color:var(--ink3); text-align:center; margin-top:-8px; }
.form-success { display:none; background:#e8f5e9; color:#2e7d32; border-radius:10px; padding:14px 18px; font-size:14px; font-weight:600; text-align:center; margin-top:4px; }
@media(max-width:900px){ .order-inner{grid-template-columns:1fr;gap:48px;} }
@media(max-width:480px){ .form-row{grid-template-columns:1fr;} .order-right{padding:24px;} }

/* ─── FOOTER ─────────────────────────────── */
footer { background:var(--navy); padding:80px 0 36px; border-top:1px solid rgba(255,255,255,.05); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:60px; }
.footer-logo img { height:34px; display:block; margin-bottom:18px; }
.footer-about { font-size:14px; color:rgba(255,255,255,.4); line-height:1.8; max-width:250px; }
.footer-socials { display:flex; gap:9px; margin-top:22px; }
.footer-socials a {
  width:36px; height:36px; border-radius:9px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.07);
  color:rgba(255,255,255,.45); text-decoration:none; font-size:12px; font-weight:700;
  display:flex; align-items:center; justify-content:center; transition:all .2s;
}
.footer-socials a:hover { background:var(--blue); color:#fff; border-color:var(--blue); }
.footer-head { font-size:11px; font-weight:800; color:#fff; text-transform:uppercase; letter-spacing:.1em; margin-bottom:18px; }
.footer-ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-ul a { font-size:14px; color:rgba(255,255,255,.4); text-decoration:none; transition:color .15s; }
.footer-ul a:hover { color:#60a5fa; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid rgba(255,255,255,.06); font-size:13px; color:rgba(255,255,255,.25); flex-wrap:wrap; gap:12px; }
.footer-bottom a { color:rgba(255,255,255,.25); text-decoration:none; transition:color .15s; }
.footer-bottom a:hover { color:#60a5fa; }
@media(max-width:800px){ .footer-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:480px){ .footer-grid{grid-template-columns:1fr;} }
