/* ============================================
   Quickser — Brand Stylesheet
   Colors sourced from the Quickser x ASK deck
   ============================================ */

:root {
  --blue: #0050e0;
  --blue-dark: #003aa8;
  --blue-darker: #002872;
  --orange: #e35938;
  --orange-light: #f0805e;
  --gold: #f2a93b;
  --ink: #0d0d0d;
  --gray-700: #4a4a4a;
  --gray-500: #737373;
  --gray-300: #d8dbe3;
  --gray-100: #f4f6fb;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 20px 45px -20px rgba(0, 40, 114, 0.35);
  --shadow-soft: 0 10px 30px -12px rgba(0, 40, 114, 0.18);
  --container: 1180px;
  --font: 'Plus Jakarta Sans', 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-style: italic;
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  display: inline-block;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--tight {
  padding: 64px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--gray-500);
  font-size: 1.08rem;
  line-height: 1.65;
}

.lede {
  font-style: italic;
  font-weight: 700;
  color: var(--gray-700);
  font-size: 1.15rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(227, 89, 56, 0.55);
}

.btn-primary:hover {
  background: #cf4c2f;
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 14px 30px -10px rgba(0, 20, 60, 0.35);
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-blue {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-300);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}

.brand img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.98rem;
  transition: color 0.15s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero (blue / blob background) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 110px 0 120px;
}

.blob-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
}

.blob-orange {
  background: radial-gradient(circle at 30% 30%, var(--orange-light), var(--orange) 60%, transparent 75%);
}

.blob-gold {
  background: radial-gradient(circle at 40% 40%, var(--gold), rgba(242, 169, 59, 0) 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* ---------- Hero (full-bleed photo variant) ---------- */

.hero-photo {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--blue-darker);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 18, 56, 0.9) 0%, rgba(0, 32, 90, 0.78) 28%, rgba(0, 50, 224, 0.45) 52%, rgba(0, 50, 224, 0.08) 78%);
}

.hero-photo .container {
  position: relative;
  z-index: 2;
  padding: 130px 0;
}

.hero-content {
  max-width: 600px;
}

.hero-content .lede {
  max-width: 520px;
}

.hero-frame {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 20px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.hero-stats div span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-style: italic;
}

.hero-visual {
  position: relative;
}

.hero-illustration {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  line-height: 0;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-caption {
  margin-top: 20px;
  text-align: center;
  font-style: italic;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.hero-visual .hero-card {
  position: absolute;
  left: -24px;
  bottom: -32px;
  width: 250px;
  padding: 22px 24px;
}

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.hero-card .card-label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card .card-label img {
  height: 20px;
}

.tap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px dashed var(--gray-300);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.tap-row:last-child {
  border-bottom: none;
}

.tap-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
  display: inline-block;
}

.tap-row .left {
  display: flex;
  align-items: center;
}

/* small page header (used on inner pages) */

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 76px 0 90px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  text-transform: uppercase;
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 16px;
  max-width: 640px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.breadcrumb span {
  color: var(--white);
}

/* ---------- Cards / Grid ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 34px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0, 80, 224, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p {
  color: var(--gray-500);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* alternating section background */

.section-alt {
  background: var(--gray-100);
}

/* ---------- Band / CTA ---------- */

.band {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-transform: uppercase;
  max-width: 720px;
  margin: 0 auto 16px;
}

.band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Card flow diagram (about/home) ---------- */

.flow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.flow-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  width: 220px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: rotate(-4deg);
}

.flow-card small {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 16px;
}

.flow-list div {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--gray-700);
  text-align: center;
}

/* ---------- Timeline (about) ---------- */

.timeline {
  display: grid;
  gap: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
}

.timeline-item .dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-item .dot-col .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.timeline-item .dot-col .line {
  flex: 1;
  width: 2px;
  background: var(--gray-300);
  margin-top: 8px;
}

.timeline-item:last-child .dot-col .line {
  display: none;
}

.timeline-item h4 {
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Values grid (about) ---------- */

.value-item {
  display: flex;
  gap: 18px;
}

.value-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  font-style: italic;
}

.value-item h4 {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-item p {
  color: var(--gray-500);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---------- Stats strip ---------- */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stats-strip div {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-300);
}

.stats-strip div:last-child {
  border-right: none;
}

.stats-strip strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}

.stats-strip span {
  color: var(--gray-500);
  font-size: 0.88rem;
  font-style: italic;
}

/* ---------- Services page pricing-ish table ---------- */

.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.service-detail.reverse .media {
  order: 2;
}

.service-detail .media {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail .media .badge-num {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.service-detail .icon-big {
  font-size: 5rem;
}

.service-detail h3 {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-detail p {
  color: var(--gray-500);
  line-height: 1.7;
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.96rem;
}

.check-list li::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0, 80, 224, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info {
  display: grid;
  gap: 20px;
  align-content: start;
}

.info-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-card .icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(0, 80, 224, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-card h4 {
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.info-card p, .info-card a {
  color: var(--gray-500);
  font-size: 0.94rem;
  line-height: 1.55;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field label {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--gray-700);
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.15s ease;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-note {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  background: rgba(0, 80, 224, 0.08);
  border: 1px solid rgba(0, 80, 224, 0.25);
  color: var(--blue);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: rgba(224, 0, 0, 0.08);
  border: 1px solid rgba(224, 0, 0, 0.25);
  color: #c00;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.form-error.show {
  display: block;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  margin-top: 20px;
}

/* ---------- FAQ ---------- */

.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 16px;
  cursor: pointer;
}

.faq-item summary {
  list-style: none;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--gray-500);
  margin-top: 14px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .brand {
  color: var(--white);
}

.footer-about p {
  margin-top: 16px;
  line-height: 1.65;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
}

.footer h5 {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: color 0.15s ease;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ---------- Legal documents (EULA / Privacy Policy) ---------- */

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  text-transform: none;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-300);
  color: var(--ink);
}

.legal-content > h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--gray-700);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 22px;
  color: var(--gray-700);
  line-height: 1.75;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-caps {
  background: var(--gray-100);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.legal-todo {
  background: rgba(227, 89, 56, 0.12);
  color: var(--orange);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
}

.legal-disclaimer {
  margin-top: 56px;
  padding: 24px 28px;
  background: rgba(242, 169, 59, 0.12);
  border: 1px solid rgba(242, 169, 59, 0.4);
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--gray-300);
  margin: 40px 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .media {
    order: 0;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip div:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta .btn-outline-blue {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar.open .nav-links {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-300);
  }

  .hero-frame {
    padding: 32px;
  }

  .hero-photo {
    min-height: 520px;
  }

  .hero-photo .container {
    padding: 90px 0;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(0, 18, 56, 0.55) 0%, rgba(0, 18, 56, 0.88) 55%, rgba(0, 18, 56, 0.95) 100%);
  }

  .hero-visual .hero-card {
    position: static;
    width: auto;
    margin-top: -40px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .flow-list {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 40px 24px;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
