@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #111c2e;
  --navy: #0b1931;
  --navy-2: #10264a;
  --navy-3: #17345f;
  --primary: #f26b38;
  --primary-dark: #d9501f;
  --primary-soft: #fff1e9;
  --cream: #fbfaf7;
  --surface: #ffffff;
  --surface-alt: #f3f6fa;
  --text: #263247;
  --muted: #68758a;
  --border: #e1e7ef;
  --success: #16835f;
  --shadow-sm: 0 12px 32px rgba(11, 25, 49, .07);
  --shadow-md: 0 24px 60px rgba(11, 25, 49, .12);
  --shadow-lg: 0 34px 90px rgba(6, 17, 35, .2);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { overflow-wrap: break-word; }
h1, h2, h3, h4 { color: var(--ink); letter-spacing: -.025em; }
p { margin: 0 0 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 102px 0; position: relative; }
.section.sm { padding: 78px 0; }
.section.soft { background: var(--surface-alt); }
.section.cream { background: var(--cream); }
.section.dark { background: var(--navy); color: #dce5f3; overflow: hidden; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .eyebrow { color: #ffb294; }

.section-head { max-width: 680px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.row-head { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 28px; }
.section-head.row-head > :first-child { max-width: 680px; }

.eyebrow, .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before, .badge::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.section-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  font-weight: 700;
  line-height: 1.14;
}

.section-title.small { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
.section-desc { max-width: 640px; margin: 0; color: var(--muted); font-size: 1.02rem; }
.section-head.center .section-desc { margin-inline: auto; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.align-center { align-items: center; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.btn, .btn-outline, .btn-white, .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn { background: var(--primary); color: #fff; box-shadow: 0 11px 26px rgba(242, 107, 56, .25); }
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 32px rgba(242, 107, 56, .3); }
.btn-outline { color: var(--ink); background: transparent; border-color: #cfd7e3; }
.btn-outline:hover { color: var(--primary-dark); border-color: var(--primary); transform: translateY(-2px); }
.btn-white { color: var(--navy); background: #fff; box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); }
.text-link { min-height: 0; padding: 0; color: var(--primary-dark); }
.text-link:hover { color: var(--navy); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); box-shadow: 0 9px 26px rgba(11, 25, 49, .06); }
.topbar { background: var(--navy); color: #dce5f3; font-size: 12.5px; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.topbar-links { display: flex; align-items: center; gap: 20px; min-width: 0; }
.topbar-links a, .topbar-links span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-links i { color: #ff9c72; }
.topbar-note { color: #fff; font-weight: 600; }

.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 154px; max-height: 66px; object-fit: contain; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.main-nav a { display: inline-flex; align-items: center; gap: 5px; color: #344056; font-size: 14px; font-weight: 600; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-dark); }
.main-nav > ul > li > a { position: relative; min-height: 82px; }
.main-nav > ul > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--primary); transition: right .2s ease; }
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a.active::after { right: 0; }
.header-cta { min-height: 46px; padding-inline: 18px; }
.header-cta.active { background: var(--primary-dark); }

.has-dropdown { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: -18px;
  z-index: 40;
  display: grid !important;
  gap: 2px !important;
  width: 270px;
  padding: 12px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-md);
  transition: .2s ease;
}
.submenu a { display: block; padding: 10px 12px; border-radius: 9px; font-size: 13px; }
.submenu a:hover { background: var(--primary-soft); }
.has-dropdown:hover .submenu, .has-dropdown.open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--border); border-radius: 12px; color: var(--navy); background: #fff; font-size: 21px; cursor: pointer; }

.hero {
  min-height: 670px;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: #fff;
  background: var(--navy) url('../images/safe-gati-ncr-hero.png') center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 44%, rgba(72, 105, 143, .34) 0%, rgba(35, 66, 101, .12) 43%, transparent 64%),
    linear-gradient(90deg, rgba(12, 34, 59, .76) 0%, rgba(9, 29, 52, .58) 38%, rgba(7, 22, 40, .22) 68%, rgba(7, 22, 40, .03) 100%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 140px; z-index: -1; background: linear-gradient(0deg, rgba(5, 15, 31, .42), transparent); }
.hero-inner { padding-top: 104px; padding-bottom: 160px; }
.hero-copy { max-width: 700px; }
.hero .eyebrow { color: #ffd1bd; }
.hero-copy h1 { max-width: 680px; margin: 0 0 22px; color: #fff; font-size: clamp(2.55rem, 5vw, 4.65rem); font-weight: 700; line-height: 1.04; text-shadow: 0 5px 28px rgba(5, 15, 31, .3); }
.hero-copy h1 span { color: #ff9a6f; }
.hero-copy > p { max-width: 610px; margin: 0 0 30px; color: #dbe5f3; font-size: clamp(1rem, 1.7vw, 1.14rem); line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.06); }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.hero-point { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: #eef4fc; background: rgba(255,255,255,.07); font-size: 12.5px; backdrop-filter: blur(8px); }
.hero-point i { color: #ff9a6f; }

.quote-dock { position: relative; z-index: 8; margin-top: -86px; }
.quote-panel { overflow: hidden; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.quote-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 24px; color: #fff; background: var(--primary); }
.quote-panel-head h2 { margin: 0; color: #fff; font-size: 1.22rem; font-weight: 700; }
.quote-panel-head p { margin: 2px 0 0; color: #ffe9df; font-size: 13px; }
.quote-panel-head-note { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; font-size: 12.5px; }
.quick-quote-form { display: grid; grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1fr auto; gap: 12px; padding: 24px; background: #fff; }
.field { display: grid; gap: 7px; min-width: 0; }
.field label { color: #4a586f; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea, input, textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d9e0ea;
  border-radius: 10px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus, input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(242,107,56,.12); }
.field-submit { align-self: end; }
.field-submit .btn { min-height: 48px; white-space: nowrap; box-shadow: none; }
.quote-trust { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); background: #fff; }
.quote-trust-item { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 10px; color: #56647a; border-right: 1px solid var(--border); font-size: 12.5px; font-weight: 600; }
.quote-trust-item:last-child { border: 0; }
.quote-trust-item i { color: var(--success); font-size: 17px; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { position: relative; height: 100%; padding: 28px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; right: -28px; bottom: -34px; width: 100px; height: 100px; border-radius: 50%; background: var(--primary-soft); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #f2c9b8; box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scale(1.25); }
.service-icon { position: relative; z-index: 1; width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 14px; color: var(--primary-dark); background: var(--primary-soft); font-size: 23px; }
.service-card > i { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px; border-radius: 14px; color: var(--primary-dark); background: var(--primary-soft); font-size: 23px; }
.service-card h3 { position: relative; z-index: 1; margin: 0 0 10px; font-size: 1.13rem; font-weight: 700; }
.service-card p { position: relative; z-index: 1; margin: 0 0 18px; color: var(--muted); }

.featured-services {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.featured-services .section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.featured-services .section-title {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.featured-services .section-title span {
  color: var(--primary-dark);
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 13px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-showcase-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(11, 25, 49, .07);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.service-showcase-card:hover {
  transform: translateY(-7px);
  border-color: #f1c6b4;
  box-shadow: 0 24px 54px rgba(11, 25, 49, .13);
}

.service-showcase-media {
  height: 270px;
  display: block;
  overflow: hidden;
  background: #e8edf3;
}

.service-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-showcase-card:nth-child(2) .service-showcase-media img {
  object-position: center 42%;
}

.service-showcase-card:hover .service-showcase-media img {
  transform: scale(1.045);
}

.service-showcase-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 24px 22px;
}

.service-showcase-body h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-showcase-body p {
  flex: 1;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.72;
}

.service-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.service-know-btn,
.service-call-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.service-know-btn {
  justify-content: space-between;
  color: var(--navy);
  background: #f8fafc;
  border: 1px solid var(--border);
}

.service-know-btn i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(11, 25, 49, .08);
}

.service-call-btn {
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0 8px 20px rgba(242, 107, 56, .2);
}

.service-know-btn:hover {
  color: var(--primary-dark);
  border-color: #f1bda7;
  transform: translateY(-2px);
}

.service-call-btn:hover {
  color: #fff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .service-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .featured-services .section-head { margin-bottom: 32px; }
  .service-showcase-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-showcase-media { height: 240px; }
  .service-showcase-body { padding: 22px 19px 19px; }
  .service-showcase-body h3 { font-size: 1.22rem; }
  .service-card-actions { grid-template-columns: 1fr 1fr; }
  .service-know-btn { justify-content: center; }
  .service-know-btn i { width: auto; height: auto; background: transparent; box-shadow: none; }
}

.simple-process-section {
  overflow: hidden;
  background: #f4f7fb;
}

.simple-process-section .section-head {
  max-width: 740px;
  margin-bottom: 52px;
}

.simple-process-section .section-title {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.simple-process-section .section-title span {
  color: var(--primary-dark);
}

.simple-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 18px 0 44px;
}

.simple-process-grid::before {
  content: "";
  position: absolute;
  top: 89px;
  right: 4%;
  left: 4%;
  border-top: 1px dashed #efb89f;
}

.simple-process-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 330px;
  padding: 126px 27px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(11, 25, 49, .07);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.simple-process-card:nth-child(even) {
  margin-top: 40px;
}

.simple-process-card:hover {
  transform: translateY(-7px);
  border-color: #f1c6b4;
  box-shadow: 0 25px 58px rgba(11, 25, 49, .12);
}

.process-watermark {
  position: absolute;
  top: 12px;
  right: 22px;
  color: #d8e1ec;
  font-size: clamp(4.2rem, 6vw, 5.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
}

.simple-process-icon {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: var(--primary-dark);
  background: #fffaf7;
  border: 1px solid #fff1e9;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(11, 25, 49, .06);
  font-size: 27px;
}

.simple-process-icon > span {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.simple-process-card h3 {
  margin: 16px 0 11px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
}

.simple-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .simple-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .simple-process-grid::before { display: none; }
  .simple-process-card:nth-child(even) { margin-top: 0; }
}

@media (max-width: 640px) {
  .simple-process-section .section-head { margin-bottom: 30px; }
  .simple-process-grid { grid-template-columns: 1fr; gap: 16px; padding: 0; }
  .simple-process-card { min-height: 285px; padding: 116px 24px 28px; }
  .process-watermark { font-size: 4.6rem; }
}

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(44px, 7vw, 88px); align-items: center; }
.about-copy .section-title {
  max-width: 650px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.about-shifting-process {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(242, 107, 56, .07), transparent 28%),
    #f4f7fb;
}

.about-shifting-process .section-head {
  max-width: 720px;
  margin-bottom: 54px;
}

.about-shifting-process .section-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.about-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-process-grid::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #f4b296, var(--primary), #f4b296);
}

.about-process-step {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-process-node {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: #fff;
  background: var(--primary);
  border: 6px solid #f4f7fb;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(242, 107, 56, .24);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}

.about-process-card {
  position: relative;
  min-height: 260px;
  padding: 30px 26px 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(11, 25, 49, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.about-process-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -34px;
  width: 90px;
  height: 90px;
  background: var(--primary-soft);
  border-radius: 50%;
}

.about-process-step:hover .about-process-card {
  transform: translateY(-6px);
  border-color: #f3c5b2;
  box-shadow: 0 24px 52px rgba(11, 25, 49, .11);
}

.about-process-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 15px;
  font-size: 22px;
}

.about-process-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.about-process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .about-process-grid::before { display: none; }
  .about-process-card { min-height: 235px; }
}

@media (max-width: 620px) {
  .about-shifting-process .section-head { margin-bottom: 34px; }
  .about-process-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-process-step { padding-left: 58px; }
  .about-process-node { position: absolute; top: 22px; left: 0; margin: 0; }
  .about-process-card { min-height: 0; padding: 24px 22px; }
  .about-process-icon { width: 48px; height: 48px; margin-bottom: 17px; }
}

.about-why {
  background: #fff;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(46px, 7vw, 86px);
  align-items: center;
}

.about-why-content .section-title {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.about-why-content .section-title span {
  color: var(--primary-dark);
}

.about-why-content > .section-desc {
  max-width: 620px;
  line-height: 1.75;
}

.about-why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-why-card {
  min-height: 190px;
  padding: 23px 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 17px;
  box-shadow: 0 13px 32px rgba(11, 25, 49, .06);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.about-why-card:hover {
  transform: translateY(-5px);
  border-color: #f0c5b2;
  box-shadow: 0 20px 40px rgba(11, 25, 49, .1);
}

.about-why-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 11px;
  font-size: 17px;
}

.about-why-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.about-why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.about-why-visual {
  position: relative;
  height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.about-why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 20, 38, .18));
}

.about-why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-why-badge {
  position: absolute;
  z-index: 1;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(7, 20, 38, .2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-why-badge--top { top: 18px; }
.about-why-badge--bottom { bottom: 18px; background: var(--primary-dark); }

@media (max-width: 900px) {
  .about-why-grid { grid-template-columns: 1fr; }
  .about-why-visual { height: 520px; }
  .about-why-visual img { object-position: center; }
}

@media (max-width: 620px) {
  .about-why-cards { grid-template-columns: 1fr; margin-top: 26px; }
  .about-why-card { min-height: 0; }
  .about-why-visual { height: 390px; border-radius: 22px; }
  .about-why-badge { left: 12px; padding: 9px 11px; font-size: 9px; }
  .about-why-badge--top { top: 12px; }
  .about-why-badge--bottom { bottom: 12px; }
}
.media-stack { position: relative; min-height: 530px; }
.media-stack .media-main { width: 84%; height: 480px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media-stack .media-main img { width: 100%; height: 100%; object-fit: cover; }
.media-stack .media-small { position: absolute; right: 0; bottom: 0; width: 48%; height: 235px; padding: 8px; overflow: hidden; background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); }
.media-stack .media-small img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; }
.media-label { position: absolute; left: 24px; bottom: 28px; max-width: 220px; padding: 17px 18px; color: #fff; background: var(--navy); border-radius: 14px; box-shadow: var(--shadow-md); }
.media-label strong { display: block; font-size: 1rem; }
.media-label span { color: #bdcadc; font-size: 12.5px; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 20px; margin: 26px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #3c4a61; font-weight: 600; }
.check-list i { flex: 0 0 auto; width: 23px; height: 23px; display: grid; place-items: center; margin-top: 2px; color: #fff; background: var(--success); border-radius: 50%; font-size: 11px; }

.about-premium {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(242, 107, 56, .07), transparent 27%),
    linear-gradient(135deg, #fffdf9 0%, #fbfaf7 54%, #fff 100%);
}

.about-premium::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(242, 107, 56, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(242, 107, 56, .025);
  pointer-events: none;
}

.about-premium .about-grid {
  position: relative;
  z-index: 1;
  gap: clamp(44px, 6vw, 76px);
}

.about-premium .media-stack {
  min-height: 505px;
}

.about-premium .media-stack::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 54px;
  bottom: 28px;
  left: -18px;
  border: 1px solid rgba(242, 107, 56, .2);
  border-radius: 34px;
}

.about-premium .media-stack .media-main {
  position: relative;
  width: 86%;
  height: 458px;
  border-radius: 28px;
  box-shadow: 0 26px 65px rgba(11, 25, 49, .15);
}

.about-premium .media-stack .media-main img {
  object-position: center 40%;
}

.about-premium .media-stack .media-small {
  width: 47%;
  height: 218px;
  padding: 7px;
  border: 1px solid #fff;
  border-radius: 21px;
  box-shadow: 0 24px 60px rgba(11, 25, 49, .2);
}

.about-premium .media-label {
  left: 20px;
  bottom: 22px;
  max-width: 215px;
  padding: 16px 17px;
  background: linear-gradient(135deg, #17345f, #10264a);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  box-shadow: 0 18px 42px rgba(11, 25, 49, .24);
}

.about-premium .about-copy {
  position: relative;
  z-index: 2;
}

.about-premium .about-title {
  max-width: none;
  margin-bottom: 20px;
  white-space: nowrap;
  font-size: clamp(1.9rem, 2.55vw, 2.3rem);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.about-premium .about-copy > p {
  max-width: 650px;
  color: #526075;
  font-size: 14.5px;
  line-height: 1.78;
}

.about-premium .about-copy > p:first-of-type {
  color: #344157;
}

.about-premium .check-list {
  gap: 10px 12px;
  margin: 24px 0 28px;
}

.about-premium .check-list li {
  min-height: 46px;
  align-items: center;
  padding: 9px 11px;
  color: #344157;
  background: rgba(255, 255, 255, .82);
  border: 1px solid #e8edf3;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 25, 49, .035);
  font-size: 12.5px;
}

.about-premium .check-list i {
  margin-top: 0;
  background: #168d69;
}

.about-premium .btn {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .about-premium .about-title {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .about-premium .about-grid { gap: 34px; }
  .about-premium .media-stack { min-height: 410px; }
  .about-premium .media-stack::before { right: 34px; bottom: 20px; left: -7px; }
  .about-premium .media-stack .media-main { width: 91%; height: 380px; }
  .about-premium .media-stack .media-small { width: 49%; height: 174px; }
  .about-premium .media-label { left: 12px; bottom: 18px; max-width: 188px; padding: 13px 14px; }
  .about-premium .about-title { font-size: 1.9rem; }
  .about-premium .check-list { grid-template-columns: 1fr; }
}

.awareness-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #0b1931 0%, #17345f 50%, #0b1931 100%);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 16px 38px rgba(11, 25, 49, .14);
}

.awareness-marquee::before,
.awareness-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(35px, 7vw, 120px);
  pointer-events: none;
}

.awareness-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0b1931, transparent);
}

.awareness-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #0b1931, transparent);
}

.awareness-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  padding: 18px 0;
  will-change: transform;
  animation: safe-gati-marquee 42s linear infinite;
}

.awareness-marquee:hover .awareness-marquee-track {
  animation-play-state: paused;
}

.awareness-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.awareness-marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 22px;
  color: #f8fbff;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .015em;
}

.awareness-marquee-group span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: var(--primary);
  border: 2px solid rgba(255, 255, 255, .28);
  box-shadow: 0 0 0 4px rgba(242, 107, 56, .1);
}

@keyframes safe-gati-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 620px) {
  .awareness-marquee-track { padding: 15px 0; animation-duration: 34s; }
  .awareness-marquee-group span { gap: 13px; padding: 0 17px; font-size: 12.5px; }
  .awareness-marquee-group span::before { width: 7px; height: 7px; }
}

.process-section::before { content: ""; position: absolute; width: 420px; height: 420px; top: -220px; right: -110px; border-radius: 50%; background: rgba(255,255,255,.035); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; position: relative; }
.process-grid::before { content: ""; position: absolute; left: 11%; right: 11%; top: 36px; border-top: 1px dashed rgba(255,255,255,.25); }
.process-step { position: relative; z-index: 1; padding: 0 12px; text-align: center; background: transparent; border: 0; box-shadow: none; }
.process-num, .process-step .num { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 22px; border: 7px solid var(--navy); outline: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; background: var(--primary); font-size: 1rem; font-weight: 700; }
.process-step h3 { margin: 0 0 9px; color: #fff; font-size: 1.02rem; }
.process-step p { margin: 0; color: #aebbd0; font-size: 14px; }

.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.benefit-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: 15px; }
.benefit-card i { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; color: var(--primary-dark); background: var(--primary-soft); border-radius: 11px; }
.benefit-card h3 { margin: 0 0 3px; font-size: .96rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }

.services-cta-section {
  background: #f6f8fb;
}

.services-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 54px;
  align-items: center;
  padding: clamp(38px, 5vw, 58px);
  overflow: hidden;
  color: #dce5f3;
  background:
    radial-gradient(circle at 92% 15%, rgba(242, 107, 56, .2), transparent 25%),
    linear-gradient(120deg, #0b1931 0%, #112c50 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  box-shadow: 0 26px 62px rgba(7, 20, 38, .18);
}

.services-cta::before {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -125px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, .025);
}

.services-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.services-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #ffab88;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.services-cta-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.18;
}

.services-cta-copy > p {
  max-width: 620px;
  margin: 0;
  color: #b8c6d9;
  font-size: 14.5px;
}

.services-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.services-cta-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e2eaf5;
  font-size: 12px;
  font-weight: 600;
}

.services-cta-points i {
  color: #ff9c72;
}

.services-cta-actions {
  position: relative;
  z-index: 1;
  width: 230px;
  display: grid;
  gap: 12px;
}

.services-cta-actions .btn {
  width: 100%;
  min-height: 54px;
}

.services-cta-call {
  position: relative;
  min-height: 68px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.services-cta-call:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .25);
}

.services-cta-call > span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(242, 107, 56, .9);
  border-radius: 11px;
}

.services-cta-call small {
  align-self: end;
  color: #aebed2;
  font-size: 10px;
  line-height: 1.2;
}

.services-cta-call strong {
  align-self: start;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}

@media (max-width: 820px) {
  .services-cta { grid-template-columns: 1fr; gap: 30px; }
  .services-cta-actions { width: min(100%, 420px); grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .services-cta-section { padding-block: 48px; }
  .services-cta { gap: 26px; padding: 30px 22px; border-radius: 22px; }
  .services-cta-points { display: grid; gap: 10px; margin-top: 20px; }
  .services-cta-actions { grid-template-columns: 1fr; }
}

.locations-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(242, 107, 56, .1), transparent 24%),
    radial-gradient(circle at 94% 88%, rgba(23, 52, 95, .09), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #fff 54%, #f7f9fc 100%);
}

.locations-showcase::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -95px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(242, 107, 56, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(242, 107, 56, .025);
}

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

.locations-showcase .section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.locations-showcase .section-title {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.locations-showcase .section-title span {
  color: var(--primary-dark);
}

.location-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}

.location-showcase-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .95);
  border: 1px solid #e8edf3;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(11, 25, 49, .075);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.location-showcase-card:hover {
  transform: translateY(-7px);
  border-color: #efc4b2;
  box-shadow: 0 24px 54px rgba(11, 25, 49, .14);
}

.location-card-media {
  position: relative;
  aspect-ratio: 1.48 / 1;
  overflow: visible;
  background-image: url('../images/locations/safe-gati-location-atlas.png');
  background-repeat: no-repeat;
  background-size: 400% auto;
  background-color: #dce6ef;
  transition: filter .28s ease;
}

.location-showcase-card:hover .location-card-media {
  filter: saturate(1.06) contrast(1.02);
}

.location-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(11, 25, 49, .16));
  pointer-events: none;
}

.location-photo-1 { background-position: 0% 0%; }
.location-photo-2 { background-position: 33.333% 0%; }
.location-photo-3 { background-position: 66.667% 0%; }
.location-photo-4 { background-position: 100% 0%; }
.location-photo-5 { background-position: 0% 50%; }
.location-photo-6 { background-position: 33.333% 50%; }
.location-photo-7 { background-position: 66.667% 50%; }
.location-photo-8 { background-position: 100% 50%; }
.location-photo-9 { background-position: 0% 100%; }
.location-photo-10 { background-position: 33.333% 100%; }
.location-photo-11 { background-position: 66.667% 100%; }
.location-photo-12 { background-position: 100% 100%; }

.location-card-pin {
  position: absolute;
  right: 16px;
  bottom: -20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(11, 25, 49, .18);
  font-size: 15px;
  transition: transform .25s ease, background .25s ease;
}

.location-showcase-card:hover .location-card-pin {
  transform: scale(1.07);
  background: var(--primary-dark);
}

.location-card-content {
  min-height: 96px;
  padding: 22px 18px 18px;
}

.location-card-content h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.location-card-content p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.location-showcase-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.location-showcase-action .btn-outline {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(11, 25, 49, .06);
}

@media (max-width: 1080px) {
  .location-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .location-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
}

@media (max-width: 520px) {
  .locations-showcase .section-head { margin-bottom: 30px; }
  .location-showcase-grid { grid-template-columns: 1fr; }
  .location-card-media { aspect-ratio: 1.75 / 1; }
  .location-card-content { min-height: 88px; }
  .location-showcase-action { margin-top: 28px; }
  .location-showcase-action .btn-outline { width: 100%; }
}

.gallery-page-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(242, 107, 56, .08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.gallery-page-section .section-head {
  max-width: 730px;
  margin-bottom: 44px;
}

.gallery-page-section .section-title {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.gallery-page-section .section-title span {
  color: var(--primary-dark);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-page-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.15 / 1;
  margin: 0;
  overflow: hidden;
  background: #dfe6ed;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  box-shadow: 0 17px 40px rgba(11, 25, 49, .1);
  isolation: isolate;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}

.gallery-page-item--contain img,
.work-gallery-item.work-gallery-item--contain img {
  object-fit: contain;
  background: #e8edf3;
}

.gallery-page-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 17, 35, .86) 100%);
}

.gallery-page-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.gallery-page-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 3px;
  color: #fff;
}

.gallery-page-item figcaption small {
  color: #ffad8b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-page-item figcaption strong {
  font-size: 1rem;
  line-height: 1.35;
}

.gallery-video-section {
  border-top: 1px solid #e6ebf2;
}

@media (max-width: 900px) {
  .gallery-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
}

@media (max-width: 560px) {
  .gallery-page-section .section-head { margin-bottom: 30px; }
  .gallery-page-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-page-item { aspect-ratio: 1.25 / 1; border-radius: 17px; }
}

.work-gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(242, 107, 56, .09), transparent 25%),
    linear-gradient(145deg, #fffdfa 0%, #fbfaf7 48%, #f6f8fb 100%);
}

.work-gallery-section::before {
  content: "";
  position: absolute;
  top: 72px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(242, 107, 56, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(242, 107, 56, .025);
}

.work-gallery-section .container {
  position: relative;
  z-index: 1;
}

.work-gallery-section .section-head {
  max-width: 730px;
  margin-bottom: 46px;
}

.work-gallery-section .section-title {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.work-gallery-section .section-title span {
  color: var(--primary-dark);
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 18px;
}

.work-gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #dfe6ed;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(11, 25, 49, .12);
  isolation: isolate;
}

.work-gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.work-gallery-item:nth-child(2),
.work-gallery-item:nth-child(3) { grid-column: span 5; }
.work-gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.work-gallery-item:nth-child(5),
.work-gallery-item:nth-child(6) { grid-column: span 4; }
.work-gallery-item:nth-child(7) { grid-column: span 8; }

.work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .4s ease;
}

.work-gallery-item:nth-child(1) img { object-position: center 38%; }
.work-gallery-item:nth-child(4) img { object-position: center 34%; }
.work-gallery-item:nth-child(6) img { object-position: center 44%; }
.work-gallery-item:nth-child(7) img { object-position: center 55%; }

.work-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(6, 17, 35, .82) 100%);
  transition: background .35s ease;
}

.work-gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.06);
}

.work-gallery-item:hover::after {
  background: linear-gradient(180deg, rgba(6, 17, 35, .04) 25%, rgba(6, 17, 35, .88) 100%);
}

.work-gallery-caption {
  position: absolute;
  right: 19px;
  bottom: 17px;
  left: 19px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2px 14px;
  color: #fff;
}

.work-gallery-caption small {
  grid-column: 1;
  color: #ffad8b;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-gallery-caption strong {
  grid-column: 1;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -.015em;
}

.work-gallery-caption i {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--navy);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.work-gallery-item:hover .work-gallery-caption i {
  color: #fff;
  background: var(--primary);
  transform: translateX(3px);
}

.work-gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.work-gallery-action .btn {
  border-radius: 999px;
}

@media (max-width: 900px) {
  .work-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 235px;
  }

  .work-gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .work-gallery-item:nth-child(1),
  .work-gallery-item:nth-child(7) { grid-column: span 2; }
}

@media (max-width: 560px) {
  .work-gallery-section .section-head { margin-bottom: 30px; }
  .work-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; gap: 14px; }
  .work-gallery-item:nth-child(n) { grid-column: 1; }
  .work-gallery-item:first-child { min-height: 280px; }
  .work-gallery-caption { right: 15px; bottom: 14px; left: 15px; }
  .work-gallery-caption i { width: 36px; height: 36px; }
  .work-gallery-action { margin-top: 28px; }
  .work-gallery-action .btn { width: 100%; }
}

.video-reels-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(242, 107, 56, .08), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.video-reels-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.video-reels-head > div:first-child {
  max-width: 700px;
}

.video-reels-head .section-title {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.video-reels-head .section-title span {
  color: var(--primary-dark);
}

.reel-nav {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.reel-nav button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 25, 49, .07);
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.reel-nav button:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.reel-viewport {
  width: min(1400px, calc(100% - 28px));
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.reel-viewport::-webkit-scrollbar { display: none; }
.reel-viewport:active { cursor: grabbing; }

.reel-audio-credit {
  margin: 2px 0 0;
  color: #8290a5;
  font-size: 9.5px;
  text-align: right;
}

.reel-audio-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reel-audio-credit a:hover { color: var(--primary-dark); }

.reel-track {
  width: max-content;
  display: flex;
  gap: 18px;
  padding: 5px 26px 28px;
}

.reel-sequence {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
}

.reel-card {
  position: relative;
  width: 248px;
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border: 4px solid #fff;
  border-radius: 29px;
  box-shadow: 0 18px 44px rgba(11, 25, 49, .18);
  cursor: pointer;
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease;
}

.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 27px 58px rgba(11, 25, 49, .24);
}

.reel-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 15, 31, .05) 35%, rgba(5, 15, 31, .85) 100%);
  pointer-events: none;
}

.reel-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(6, 17, 35, .56);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.reel-card-copy {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  text-align: left;
}

.reel-card-copy small {
  color: #ffad8b;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reel-card-copy strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.reel-card-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #dbe5f2;
  font-size: 10.5px;
}

body.reel-modal-open { overflow: hidden; }

.reel-modal[hidden] { display: none; }

.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.reel-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 11, 23, .88);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.reel-modal-panel {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 32px));
  max-height: calc(100vh - 34px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #050b16;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 27px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .55);
}

.reel-modal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #050b16;
}

.reel-modal-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: none;
}

.reel-modal-actions button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(6, 17, 35, .68);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  pointer-events: auto;
  font-size: 10.5px;
  font-weight: 700;
}

.reel-modal-actions button:hover { background: var(--primary); }

.reel-modal-caption {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  z-index: 1;
  padding: 54px 22px 15px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(4, 11, 23, .88));
  pointer-events: none;
}

.reel-modal-caption small {
  color: #ffad8b;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reel-modal-caption h3 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 1.25rem;
}

.reel-modal-panel:fullscreen {
  width: 100vw;
  height: 100vh;
  max-height: none;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
}

@media (max-width: 700px) {
  .video-reels-head { align-items: flex-start; margin-bottom: 30px; }
  .video-reels-head .section-desc { display: none; }
  .reel-nav button { width: 43px; height: 43px; }
  .reel-track { gap: 13px; padding-inline: 18px; }
  .reel-sequence { gap: 13px; }
  .reel-card { width: min(72vw, 260px); border-radius: 25px; }
  .reel-modal { padding: 12px; }
  .reel-modal-panel { width: min(100%, 430px); max-height: calc(100vh - 24px); border-radius: 23px; }
  .reel-modal-actions button span { display: none; }
  .reel-modal-actions button { width: 40px; padding: 0; }
}

.area-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.area-map { position: relative; min-height: 430px; padding: 30px; border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 45%, #253f67 0, #10264a 52%, #0b1931 100%); overflow: hidden; box-shadow: var(--shadow-lg); }
.area-map::before, .area-map::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.area-map::before { width: 360px; height: 360px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.area-map::after { width: 235px; height: 235px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.area-center { position: absolute; left: 50%; top: 50%; z-index: 3; transform: translate(-50%,-50%); width: 108px; height: 108px; display: grid; place-items: center; text-align: center; color: #fff; background: var(--primary); border: 9px solid rgba(255,255,255,.18); border-radius: 50%; font-size: 12px; font-weight: 700; line-height: 1.3; }
.area-pin { position: absolute; z-index: 3; padding: 7px 10px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 11.5px; backdrop-filter: blur(8px); }
.pin-1 { left: 9%; top: 20%; }.pin-2 { right: 9%; top: 17%; }.pin-3 { left: 7%; bottom: 18%; }.pin-4 { right: 7%; bottom: 20%; }.pin-5 { left: 43%; bottom: 7%; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.area-list a, .area-list span { padding: 8px 12px; color: #435169; background: #fff; border: 1px solid var(--border); border-radius: 999px; font-size: 12.5px; font-weight: 600; }
.area-list a:hover { color: var(--primary-dark); border-color: var(--primary); }

.testimonial-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 100%, rgba(242, 107, 56, .06), transparent 27%),
    linear-gradient(180deg, #f8fafc 0%, #f5f8fc 100%);
  border-top: 1px solid #e8edf4;
}

.testimonial-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.testimonial-heading .service-kicker { justify-content: center; }

.testimonial-heading .section-title {
  margin: 7px 0 12px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.testimonial-heading .section-title span { color: var(--primary); }

.testimonial-heading > p {
  max-width: 650px;
  margin: 0 auto;
  color: #5b687c;
  font-size: 15px;
  line-height: 1.75;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  position: relative;
  min-width: 0;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 27px 27px 23px;
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border: 1px solid #dce3ed;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(11, 25, 49, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 107, 56, .72), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 107, 56, .32);
  box-shadow: 0 24px 52px rgba(11, 25, 49, .11);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.reviewer {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
  font-size: 1rem;
  font-weight: 700;
}

.reviewer-avatar svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avatar-coral { background: #ef8278; }
.avatar-gold { background: #f2aa00; }
.avatar-blue { background: #2874dc; }

.reviewer h3 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: .96rem;
  line-height: 1.25;
}

.reviewer > div > span {
  display: block;
  overflow: hidden;
  color: #738096;
  font-size: 11px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-logo {
  width: 66px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: .88;
}

.stars {
  margin: 19px 0 12px;
  color: #f6aa00;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 3px;
}

.testimonial-card > p {
  margin: 0 0 22px;
  color: #26354a;
  font-size: 14px;
  line-height: 1.72;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  color: #7b8799;
  border-top: 1px solid #edf0f5;
  font-size: 10.5px;
}

.testimonial-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #178567;
  font-weight: 700;
}

.testimonial-meta span i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #159472;
  border-radius: 50%;
  font-size: 8px;
}

.testimonial-meta small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .testimonial-heading { margin-bottom: 30px; }
  .testimonial-heading > p { font-size: 13.5px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { min-height: 0; padding: 22px 20px 19px; }
  .testimonial-logo { width: 58px; }
  .reviewer span { max-width: 165px; }
  .testimonial-meta { align-items: flex-start; }
}

.faq-premium-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 14%, rgba(242, 107, 56, .09), transparent 23%),
    radial-gradient(circle at 95% 88%, rgba(23, 51, 91, .07), transparent 25%),
    linear-gradient(135deg, #f8fafc 0%, #fffaf6 100%);
  border-top: 1px solid #edf0f5;
}

.faq-premium-section::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(242, 107, 56, .12);
  border-radius: 50%;
  pointer-events: none;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 68px;
  align-items: center;
}

.faq-intro {
  padding: 38px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(218, 225, 235, .92);
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(11, 25, 49, .08);
  backdrop-filter: blur(12px);
}

.faq-intro .section-title {
  margin: 9px 0 15px;
  font-size: clamp(1.85rem, 2.7vw, 2.4rem);
  line-height: 1.16;
}

.faq-intro .section-title span {
  display: block;
  color: var(--primary);
  white-space: nowrap;
}
.faq-intro .section-desc { font-size: 14px; line-height: 1.75; }

.faq-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 27px 0;
}

.faq-service-list > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  color: #304058;
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.faq-service-list b {
  color: var(--primary-dark);
  font-size: 9px;
  letter-spacing: .08em;
}

.faq-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 17px;
  color: #fff;
  background: linear-gradient(135deg, #10284b, #1a3c68);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(16, 40, 75, .18);
}

.faq-support small,
.faq-support strong { display: block; }
.faq-support small { margin-bottom: 2px; color: #b9c8dd; font-size: 9.5px; }
.faq-support strong { color: #fff; font-size: 12.5px; }

.faq-support a {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(242, 107, 56, .3);
}

.faq-all-link { display: inline-flex; align-items: center; gap: 10px; }

.faq-list { display: grid; gap: 14px; }

.faq-item {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dce3ed;
  border-radius: 19px;
  box-shadow: 0 14px 38px rgba(11, 25, 49, .055);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 107, 56, .28);
  box-shadow: 0 20px 45px rgba(11, 25, 49, .085);
}

.faq-item[open] {
  border-color: rgba(242, 107, 56, .38);
  box-shadow: 0 22px 52px rgba(11, 25, 49, .1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 11px;
  font-size: 21px;
  font-weight: 500;
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  color: #fff;
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-summary-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-number {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #17335b;
  background: #f2f5f9;
  border: 1px solid #e2e7ef;
  border-radius: 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.faq-item[open] .faq-number {
  color: var(--primary-dark);
  background: #fff4ef;
  border-color: #ffd7c7;
}

.faq-summary-copy small,
.faq-summary-copy strong { display: block; }

.faq-summary-copy small {
  margin-bottom: 3px;
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.faq-summary-copy strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.faq-answer {
  margin: 0 22px 0 79px;
  padding: 0 0 21px;
  color: #627087;
  font-size: 13px;
  line-height: 1.75;
}

.faq-answer p { margin: 0; }

@media (max-width: 620px) {
  .faq-intro { padding: 27px 22px; border-radius: 22px; }
  .faq-intro .section-title { font-size: clamp(1.65rem, 8vw, 2rem); }
  .faq-service-list { grid-template-columns: 1fr; }
  .faq-item summary { padding: 17px 16px; }
  .faq-summary-copy { gap: 11px; }
  .faq-number { width: 36px; height: 36px; flex-basis: 36px; border-radius: 11px; }
  .faq-summary-copy strong { font-size: 12.5px; }
  .faq-item summary::after { width: 32px; height: 32px; flex-basis: 32px; }
  .faq-answer { margin: 0 16px 0 63px; padding-bottom: 18px; font-size: 12.5px; }
}

.home-map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #e9eef5;
  border-top: 1px solid #e1e6ee;
  border-bottom: 1px solid #dce3ec;
}

.home-map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(.88) contrast(1.02);
}

@media (max-width: 620px) {
  .home-map-section { height: 420px; }
}

.page-hero { position: relative; padding: 94px 0; color: #fff; background: var(--navy) url('../images/safe-gati-ncr-hero.png') center / cover no-repeat; isolation: isolate; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 48%, rgba(72, 105, 143, .28), transparent 58%),
    linear-gradient(90deg, rgba(12, 34, 59, .82), rgba(9, 29, 52, .62), rgba(7, 22, 40, .28));
}
.page-hero .section-title { max-width: 760px; margin-bottom: 12px; color: #fff; }
.page-hero .section-desc { color: #d7e1f0; }
.page-hero .eyebrow { color: #ffb294; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 20px; color: #ffb294; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* About page hero */
.about-page-hero {
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 64px 0;
  background-position: center;
}

.about-page-hero::before {
  background: linear-gradient(90deg, rgba(3, 7, 12, .42) 0%, rgba(3, 7, 12, .34) 46%, rgba(3, 7, 12, .2) 100%);
}

.about-page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), rgba(242, 107, 56, .16) 34%, transparent 72%);
}

.about-page-hero .page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-page-hero .section-title {
  max-width: none;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.12;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .18);
}

.about-page-hero .breadcrumb {
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: #ff9b73;
  font-size: 13px;
}

.about-page-hero .breadcrumb a {
  color: #fff;
  transition: color .2s ease;
}

.about-page-hero .breadcrumb a:hover,
.about-page-hero .breadcrumb a:focus-visible {
  color: #ff9b73;
}

.about-page-hero .breadcrumb-separator {
  color: rgba(255, 255, 255, .58);
}

@media (max-width: 900px) {
  .about-page-hero {
    min-height: 320px;
    padding: 58px 0;
    background-position: 64% center;
  }

  .about-page-hero::before {
    background: linear-gradient(90deg, rgba(3, 7, 12, .5) 0%, rgba(3, 7, 12, .38) 56%, rgba(3, 7, 12, .24) 100%);
  }
}

@media (max-width: 620px) {
  .about-page-hero {
    min-height: 280px;
    padding: 50px 0;
    background-position: 69% center;
  }

  .about-page-hero::before {
    background: rgba(3, 7, 12, .48);
  }

  .about-page-hero .section-title {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .about-page-hero .breadcrumb {
    margin-top: 16px;
    font-size: 11px;
  }
}
.content-card { padding: 34px; }
.feature-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; }
.feature-list i { color: var(--success); margin-top: 5px; }
.content-image { width: 100%; min-height: 430px; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.branch-card, .contact-card, .price-card { height: 100%; padding: 28px; }
.branch-card h3, .contact-card h3, .price-card h3 { margin: 0 0 9px; font-size: 1.1rem; }
.branch-card p, .contact-card p, .price-card p { color: var(--muted); }
.branch-card .service-icon { margin-bottom: 16px; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { grid-column: span 4; height: 290px; padding: 0; overflow: hidden; }
.gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 7; }
.gallery-item:nth-child(2), .gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.045); }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 30px; align-items: stretch; }
.contact-panel { padding: 34px; color: #dbe4f2; background: var(--navy); border-radius: var(--radius); }
.contact-panel h2, .contact-panel h3 { color: #fff; }
.contact-panel p { color: #aebbd0; }
.contact-list { display: grid; gap: 15px; margin: 24px 0 0; padding: 0; list-style: none; }
.contact-list li, .contact-list a { display: flex; align-items: flex-start; gap: 11px; }
.contact-list i { flex: 0 0 auto; color: #ff9a6f; margin-top: 5px; }
.contact-card .contact-list i { color: var(--primary-dark); }
.form-card { padding: 34px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.form-grid .full { grid-column: 1 / -1; }
textarea { min-height: 124px; resize: vertical; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 11.5px; }
.form-status { display: none; margin: 12px 0 0; color: var(--success); font-size: 13px; font-weight: 600; }
.form-status.show { display: block; }

.site-footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  color: #aebbd0;
  background:
    radial-gradient(circle at 8% 12%, rgba(39, 77, 130, .22), transparent 27%),
    radial-gradient(circle at 92% 82%, rgba(242, 107, 56, .09), transparent 24%),
    #071327;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-top { position: relative; z-index: 1; padding: 78px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .78fr 1fr 1.18fr; gap: 48px; }

.footer-brand > a {
  display: inline-block;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 15px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-brand > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 21px 42px rgba(0, 0, 0, .27);
}

.footer-brand img { width: 154px; max-height: 68px; object-fit: contain; }
.footer-brand p { max-width: 350px; margin: 20px 0 0; color: #b8c5d8; line-height: 1.8; }

.footer-social-label {
  display: block;
  margin: 22px 0 10px;
  color: #8293ac;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-socials { display: flex; flex-wrap: wrap; gap: 9px; }

.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #dce6f5;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  box-shadow: 0 9px 22px rgba(0, 0, 0, .13);
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.footer-socials i { display: block; font-size: 17px; line-height: 1; }
.footer-socials a:hover { color: #fff; transform: translateY(-4px) scale(1.04); box-shadow: 0 15px 28px rgba(0, 0, 0, .24); }
.footer-socials .facebook:hover { background: #1877f2; border-color: #1877f2; }
.footer-socials .instagram:hover { background: linear-gradient(135deg, #833ab4, #e1306c, #f77737); border-color: #e1306c; }
.footer-socials .youtube:hover { background: #ff0033; border-color: #ff0033; }
.footer-socials .whatsapp:hover { background: #20c765; border-color: #20c765; }

.footer-title {
  position: relative;
  margin: 5px 0 27px;
  padding-bottom: 13px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
}

.footer-links { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #aebbd0; font-size: 13px; transition: color .22s ease, transform .22s ease; }

.footer-column .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-column .footer-links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width .22s ease, margin .22s ease;
}

.footer-column .footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-column .footer-links a:hover::before { width: 13px; margin-right: 8px; }

.footer-contact a { display: flex; align-items: flex-start; gap: 11px; }

.footer-contact i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  margin-top: -4px;
  color: #ff9a6f;
  background: rgba(242, 107, 56, .09);
  border: 1px solid rgba(242, 107, 56, .16);
  border-radius: 9px;
  font-size: 12px;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.footer-contact a:hover { color: #fff; }
.footer-contact a:hover i { color: #fff; background: var(--primary); transform: translateY(-2px) rotate(-4deg); }

.footer-bottom { position: relative; z-index: 1; padding: 19px 0; color: #8492a8; border-top: 1px solid rgba(255,255,255,.09); background: rgba(2, 9, 21, .22); font-size: 12px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-promise { display: flex; gap: 18px; }
.footer-promise span { display: inline-flex; align-items: center; gap: 6px; }
.footer-promise i { color: #ff9a6f; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Bootstrap Icons — free MIT-licensed local icon font. */
@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
       url("../fonts/bootstrap-icons.woff") format("woff");
  font-display: block;
}

:is(.floating-btn, .footer-socials, .footer-contact) [class^="bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.floating-btn .bi-arrow-up::before { content: "\f148"; }
.floating-btn .bi-whatsapp::before { content: "\f618"; }
.floating-btn .bi-telephone-fill::before { content: "\f5b4"; }
.footer-socials .bi-facebook::before { content: "\f344"; }
.footer-socials .bi-instagram::before { content: "\f437"; }
.footer-socials .bi-youtube::before { content: "\f62b"; }
.footer-socials .bi-whatsapp::before { content: "\f618"; }
.footer-contact .bi-telephone-fill::before { content: "\f5b4"; }
.footer-contact .bi-envelope-fill::before { content: "\f32c"; }
.footer-contact .bi-geo-alt-fill::before { content: "\f3e7"; }

.floating-btn {
  position: relative;
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(5, 15, 31, .22);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.floating-btn i { display: block; font-size: 22px; line-height: 1; }
.floating-btn.scroll-top { background: #0d6975; }
.floating-btn.whatsapp { background: #21c866; }
.floating-btn.call { background: var(--primary); }

.floating-btn:hover,
.floating-btn:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px rgba(5, 15, 31, .28);
}

.floating-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 11px);
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, .97);
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(5, 15, 31, .13);
  opacity: 0;
  visibility: hidden;
  transform: translate(8px, -50%);
  white-space: nowrap;
  pointer-events: none;
  font-size: 11px;
  font-weight: 700;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.floating-btn:hover .floating-label,
.floating-btn:focus-visible .floating-label {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}
.reveal { transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav ul { gap: 18px; }
  .main-nav a { font-size: 13px; }
  .quick-quote-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-submit { align-self: end; }
  .field-submit .btn { width: 100%; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(6, 17, 35, .42);
    backdrop-filter: blur(4px);
  }
  .container { width: min(100% - 32px, 760px); }
  .section { padding: 78px 0; }
  .section.sm { padding: 64px 0; }
  .topbar { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 132px; max-height: 59px; }
  .nav-toggle { display: inline-flex; order: 3; }
  .nav-toggle[aria-expanded="true"] { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 0 10px 24px rgba(11, 25, 49, .2); }
  .header-cta { margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: 84px 16px auto;
    z-index: 60;
    width: auto;
    max-width: 520px;
    max-height: calc(100dvh - 100px);
    margin-inline: auto;
    padding: 16px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.98);
    transform-origin: top center;
    background: linear-gradient(145deg, #fff 0%, #fbfcff 100%);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 20px;
    box-shadow: 0 26px 70px rgba(6, 17, 35, .28);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }
  .main-nav::before {
    content: "Navigation";
    display: block;
    margin: 0 6px 10px;
    color: #8a96a8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .main-nav ul { display: grid; align-items: stretch; gap: 5px; }
  .main-nav > ul > li > a {
    min-height: 48px;
    width: 100%;
    justify-content: space-between;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
  }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a.active { color: var(--primary-dark); background: var(--primary-soft); transform: translateX(2px); }
  .main-nav > ul > li > a::after { display: none; }
  .submenu { position: static; width: 100%; display: none !important; margin: 5px 0 8px; padding: 8px !important; opacity: 1; visibility: visible; transform: none; background: #f4f7fb; border: 1px solid #e7ecf3; box-shadow: none; border-radius: 12px; }
  .submenu a { padding: 10px 12px; border-radius: 9px; color: #526078; font-size: 12px; }
  .submenu a:hover { color: var(--primary-dark); background: #fff; }
  .has-dropdown.open .submenu { display: grid !important; }
  .hero { min-height: 620px; background-position: 61% center; }
  .hero::before {
    background:
      radial-gradient(circle at 23% 42%, rgba(72, 105, 143, .32), transparent 62%),
      linear-gradient(90deg, rgba(12, 34, 59, .8), rgba(9, 29, 52, .65) 60%, rgba(7, 22, 40, .3));
  }
  .hero-inner { padding: 90px 0 148px; }
  .quote-dock { margin-top: -72px; }
  .quote-trust { grid-template-columns: repeat(2, 1fr); }
  .quote-trust-item:nth-child(2) { border-right: 0; }
  .quote-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .about-grid, .area-wrap, .faq-grid, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .about-title-break { display: none; }
  .media-stack { max-width: 640px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 20px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: span 6; }
}

@media (max-width: 620px) {
  body { font-size: 14.5px; }
  .container { width: min(100% - 24px, 560px); }
  .section { padding: 66px 0; }
  .section.sm { padding: 54px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head.row-head { display: block; }
  .section-head.row-head .btn-outline { margin-top: 20px; }
  .nav-wrap { min-height: 68px; gap: 11px; }
  .brand img { width: 116px; max-height: 54px; }
  .header-cta { min-height: 40px; padding: 9px 12px; font-size: 12px; }
  .nav-toggle { width: 40px; height: 40px; }
  .main-nav { inset: 78px 12px auto; max-height: calc(100dvh - 90px); padding: 13px; border-radius: 18px; }
  .hero { min-height: 590px; background-position: 67% center; }
  .hero::before {
    background:
      radial-gradient(circle at 22% 40%, rgba(72, 105, 143, .3), transparent 64%),
      linear-gradient(90deg, rgba(12, 34, 59, .84), rgba(9, 29, 52, .73) 72%, rgba(7, 22, 40, .46));
  }
  .hero-inner { padding: 70px 0 138px; }
  .hero-copy h1 { font-size: clamp(2.3rem, 12vw, 3.3rem); }
  .hero-actions .btn, .hero-actions .btn-outline { width: 100%; }
  .hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-point { justify-content: center; text-align: center; }
  .quote-dock { margin-top: -74px; }
  .quote-panel-head { align-items: flex-start; padding: 17px 18px; }
  .quote-panel-head-note { display: none; }
  .quick-quote-form { grid-template-columns: 1fr; padding: 18px; }
  .quote-trust { grid-template-columns: 1fr 1fr; }
  .quote-trust-item { min-height: 48px; padding: 8px 5px; font-size: 10.5px; }
  .service-grid, .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .service-card { padding: 23px; }
  .media-stack { min-height: 420px; }
  .media-stack .media-main { width: 91%; height: 385px; }
  .media-stack .media-small { width: 48%; height: 176px; }
  .media-label { left: 14px; bottom: 20px; padding: 13px 14px; }
  .check-list, .benefit-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .area-map { min-height: 350px; padding: 18px; }
  .area-map::before { width: 290px; height: 290px; }
  .area-map::after { width: 190px; height: 190px; }
  .area-center { width: 92px; height: 92px; border-width: 7px; }
  .area-pin { padding: 6px 8px; font-size: 10.5px; }
  .page-hero { padding: 70px 0; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: 1 / -1; height: 260px; }
  .content-card, .contact-panel, .form-card, .contact-card, .branch-card, .price-card { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .footer-top { padding: 58px 0 30px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom-inner { display: block; text-align: center; }
  .footer-promise { justify-content: center; flex-wrap: wrap; margin-top: 10px; }
  .floating-actions { right: 10px; bottom: 10px; gap: 8px; }
  .floating-btn { min-width: 48px; width: 48px; height: 48px; border-width: 2px; }
  .floating-btn i { font-size: 19px; }
  .floating-label { display: none; }
}

body.quote-modal-open { overflow: hidden; }

.quote-modal[hidden] { display: none; }

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(4, 13, 27, .76);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.quote-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 26px;
  box-shadow: 0 36px 100px rgba(2, 10, 24, .38);
  scrollbar-width: thin;
}

.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  font-size: 21px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.quote-modal-close:hover {
  transform: rotate(4deg);
  background: rgba(255, 255, 255, .2);
}

.quote-modal-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 78px 27px 30px;
  color: #dce6f4;
  background:
    radial-gradient(circle at 92% 10%, rgba(242, 107, 56, .24), transparent 26%),
    linear-gradient(120deg, #0b1931, #14345e);
}

.quote-modal-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(242, 107, 56, .28);
  font-size: 24px;
}

.quote-modal-kicker {
  display: block;
  margin-bottom: 4px;
  color: #ffae8d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-modal-heading h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.quote-modal-heading p {
  margin: 0;
  color: #b7c6da;
  font-size: 12.5px;
  line-height: 1.55;
}

.quote-modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding: 28px 30px 30px;
}

.quote-modal-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.quote-modal-field--full { grid-column: 1 / -1; }

.quote-modal-field > span {
  color: #344158;
  font-size: 11.5px;
  font-weight: 700;
}

.quote-modal-field input,
.quote-modal-field select,
.quote-modal-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid #dce3ec;
  border-radius: 11px;
  outline: 0;
  font-size: 13px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.quote-modal-field textarea {
  min-height: 82px;
  resize: vertical;
}

.quote-modal-field input:focus,
.quote-modal-field select:focus,
.quote-modal-field textarea:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(242, 107, 56, .1);
}

.quote-modal-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 3px;
}

.quote-modal-submit .btn {
  min-width: 250px;
  min-height: 52px;
}

.quote-modal-submit p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.5;
}

.quote-modal-submit p i { color: var(--success); }

@media (max-width: 620px) {
  .quote-modal { padding: 10px; align-items: end; }
  .quote-modal-dialog { max-height: 94vh; border-radius: 22px 22px 14px 14px; }
  .quote-modal-close { top: 13px; right: 13px; width: 38px; height: 38px; }
  .quote-modal-heading { grid-template-columns: 48px 1fr; gap: 13px; padding: 22px 58px 21px 20px; }
  .quote-modal-icon { width: 48px; height: 48px; border-radius: 14px; font-size: 20px; }
  .quote-modal-heading p { display: none; }
  .quote-modal-form { grid-template-columns: 1fr; gap: 13px; padding: 20px; }
  .quote-modal-field--full { grid-column: auto; }
  .quote-modal-field input, .quote-modal-field select { min-height: 46px; }
  .quote-modal-submit { display: grid; gap: 11px; }
  .quote-modal-submit .btn { width: 100%; min-width: 0; }
  .quote-modal-submit p { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .awareness-marquee-track { animation: none !important; transform: none !important; }
}
