/* FutureGuard Investments — brand: navy + gold/orange */
:root {
  --navy: #0b1f3a;
  --navy-deep: #061526;
  --navy-mid: #143056;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --orange: #e8941a;
  --cream: #f7f4ec;
  --ink: #1a2433;
  --muted: #5c6b7a;
  --white: #ffffff;
  --line: rgba(201, 162, 39, 0.35);
  --shadow: 0 18px 50px rgba(6, 21, 38, 0.18);
  --radius: 4px;
  --font-display: "Sora", sans-serif;
  --font-body: "Figtree", sans-serif;
  --max: 1120px;
  --header-h: 132px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(6, 21, 38, 0.1);
}

.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
}

.logo-link img {
  height: 161px;
  width: auto;
  max-width: min(520px, 72vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(201, 162, 39, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(232, 148, 26, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(232, 148, 26, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.15);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 21, 38, 0.35) 0%, rgba(6, 21, 38, 0.45) 55%, rgba(6, 21, 38, 0.62) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 48px,
      rgba(201, 162, 39, 0.03) 48px,
      rgba(201, 162, 39, 0.03) 49px
    );
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 720px; */
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: rise 0.9s ease 0.15s forwards;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: rise 0.9s ease 0.3s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s ease 0.45s forwards;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2rem;
  opacity: 0;
  animation: rise 0.9s ease 0.6s forwards;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease, border-color 0.25s ease;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--orange));
  border-color: transparent;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background:
    linear-gradient(160deg, var(--navy-deep), var(--navy-mid)),
    radial-gradient(ellipse at 80% 20%, rgba(232, 148, 26, 0.18), transparent 50%);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 40px,
      rgba(201, 162, 39, 0.05) 40px,
      rgba(201, 162, 39, 0.05) 41px
    );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  font-size: 1.05rem;
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold-light));
  margin: 1rem 0 0;
  border: none;
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 36rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.section-navy .section-head h2 {
  color: var(--white);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Feature strips (no card clutter) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
  border-top: 1px solid var(--line);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
}

.feature-item:first-child {
  padding-left: 0;
}

.feature-item:last-child {
  border-right: none;
  padding-right: 0;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin: 0;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--navy);
  margin: 0;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 340px;
  background:
    linear-gradient(145deg, var(--navy), var(--navy-mid));
  overflow: hidden;
}

.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(232, 148, 26, 0.35), transparent 45%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.04) 28px,
      rgba(255, 255, 255, 0.04) 29px
    );
}

.split-visual .mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.split-visual img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: var(--white);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.split-copy p:last-of-type {
  margin-bottom: 1.75rem;
}

/* Home — how we work */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  counter-reset: none;
}

.process-step {
  padding: 2rem 1.35rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  border-right: none;
  padding-right: 0;
}

.process-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 650;
  color: var(--navy);
  margin: 0;
}

.process-step p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.audience-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink);
}

.audience-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 3rem;
  max-width: 36rem;
  padding: 0;
}

.values-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink);
}

.values-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

/* Services slider */
.slider-section {
  padding-top: 4.5rem;
}

.svc-slider {
  position: relative;
}

.svc-slider-track {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 320px;
}

.svc-slide {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  min-height: 360px;
  animation: slide-in 0.45s ease;
}

.svc-slide[hidden] {
  display: none;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.svc-slide-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.svc-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.svc-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(6, 21, 38, 0.55));
  pointer-events: none;
}

.svc-slide-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.25rem 2rem;
  color: var(--white);
  background:
    linear-gradient(160deg, var(--navy), var(--navy-mid));
}

.svc-slide-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}

.svc-slide-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.svc-slide-body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  max-width: 28rem;
  margin-bottom: 0.5rem;
}

.svc-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(11, 31, 58, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

/* Services */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr;
  gap: 1.75rem;
  align-items: center;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.service-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-mid);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-row:hover .service-media img {
  transform: scale(1.04);
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.service-index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.service-row p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 38rem;
  margin-bottom: 0.55rem;
}

.service-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(232, 148, 26, 0.2), rgba(201, 162, 39, 0.25));
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
}

/* Home services preview */
.services-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.svc-tile {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.svc-tile-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-mid);
}

.svc-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-tile:hover .svc-tile-img img {
  transform: scale(1.05);
}

.svc-tile-body {
  padding: 2rem 1.75rem;
  transition: background 0.25s;
}

.svc-tile:hover {
  background: #faf8f2;
}

.svc-tile h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.svc-tile p {
  color: var(--muted);
  font-size: 0.94rem;
}

.svc-tile .tile-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background:
    linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 50%, #1a3a62 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: -100px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 148, 26, 0.2), transparent 65%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
  position: relative;
}

.cta-band .btn {
  position: relative;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.info-block:last-child {
  border-bottom: 1px solid var(--line);
}

.info-icon {
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 148, 26, 0.12);
  color: var(--orange);
}

.info-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.info-text {
  flex: 1;
  min-width: 0;
}

.info-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.info-block p,
.info-block a {
  color: var(--ink);
  font-size: 1.02rem;
  word-break: break-word;
}

.info-block a:hover {
  color: var(--orange);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d5d0c4;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: rgba(201, 162, 39, 0.15);
  border-left: 3px solid var(--gold);
  color: var(--navy);
}

.form-message.show {
  display: block;
}

/* Privacy */
.policy-content {
  max-width: 720px;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.policy-content li {
  margin-bottom: 0.4rem;
}

.policy-updated {
  font-size: 0.9rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.15rem;
  background: var(--white);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 380px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  transition: color 0.2s;
  word-break: break-word;
  line-height: 1.4;
}

.footer-col a svg {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  opacity: 0.85;
}

.footer-col a span {
  min-width: 0;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.footer-address svg {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  fill: currentColor;
  opacity: 0.85;
}

.footer-address span {
  min-width: 0;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
  }

  .feature-item:first-child,
  .feature-item:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-visual {
    min-height: 240px;
  }

  .process-row {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 1rem 1.5rem 0;
  }

  .process-step:nth-child(even) {
    padding-left: 1rem;
    padding-right: 0;
    border-left: 1px solid var(--line);
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-bottom: none;
  }

  .process-step:last-child {
    padding-right: 0;
  }

  .services-preview {
    grid-template-columns: 1fr;
  }

  .svc-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .svc-slide-media {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .svc-slide-media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(6, 21, 38, 0.35));
  }

  .svc-slide-body {
    padding: 1.75rem 1.35rem 2rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-media {
    max-width: 100%;
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 112px;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(even) {
    border-left: none;
    border-bottom: 1px solid var(--line);
    padding: 1.35rem 0;
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .logo-link img {
    height: 88px;
    max-width: min(340px, 70vw);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(11, 31, 58, 0.1);
    box-shadow: 0 12px 28px rgba(6, 21, 38, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    align-items: center;
    min-height: auto;
    padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: 3.25rem 0;
  }

  .page-hero {
    padding: calc(var(--header-h) + 2.75rem) 0 2.5rem;
  }

  .svc-slide-media {
    min-height: 180px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .footer-brand img {
    width: min(300px, 100%);
    padding: 0.7rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .svc-tile-body {
    padding: 1.35rem 1.15rem;
  }

  .service-media {
    aspect-ratio: 16 / 10;
  }
}

/* ——— Floating Call / WhatsApp ——— */
.float-actions {
  position: fixed;
  inset: auto 0 1.35rem;
  z-index: 90;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding-inline: 1rem;
}

.float-btn {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(6, 21, 38, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(6, 21, 38, 0.34);
  outline: none;
}

.float-btn--call {
  color: var(--white);
  background: var(--navy);
}

.float-btn--whatsapp {
  color: var(--white);
  background: #25d366;
}

@media (max-width: 480px) {
  .float-actions {
    bottom: 1rem;
    padding-inline: 0.75rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 23px;
    height: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.35s ease;
    transform: none;
  }

  .hero-slide.is-active {
    transform: none;
  }

  .hero h1,
  .hero-lead,
  .hero-cta,
  .hero-dots {
    animation: none;
    opacity: 1;
  }

  .float-btn {
    transition: none;
  }
}
