@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700;800&display=swap");

:root {
  --blue-900: #063b82;
  --blue-800: #0752b6;
  --blue-700: #0868df;
  --blue-100: #eaf3ff;
  --blue-050: #f6faff;
  --green-600: #0fad4a;
  --ink: #14233b;
  --muted: #667287;
  --line: #dbe7f5;
  --white: #ffffff;
  --warm: #fbf7ef;
  --gold: #d39b32;
  --shadow: 0 18px 45px rgba(5, 49, 104, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue-050);
  font-family: "Source Sans 3", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

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

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

.topbar {
  background: var(--blue-900);
  color: var(--white);
  font-size: 0.88rem;
}

.topbar-inner,
.nav-inner,
.section,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar span {
  white-space: nowrap;
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue-900);
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links .active {
  color: var(--blue-700);
}

.header-actions,
.button-row,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(7, 82, 182, 0.2);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 82, 182, 0.24);
}

.btn.secondary {
  background: var(--white);
  color: var(--blue-800);
  border-color: var(--line);
  box-shadow: none;
}

.btn.secondary:hover {
  border-color: rgba(8, 104, 223, 0.35);
  box-shadow: 0 12px 24px rgba(5, 49, 104, 0.08);
}

.btn.green {
  background: var(--green-600);
  box-shadow: 0 10px 22px rgba(15, 173, 74, 0.22);
}

.btn.green:hover {
  box-shadow: 0 16px 30px rgba(15, 173, 74, 0.28);
}

.hero {
  background: linear-gradient(90deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.86) 45%, rgba(246, 250, 255, 0.18) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero.compact {
  min-height: 390px;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 84px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.8vw, 5.35rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  color: var(--blue-900);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.22;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.13rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 32px));
  margin: -44px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 17px;
  background: var(--white);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 900;
}

.trust-item strong {
  display: block;
  color: var(--blue-900);
  font-size: 0.95rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 82px 0;
}

.section.narrow {
  padding-top: 54px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

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

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

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

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

.card,
.package-card,
.contact-panel,
.form-panel,
.info-card,
.content-panel,
.quote-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(5, 49, 104, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover,
.package-card:hover,
.info-card:hover,
.content-panel:hover {
  border-color: rgba(8, 104, 223, 0.26);
  box-shadow: 0 18px 42px rgba(5, 49, 104, 0.12);
  transform: translateY(-4px);
}

.card-body,
.package-body,
.info-body {
  padding: 20px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.stat strong {
  display: block;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.info-card {
  padding: 24px;
}

.info-card .icon {
  margin-bottom: 16px;
}

.content-panel {
  padding: 28px;
}

.content-panel.soft {
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
}

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

.feature-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  color: var(--blue-900);
}

.comparison {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.3fr;
  gap: 1px;
}

.comparison-row > div {
  background: var(--white);
  padding: 16px;
}

.comparison-row.header > div {
  background: var(--blue-900);
  color: var(--white);
  font-weight: 800;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

.faq summary {
  color: var(--blue-900);
  cursor: pointer;
  font-weight: 800;
}

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

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

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline-item .service-kicker {
  color: var(--blue-900);
}

.quote-panel {
  padding: 30px;
  background: linear-gradient(135deg, #082f64, #0752b6);
  color: var(--white);
}

.quote-panel h2,
.quote-panel h3,
.quote-panel p,
.quote-panel .eyebrow {
  color: var(--white);
}

.quote-panel p {
  opacity: 0.9;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card img,
.package-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.package-card.featured {
  border-color: rgba(8, 104, 223, 0.45);
  box-shadow: var(--shadow);
}

.package-card img,
.card img {
  transition: transform 480ms ease;
}

.package-card:hover img,
.card:hover img {
  transform: scale(1.035);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 8px 0 14px;
  color: var(--blue-800);
  font-size: 2rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.tick-list,
.plain-list {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.tick-list li,
.plain-list li {
  position: relative;
  padding-left: 22px;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue-700);
  border-bottom: 2px solid var(--blue-700);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 900;
}

.cta-band {
  background: var(--blue-900);
  color: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  margin-bottom: 0;
  opacity: 0.86;
}

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

.service-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-row p {
  margin-bottom: 10px;
}

.service-kicker {
  color: var(--blue-700);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

.contact-panel,
.form-panel {
  padding: 26px;
}

.contact-detail {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-detail div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-detail strong {
  display: block;
  color: var(--blue-900);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.site-footer {
  background: #082f64;
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 34px;
  padding: 46px 0;
}

.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.site-footer img {
  width: 148px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.link-list a:hover {
  border-color: rgba(8, 104, 223, 0.35);
  background: var(--blue-050);
  transform: translateX(3px);
}

.link-list a::after {
  content: ">";
  color: var(--blue-700);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.sidebar-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(5, 49, 104, 0.08);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.included-item {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.article-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px;
}

.article-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 24, 52, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.site-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  position: relative;
  width: min(460px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(4, 28, 61, 0.25);
  overflow: hidden;
  transform: translateY(18px) scale(0.98);
  transition: transform 240ms ease;
}

.site-popup.show .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.popup-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.popup-body {
  padding: 24px;
}

.popup-body h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 7vw, 2.8rem);
}

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

.popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

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

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

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
  text-align: center;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    width: 100%;
  }

  .hero,
  .hero.compact {
    min-height: auto;
  }

  .hero-content {
    padding: 54px 0 74px;
  }

  .trust-strip,
  .grid.four,
  .grid.three,
  .grid.two,
  .intro-grid,
  .process,
  .split,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .topbar-inner,
  .section-head,
  .service-row {
    flex-direction: column;
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .topbar span {
    white-space: normal;
  }

  .trust-strip,
  .grid.four,
  .grid.three,
  .grid.two,
  .intro-grid,
  .detail-layout,
  .included-grid,
  .stat-grid,
  .form-grid,
  .process,
  .split,
  .contact-layout,
  .footer-inner,
  .service-row {
    grid-template-columns: 1fr;
  }

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

  .comparison-row.header {
    display: none;
  }

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

  .sidebar-panel {
    position: static;
  }

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

  .popup-actions {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .button-row .btn,
  .cta-actions .btn,
  .header-actions .btn {
    width: 100%;
  }

  .hero {
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.96) 0%, rgba(246, 250, 255, 0.9) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
  }
}
