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

:root {
  --navy:      #0b1f3a;
  --blue:      #1352a2;
  --bright:    #1e88e5;
  --sky:       #64b5f6;
  --white:     #ffffff;
  --offwhite:  #f4f8ff;
  --slate:     #37474f;
  --gold:      #f9a825;
  --gold-dark: #f57f17;
  --footer-bg: #060e1a;
}

html { scroll-behavior: smooth; scroll-padding-top: 75px; }
body { font-family: 'Lato', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }

/* ── SECTION WRAP ── */
.section-wrap { max-width: 1200px; margin: 0 auto; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 82px;
  background: #ffffff;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
/* CSS text logo */
.nav-logo-brand { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.brand-row { display: flex; align-items: center; gap: 2px; }
.brand-name {
  font-family: 'Lato', sans-serif; font-size: 1.9rem; font-weight: 900;
  font-style: italic; color: var(--navy); letter-spacing: -0.02em; line-height: 1;
}
.brand-com {
  font-family: 'Lato', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--bright); align-self: flex-end; padding-bottom: 2px; margin-left: 1px;
}
.brand-icon-wrap {
  height: 58px; overflow: hidden; margin-left: 8px; flex-shrink: 0;
}
.brand-icon {
  height: 96px; width: auto; mix-blend-mode: multiply; display: block;
}
.brand-line { height: 2.5px; background: var(--gold); border-radius: 1px; width: 100%; }

nav ul { list-style: none; display: flex; gap: 32px; align-items: center; }
nav ul li a {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; transition: color 0.2s;
}
nav ul li a:hover { color: var(--bright); }
.nav-quote { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 22px; border-radius: 3px; font-weight: 700 !important; }
.nav-quote:hover { background: var(--gold-dark) !important; }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.32); }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(5,12,25,0.38);
  z-index: 2;
}
.hero-content {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  z-index: 3; padding: 0 56px; max-width: 860px;
}
.hero-tag {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-family: 'Oswald', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  padding: 6px 14px; border-radius: 2px; margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 8rem); font-weight: 700;
  color: var(--white); line-height: 0.96; letter-spacing: 0.01em;
  text-transform: uppercase; margin-bottom: 20px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-content h1 em { font-style: normal; color: #26c6da; }
.hero-content p {
  font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.7;
  margin-bottom: 36px; font-weight: 300; max-width: 520px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-btns { display: flex; flex-direction: column; gap: 12px; max-width: 380px; animation: fadeUp 1s 0.3s ease both; }
.btn-gold {
  background: var(--gold); color: var(--navy);
  font-family: 'Oswald', sans-serif; font-size: 1.05rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 20px 40px; border-radius: 4px; text-decoration: none;
  transition: all 0.2s; text-align: center;
  box-shadow: 0 4px 24px rgba(249,168,37,0.35);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.6); color: rgba(255,255,255,0.92);
  font-family: 'Oswald', sans-serif; font-size: 1.05rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 18px 40px; border-radius: 4px; text-decoration: none;
  transition: all 0.2s; text-align: center;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-dots { position: absolute; bottom: 38px; left: 80px; z-index: 4; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.dot.active { background: var(--gold); transform: scale(1.35); }
.hero-scroll {
  position: absolute; bottom: 34px; right: 50px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Oswald', sans-serif;
}
.scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s infinite; }

/* ── STATS BAR ── */
.stats-bar { background: #0a0d12; border-bottom: none; padding-bottom: 16px; }
.stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
.stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; display: block; }
.stats-domain { text-align: center; font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold); opacity: 0.65; padding-bottom: 8px; }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 100px 60px; background: var(--offwhite); }
.how-it-works .section-eyebrow { color: var(--bright); }
.steps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-top: 56px;
}
.step {
  background: var(--white); padding: 44px 36px; border-radius: 6px;
  position: relative; overflow: hidden;
  border-top: 3px solid transparent; transition: border-color 0.25s;
}
.step:hover { border-top-color: var(--gold); }
.step-num {
  font-family: 'Oswald', sans-serif; font-size: 4rem; font-weight: 700;
  color: var(--gold); opacity: 1; position: absolute; top: 12px; right: 16px; line-height: 1;
}
.step-icon { font-size: 2.2rem; display: block; margin-bottom: 18px; }
.step h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 12px;
}
.step p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; font-weight: 300; }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px; padding-top: 70px;
  color: var(--gold); font-size: 1.6rem; opacity: 0.55;
}

/* ── SHARED SECTION LABELS ── */
.section-eyebrow { font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bright); margin-bottom: 12px; display: block; }
.section-heading { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 8px; }
.section-sub { color: var(--slate); font-size: 1rem; font-weight: 300; margin-bottom: 56px; max-width: 520px; }

/* ── SERVICES ── */
.services { padding: 110px 60px; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc { background: var(--navy); padding: 44px 36px; position: relative; overflow: hidden; transition: all 0.3s; }
.svc::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.svc:hover::before { transform: scaleX(1); }
.svc:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(19,82,162,0.12); }
.svc-num { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); opacity: 1; line-height: 1; margin-bottom: 14px; display: block; }
.svc:hover .svc-num { opacity: 1; color: var(--gold); }
.svc h3 { font-family: 'Oswald', sans-serif; font-size: 1.375rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); margin-bottom: 10px; }
.svc p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }
.svc-price { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.85rem; color: var(--navy); font-weight: 700; background: var(--gold); padding: 5px 14px; border-radius: 20px; margin-top: 18px; letter-spacing: 0.06em; }

/* ── BEFORE/AFTER ── */
.results { padding: 110px 60px; background: var(--navy); }
.results .section-heading { color: var(--white); }
.results .section-eyebrow { color: var(--sky); font-size: 1rem; font-weight: 700; letter-spacing: 0.28em; }
.results .section-sub { color: rgba(255,255,255,0.5); margin-bottom: 52px; }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ba-card { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.45); }
.ba-showcase { position: relative; height: 340px; overflow: hidden; }
.ba-showcase img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.ba-showcase-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(30,136,229,0.92); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  padding: 7px 16px; border-radius: 4px;
}
.ba-wrap { position: relative; height: 340px; overflow: hidden; cursor: col-resize; user-select: none; touch-action: none; }
.ba-before-img, .ba-after-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-before-img img, .ba-after-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; display: block; }
.ba-after-img { clip-path: inset(0 0 0 50%); }
.ba-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: var(--gold); z-index: 10; pointer-events: none; }
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 11; color: var(--navy); font-size: 0.85rem; font-weight: 900;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5); pointer-events: none;
}
.ba-tag { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-between; z-index: 9; pointer-events: none; }
.tag-b, .tag-a { padding: 9px 20px; font-family: 'Oswald', sans-serif; font-size: 0.88rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; }
.tag-b { background: rgba(0,0,0,0.72); color: #ff8a80; }
.tag-a { background: rgba(30,136,229,0.88); color: var(--white); }
.ba-label { text-align: center; padding: 14px 0 0; font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 110px 60px; background: var(--offwhite); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: var(--white); padding: 36px 40px; border-radius: 6px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(11,31,58,0.06);
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 18px; display: block; }
.review-text { font-size: 0.97rem; color: var(--slate); line-height: 1.8; font-weight: 300; font-style: italic; margin-bottom: 24px; }
.reviewer { display: flex; flex-direction: column; gap: 4px; }
.reviewer-name { font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); }
.reviewer-loc { font-size: 0.78rem; color: rgba(55,71,79,0.55); letter-spacing: 0.04em; }

/* ── WHY US ── */
.why { background: var(--white); padding: 100px 60px; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text p { font-size: 1.05rem; color: var(--slate); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--navy); }
.check-icon { width: 22px; height: 22px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--navy); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feat { background: var(--offwhite); padding: 32px 28px; border-radius: 6px; border-left: 4px solid var(--bright); transition: border-color 0.2s; }
.feat:hover { border-color: var(--gold); }
.feat-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.feat h4 { font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.feat p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ── CTA BAND + FORM ── */
.cta-band {
  background: linear-gradient(105deg, var(--navy) 0%, var(--blue) 100%);
  padding: 90px 60px;
  border-top: 4px solid var(--gold);
}
.cta-inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: start; }
.cta-text h2 { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: 0.03em; margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,0.62); font-size: 1rem; font-weight: 300; line-height: 1.75; margin-bottom: 36px; }
.cta-phone { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); text-decoration: none; display: block; margin-bottom: 16px; white-space: nowrap; transition: color 0.2s; }
.cta-phone:hover { color: #ffe082; }
.cta-email-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: 'Oswald', sans-serif; display: block; margin-bottom: 6px; }
.cta-email { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 500; color: var(--sky); text-decoration: none; display: block; letter-spacing: 0.03em; border-bottom: 2px solid rgba(100,181,246,0.3); padding-bottom: 4px; transition: color 0.2s, border-color 0.2s; }
.cta-email:hover { color: var(--white); border-color: var(--sky); }

/* ── QUOTE FORM ── */
.quote-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 40px;
}
.form-title {
  font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--white);
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid rgba(249,168,37,0.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: 'Oswald', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px; padding: 12px 14px;
  color: var(--white); font-family: 'Lato', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: none; }
.form-submit { width: 100%; cursor: pointer; border: none; font-size: 1rem; margin-top: 6px; padding: 18px; letter-spacing: 0.12em; }

.svc-featured { border-color: var(--gold) !important; border-width: 2px !important; background: linear-gradient(135deg, #0d2040 0%, #1a3460 100%) !important; }
.svc-featured h3 { color: var(--gold); }

/* ── NEW FULL QUOTE FORM ── */
.nqf {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  font-family: 'Lato', sans-serif;
}
.nqf .sec-lbl {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.nqf .sec-lbl:first-child { margin-top: 0; }
.nqf .sec-lbl::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, rgba(249,168,37,0.3), transparent); border-radius: 2px; }
.nqf .fld { margin-bottom: 1rem; }
.nqf .fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.nqf .fld-lbl { display: block; font-size: 11px; font-weight: 700; color: #475569; margin-bottom: 5px; letter-spacing: 0.04em; text-transform: uppercase; font-family: 'Oswald', sans-serif; }
.nqf .fld-lbl .opt { font-weight: 400; color: #94a3b8; text-transform: none; }
.nqf input[type="text"], .nqf input[type="email"], .nqf input[type="tel"], .nqf select, .nqf textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 9px;
  font-size: 14px; font-family: 'Lato', sans-serif; color: #1e293b;
  background: #f8fafc; transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.nqf input[type="text"]:focus, .nqf input[type="email"]:focus, .nqf input[type="tel"]:focus, .nqf select:focus, .nqf textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(19,82,162,0.12);
}
.nqf textarea { resize: vertical; min-height: 75px; }
.nqf select {
  appearance: none; background-color: #f8fafc; padding-right: 36px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
/* service cards */
.nqf .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nqf .svc { position: relative; }
.nqf .svc input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.nqf .svc-lbl {
  position: relative !important; display: flex !important; flex-direction: column !important; gap: 4px !important;
  padding: 12px 30px 11px 11px !important; border: 1.5px solid #cbd5e1 !important; border-radius: 10px !important;
  cursor: pointer !important; background: #f1f5f9 !important; transition: all 0.15s !important; height: 100% !important;
  box-shadow: none !important;
}
.nqf .svc.feat .svc-lbl { border: 2px solid var(--blue) !important; background: #eff6ff !important; }
.nqf .svc input:checked + .svc-lbl { border-color: var(--navy) !important; background: var(--navy) !important; box-shadow: 0 4px 14px rgba(11,31,58,0.3) !important; }
.nqf .svc input:checked + .svc-lbl .svc-nm { color: #fff; }
.nqf .svc input:checked + .svc-lbl .svc-sb { color: rgba(255,255,255,0.65); }
.nqf .svc input:checked + .svc-lbl .svc-bdg { background: rgba(255,255,255,0.2); color: #fff; }
.nqf .svc-chk {
  position: absolute; top: 8px; right: 8px; width: 16px; height: 16px;
  border-radius: 50%; border: 1.5px solid #cbd5e1; background: white;
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.nqf .svc input:checked + .svc-lbl .svc-chk { background: var(--gold); border-color: var(--gold); }
.nqf .svc-chk::after { content: ''; width: 4px; height: 7px; border-right: 2px solid white; border-bottom: 2px solid #1e293b; transform: rotate(45deg) translate(-1px,-1px); opacity: 0; transition: opacity 0.15s; }
.nqf .svc input:checked + .svc-lbl .svc-chk::after { opacity: 1; }
.nqf .svc-bdg { display: inline-block; font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--blue); color: white; padding: 2px 6px; border-radius: 20px; align-self: flex-start; }
.nqf .svc-ico { font-size: 20px; line-height: 1; }
.nqf .svc-nm { font-size: 11px; font-weight: 700; color: #1e293b; line-height: 1.35; }
.nqf .svc-sb { font-weight: 400; color: #64748b; }
/* day toggles */
.nqf .avail-banner { display: flex; align-items: center; gap: 7px; background: #fff5f5; border: 1.5px solid #fecaca; border-radius: 9px; padding: 8px 12px; font-size: 12px; font-weight: 600; color: #b91c1c; margin-bottom: 10px; }
.nqf .avail-banner span { font-weight: 400; color: #7f1d1d; }
.nqf .day-row { display: flex; gap: 6px; flex-wrap: wrap; }
.nqf .day { position: relative; }
.nqf .day input[type="checkbox"] { position: absolute !important; opacity: 0 !important; width: 0 !important; height: 0 !important; }
.nqf .day-lbl { display: flex !important; flex-direction: column !important; align-items: center !important; padding: 7px 11px 5px !important; border-radius: 10px !important; border: 1.5px solid #e2e8f0 !important; font-size: 13px !important; font-weight: 700 !important; color: #475569 !important; cursor: pointer !important; background: #fff !important; transition: all 0.15s !important; user-select: none !important; line-height: 1 !important; font-family: 'Oswald', sans-serif !important; letter-spacing: 0.04em !important; text-transform: none !important; margin: 0 !important; }
.nqf .day-lbl .day-name { display: block !important; font-size: 13px !important; font-weight: 700 !important; font-family: 'Oswald', sans-serif !important; }
.nqf .day-lbl .day-tag { display: block !important; font-size: 8px !important; font-weight: 700 !important; letter-spacing: 0.06em !important; text-transform: uppercase !important; margin-top: 3px !important; border-top: 1px solid rgba(0,0,0,0.06) !important; padding-top: 3px !important; width: 100% !important; text-align: center !important; color: #94a3b8; }
.nqf .day.open .day-lbl { border-color: #e2e8f0 !important; color: #475569 !important; background: #fff !important; }
.nqf .day.open .day-lbl .day-tag { color: #94a3b8 !important; }
.nqf .day.limited .day-lbl { border-color: #f59e0b !important; color: #92400e !important; background: #fffbeb !important; }
.nqf .day.limited .day-lbl .day-tag { color: #d97706 !important; }
.nqf .day.hot .day-lbl { border-color: #ef4444 !important; color: #b91c1c !important; background: #fff5f5 !important; }
.nqf .day.hot .day-lbl .day-tag { color: #ef4444 !important; }
.nqf .day input:checked + .day-lbl { background: var(--navy) !important; border-color: var(--navy) !important; color: white !important; box-shadow: 0 2px 8px rgba(11,31,58,0.25) !important; }
.nqf .day input:checked + .day-lbl .day-tag { color: rgba(255,255,255,0.75) !important; }
/* photo */
.nqf .photo-drop { border: 2px dashed #cbd5e1; border-radius: 11px; background: #f8fafc; padding: 1.3rem 1rem; text-align: center; cursor: pointer; transition: all 0.18s; position: relative; }
.nqf .photo-drop:hover, .nqf .photo-drop.drag-over { border-color: var(--blue); background: #eff6ff; }
.nqf .photo-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.nqf .drop-ico { font-size: 26px; margin-bottom: 4px; }
.nqf .drop-cta { font-size: 13px; font-weight: 700; color: var(--blue); }
.nqf .drop-hint { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.nqf .photo-btns { display: flex; gap: 8px; margin-top: 8px; }
.nqf .pbtn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px 10px; border-radius: 8px; border: 1.5px solid #e2e8f0; background: white; font-size: 12px; font-weight: 700; color: #475569; cursor: pointer; transition: all 0.15s; font-family: 'Lato', sans-serif; }
.nqf .pbtn:hover { border-color: var(--blue); color: var(--blue); background: #eff6ff; }
.nqf .prev-grid { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 10px; }
.nqf .prev-thumb { position: relative; width: 72px; height: 72px; border-radius: 8px; overflow: hidden; border: 2px solid #e2e8f0; flex-shrink: 0; }
.nqf .prev-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nqf .rm-btn { position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; background: rgba(0,0,0,0.65); color: white; border: none; border-radius: 50%; font-size: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
/* submit */
.nqf .btn-submit {
  width: 100%; margin-top: 0.5rem; padding: 15px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy); border: none; border-radius: 10px;
  font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  box-shadow: 0 5px 18px rgba(249,168,37,0.4);
}
.nqf .btn-submit:hover { opacity: 0.92; }
.nqf .btn-submit:active { transform: scale(0.98); }
.nqf .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
/* error */
.nqf .err-msg { display: none; background: #fee2e2; color: #991b1b; padding: 12px 16px; border-radius: 8px; text-align: center; font-size: 13px; font-weight: 500; margin-top: 1rem; }
/* confirm screen */
.nqf .confirm { display: none; text-align: center; padding: 0.5rem 0; }
.nqf .confirm-chk { width: 68px; height: 68px; background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 30px; box-shadow: 0 6px 20px rgba(11,31,58,0.35); color: var(--gold); }
.nqf .confirm-title { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.nqf .confirm-sub { font-size: 14px; color: #475569; margin-bottom: 1.4rem; line-height: 1.55; }
.nqf .confirm-steps { background: #f8fafc; border-radius: 11px; padding: 1rem 1.1rem; text-align: left; margin-bottom: 1.2rem; border: 1.5px solid #e2e8f0; }
.nqf .cs { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: #334155; padding: 6px 0; }
.nqf .cs + .cs { border-top: 1px solid #e2e8f0; }
.nqf .cs-ico { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.nqf .btn-again { width: 100%; padding: 12px; background: #f1f5f9; color: var(--blue); border: 2px solid #dbeafe; border-radius: 9px; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.15s; }
.nqf .btn-again:hover { background: #dbeafe; }

/* ── TOP QUOTE SECTION ── */
.quote-top {
  background: #0a1628;
  border-top: 4px solid #c9a227;
  padding: 80px 60px;
}
.qt-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
}
.qt-heading {
  font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #c9a227; margin-bottom: 12px;
}
.qt-sub {
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.6;
}
.qt-trust {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}
.qt-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: rgba(255,255,255,0.8); font-weight: 300;
}
.qt-chk {
  width: 20px; height: 20px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--navy); font-weight: 900; flex-shrink: 0;
}
.qt-phone {
  font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700;
  color: var(--gold); text-decoration: none; display: block; transition: color 0.2s;
}
.qt-phone:hover { color: #ffe082; }

/* ── RESULTS SUBLINE ── */
.results-subline { color: var(--gold) !important; }

/* ── CTA ACTION BOX ── */
.cta-action-box {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(249,168,37,0.45);
  border-radius: 12px; padding: 48px 40px; text-align: center;
}
.cab-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.cab-title {
  font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 12px; letter-spacing: 0.05em;
}
.cab-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; font-weight: 300; line-height: 1.65; margin-bottom: 28px; }
.cab-btn {
  display: block; padding: 18px 32px; margin-bottom: 20px;
  background: var(--gold); color: var(--navy);
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border-radius: 4px; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249,168,37,0.35);
}
.cab-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }
.cab-trust { display: flex; flex-direction: column; gap: 8px; }
.cab-trust span { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }

/* ── FOOTER ── */
footer { background: var(--white); padding: 36px 60px; border-top: 3px solid var(--gold); box-shadow: 0 -2px 20px rgba(11,31,58,0.07); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { height: 96px; width: auto; mix-blend-mode: multiply; }
footer p { font-size: 0.8rem; color: rgba(11,31,58,0.45); }
footer a { color: var(--bright); text-decoration: none; }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--offwhite); border: 1px solid rgba(11,31,58,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--navy); text-decoration: none;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.85; } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; }
  nav ul { display: none; }
  .brand-name { font-size: 2.1rem; }
  .brand-com { font-size: 1.25rem; }
  .brand-icon-wrap { height: 62px; }
  .brand-icon { height: 102px; }
  .hero-content { padding: 0 28px; max-width: 100%; }
  .hero-btns { max-width: 100%; }
  .stats-inner { max-width: 100%; }
  .hero-dots { left: 28px; }
  .hero-scroll { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .how-it-works { padding: 70px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-arrow { display: none; }

  .services { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .results { padding: 70px 20px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-wrap { height: 260px; }
  .ba-showcase { height: 260px; }

  .testimonials { padding: 70px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .why { padding: 70px 20px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }

  .quote-top { padding: 90px 20px 60px; }
  .qt-wrap { grid-template-columns: 1fr; gap: 40px; }

  .cta-band { padding: 60px 20px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }

  footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
