
:root {
  --navy: #02244f;
  --navy-2: #001a3d;
  --blue: #177ec3;
  --blue-2: #0e6eac;
  --ice: #eff8ff;
  --soft: #f7fbff;
  --line: #d8eaf8;
  --text: #12304f;
  --muted: #5d7084;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(2, 36, 79, 0.14);
  --radius: 28px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.top-bar {
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 9px 18px;
  font-size: 13px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #d9f0ff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: fit-content;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 750;
  color: var(--navy);
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
  background: var(--ice);
  color: var(--blue);
}

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 850;
  margin-left: 8px;
  box-shadow: 0 12px 30px rgba(2,36,79,.18);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--ice);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 4px;
}

.hero,
.page-hero,
.section,
.cta-band {
  width: min(var(--max), calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  min-height: 720px;
  padding: 84px 0;
}

.hero-content {
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
  margin: 0 0 14px;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(43px, 7vw, 82px);
  letter-spacing: -0.07em;
  max-width: 880px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.06em;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.lead,
.page-hero p {
  font-size: 19px;
  color: var(--muted);
  margin: 22px 0 0;
  max-width: 720px;
}

.hero-actions,
.center-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  min-height: 52px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 18px 40px rgba(23,126,195,0.28);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(2,36,79,0.08);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.trust-row {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 10px 14px;
  background: var(--ice);
  color: var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  padding: 44px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 84% 12%, rgba(23,126,195,0.18), transparent 26%),
    linear-gradient(145deg, var(--navy), #063d76);
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: auto -70px -120px auto;
  width: 310px;
  height: 310px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
}

.hero-card img {
  position: relative;
  background: var(--white);
  border-radius: 34px;
  padding: 24px;
  width: 100%;
  max-height: 365px;
  object-fit: contain;
  box-shadow: 0 24px 54px rgba(0,0,0,0.17);
}

.mini-card {
  position: relative;
  margin-top: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: 22px;
  padding: 18px;
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card span {
  color: #d9f0ff;
  margin-top: 4px;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  margin: 16px 0 0;
}

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 46px rgba(2,36,79,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(2,36,79,0.12);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  border-radius: 14px;
  background: var(--ice);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.split-section.alt {
  grid-template-columns: 1fr 1fr;
  background: var(--soft);
  border-radius: 40px;
  padding-left: 42px;
  padding-right: 42px;
}

.split-section p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-list div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px;
}

.feature-list strong {
  color: var(--navy);
  display: block;
  font-size: 17px;
}

.feature-list span {
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.seo-panel {
  background: linear-gradient(135deg, var(--ice), #ffffff);
  border: 1px solid var(--line);
  border-radius: 42px;
  padding-left: 42px;
  padding-right: 42px;
}

.seo-panel p {
  color: var(--muted);
  font-size: 18px;
}

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

.review-grid article {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-grid p {
  font-size: 18px;
  margin: 12px 0 18px;
}

.review-grid span {
  color: #cde9ff;
  font-weight: 800;
}

.stars {
  color: #bfe6ff;
  letter-spacing: 4px;
}

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

.faq-list.large {
  max-width: 900px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 14px 40px rgba(2,36,79,0.05);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
  font-size: 17px;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

details a,
.legal a,
.form-note a {
  color: var(--blue);
  font-weight: 850;
}

.center {
  text-align: center;
  margin-top: 26px;
}

.cta-band {
  margin-top: 34px;
  margin-bottom: 70px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 38px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}

.cta-band p {
  color: #d9f0ff;
  margin: 10px 0 0;
  font-size: 18px;
}

.page-hero {
  padding: 92px 0 64px;
}

.page-hero.small-hero {
  padding-bottom: 24px;
}

.page-hero h1 {
  max-width: 960px;
}

.brand-panel {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(2,36,79,0.08);
}

.brand-panel img {
  max-height: 300px;
  object-fit: contain;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: 28px;
  padding: 18px;
}

.values {
  background: var(--soft);
  border-radius: 40px;
  padding-left: 42px;
  padding-right: 42px;
}

.service-details {
  display: grid;
  gap: 22px;
}

.detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(2,36,79,0.06);
}

.detail-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 20px;
  font-weight: 950;
}

.detail-card p {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 18px;
}

.detail-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-card li {
  margin: 7px 0;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(2,36,79,0.07);
}

.primary-contact {
  background: linear-gradient(135deg, var(--ice), #ffffff);
}

.contact-card p {
  color: var(--muted);
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: start;
}

.quote-section p {
  color: var(--muted);
  font-size: 17px;
}

.quote-tips {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 6px;
}

.quote-tips strong {
  color: var(--navy);
}

.quote-tips span {
  color: var(--muted);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.quote-form label {
  font-weight: 850;
  color: var(--navy);
}

input,
select,
textarea {
  margin-top: 8px;
  width: 100%;
  border: 1px solid #c9dfef;
  background: #fbfdff;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23,126,195,0.11);
}

textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.form-note {
  margin: 0;
}

.legal {
  max-width: 880px;
}

.legal h2 {
  font-size: 30px;
  margin-top: 30px;
}

.legal p {
  color: var(--muted);
}

.site-footer {
  background: var(--navy-2);
  color: var(--white);
  padding: 58px 22px 24px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 140px;
  background: var(--white);
  border-radius: 20px;
  padding: 12px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer .small {
  color: #bfd8ea;
}

.site-footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  color: #e9f7ff;
  margin: 7px 0;
  font-weight: 700;
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #bfd8ea;
  font-size: 13px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .quote-section,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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

  .site-nav {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 118px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 680px) {
  .top-bar {
    gap: 10px;
    font-size: 12px;
  }

  .hero,
  .page-hero,
  .section,
  .cta-band {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding: 44px 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    font-size: 10px;
  }

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

  .hero-card {
    min-height: auto;
    padding: 24px;
    border-radius: 30px;
  }

  .section {
    padding: 58px 0;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .split-section.alt,
  .seo-panel,
  .values {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* === Premium motion, WebGL and interactive upgrade === */
body {
  cursor: auto;
  overflow-x: hidden;
}

body.page-leaving::after {
  transform: translateY(0);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  z-index: 998;
  transform: translateY(100%);
  transition: transform .55s cubic-bezier(.7, 0, .2, 1);
  pointer-events: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(23, 126, 195, .22), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(23, 126, 195, .18), transparent 30%),
    linear-gradient(145deg, #ffffff, #eff8ff);
  transition: opacity .45s ease, visibility .45s ease;
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  width: min(360px, calc(100vw - 44px));
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.loader-card img {
  width: 118px;
  margin: 0 auto 14px;
}

.loader-card span,
.loader-card small {
  display: block;
}

.loader-card span {
  color: var(--navy);
  font-weight: 950;
  letter-spacing: -.03em;
  font-size: 21px;
}

.loader-card small {
  color: var(--muted);
  margin-top: 4px;
}

.loader-bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #d8eaf8;
  margin-top: 20px;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23,126,195,.55);
  border-radius: 50%;
  transition: width .18s ease, height .18s ease, border-color .18s ease, background .18s ease;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(2,36,79,.35);
  background: rgba(23,126,195,.08);
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px -8vw auto auto;
  width: min(520px, 58vw);
  height: min(520px, 58vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,126,195,.16), transparent 68%);
  filter: blur(4px);
  z-index: -1;
  animation: slowFloat 8s ease-in-out infinite;
}

@keyframes slowFloat {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-26px,18px,0) scale(1.05); }
}

.hero-content,
.hero-card,
.service-card,
.detail-card,
.contact-card,
.review-grid article,
.story-track article,
details,
.cta-band,
.seo-panel {
  transform-style: preserve-3d;
}

.premium-3d-card {
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.14);
}

.webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .95;
}

.floating-droplets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-droplets span {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: rgba(255,255,255,.14);
  transform: rotate(-45deg);
  filter: blur(.2px);
  animation: dropletFloat 7s ease-in-out infinite;
}

.floating-droplets span:nth-child(1) { left: 12%; top: 18%; animation-delay: -.8s; }
.floating-droplets span:nth-child(2) { right: 13%; top: 38%; width: 34px; height: 34px; animation-delay: -2s; }
.floating-droplets span:nth-child(3) { left: 18%; bottom: 18%; width: 42px; height: 42px; animation-delay: -3.5s; }

@keyframes dropletFloat {
  0%,100% { translate: 0 0; opacity: .46; }
  50% { translate: 0 -22px; opacity: .8; }
}

.hero-card img,
.hero-card .mini-card {
  z-index: 1;
}

.motion-story {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(2,36,79,.96), rgba(23,126,195,.94)),
    repeating-linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 16px);
  color: var(--white);
  border-radius: 44px;
  padding-left: 42px;
  padding-right: 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.motion-story::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 62%);
  border-radius: 50%;
  animation: slowFloat 11s ease-in-out infinite reverse;
}

.motion-story h2,
.motion-story .eyebrow {
  color: var(--white);
}

.motion-story p {
  color: #d9f0ff;
  font-size: 18px;
}

.story-copy,
.story-track {
  position: relative;
  z-index: 1;
}

.story-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.story-track article {
  min-height: 170px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.story-track article:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
}

.story-track span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-weight: 950;
  margin-bottom: 18px;
}

.story-track strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.035em;
}

.story-track p {
  margin: 8px 0 0;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

[data-tilt-card] {
  will-change: transform;
}

.quote-progress {
  background: linear-gradient(135deg, var(--ice), #ffffff);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
}

.quote-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.quote-progress strong {
  color: var(--navy);
}

.quote-progress span {
  color: var(--blue);
  font-weight: 950;
}

.quote-progress small {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

.progress-track {
  height: 10px;
  background: #d8eaf8;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
}

.progress-track span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transition: width .3s ease;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-actions .btn-ghost {
  grid-column: 1 / -1;
}

.btn-ghost {
  color: var(--navy);
  background: var(--ice);
  border-color: var(--line);
}

input::placeholder,
textarea::placeholder {
  color: #8aa1b7;
}

@media (max-width: 960px) {
  .motion-story,
  .story-track,
  .quote-actions {
    grid-template-columns: 1fr;
  }

  .motion-story {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 680px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .premium-3d-card {
    min-height: 500px;
  }

  .story-track article {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  body::after,
  .loader-bar i,
  .hero::before,
  .floating-droplets span,
  .motion-story::before {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* === Kruger Coded footer watermark === */
.kc-watermark {
  max-width: var(--max);
  margin: 20px auto 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kc-watermark strong {
  color: #ffffff;
  letter-spacing: 0.12em;
}

.kc-watermark a {
  display: inline-flex;
  margin: 0;
  color: #d9f0ff;
  font-weight: 800;
  text-decoration: none;
}

.kc-watermark a:hover {
  color: #ffffff;
}
