:root {
  --navy-950: #081728;
  --navy-900: #0d2340;
  --navy-800: #16345f;
  --navy-700: #1e4c88;
  --accent: #ff6f3d;
  --accent-dark: #ef5f2b;
  --sky: #eaf3ff;
  --ice: #f4f8fc;
  --white: #ffffff;
  --text: #253246;
  --muted: #607188;
  --line: rgba(20, 45, 77, 0.12);
  --shadow-lg: 0 28px 60px rgba(7, 22, 41, 0.14);
  --shadow-md: 0 16px 34px rgba(7, 22, 41, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 111, 61, 0.08), transparent 22rem),
    linear-gradient(180deg, #f6f8fb 0%, #eef3f9 100%);
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

input,
textarea,
button {
  font: inherit;
}

.site-frame {
  width: min(1280px, calc(100% - 24px));
  margin: 14px auto;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 69, 0.09);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(8, 23, 40, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #1b4377 0%, #0c2342 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.hero-copy h1,
.section-head h2,
.service-card h3,
.content-card h2,
.content-card h3,
.review-card h3,
.faq-card h3,
.info-card h3,
.page-hero-copy h1,
.legal-card h1,
.legal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.15rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav,
.footer-links,
.mini-links,
.contact-list,
.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.main-nav {
  align-items: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.is-active,
.footer-links a:hover,
.mini-links a:hover,
.contact-list a:hover,
.info-list a:hover,
.text-link:hover,
.service-card a:hover,
.review-link:hover {
  color: #ffd7c8;
}

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

.phone-badge {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 111, 61, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.hero-shell,
.content-shell,
.legal-shell,
.page-shell {
  padding: 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.78fr);
  gap: 20px;
}

.hero-copy,
.request-card,
.service-card,
.content-card,
.step-card,
.review-card,
.faq-card,
.info-card,
.sidebar-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 23, 40, 0.84) 0%, rgba(8, 23, 40, 0.58) 42%, rgba(8, 23, 40, 0.16) 70%),
    linear-gradient(180deg, rgba(8, 23, 40, 0.2), rgba(8, 23, 40, 0.2));
}

.hero-copy img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 26, 0.06), rgba(5, 15, 26, 0.18));
  z-index: 1;
}

.hero-copy-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 660px;
  max-width: 520px;
  padding: 54px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero-copy h1,
.legal-card h1 {
  margin: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 5.3vw, 5.2rem);
}

.hero-copy p,
.section-head p,
.service-card p,
.content-card p,
.content-card li,
.step-card p,
.review-card p,
.faq-card p,
.info-card p,
.sidebar-card p,
.footer-copy p,
.legal-card p,
.legal-card li,
.request-card p,
.request-card label {
  color: var(--muted);
  line-height: 1.76;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
}

.request-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(234, 243, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.request-card h2,
.widget-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.12;
}

.request-card .mini-links {
  margin-top: 16px;
}

.request-card .mini-links {
  flex-direction: column;
  gap: 8px;
}

.request-card .mini-links a {
  color: var(--navy-800);
  font-weight: 700;
}

.request-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.request-form input,
.request-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(20, 45, 77, 0.14);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
}

.request-form textarea {
  min-height: 110px;
  resize: vertical;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.trust-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--navy-950);
  color: var(--white);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.06rem;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.section-head p {
  max-width: 58ch;
  margin: 0;
}

.content-section + .content-section {
  margin-top: 26px;
}

.service-grid,
.steps-grid,
.review-grid,
.info-grid,
.service-page-grid,
.mini-card-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.16;
}

.text-link {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.dark-band {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(30, 76, 136, 0.18), transparent 42%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}

.dark-band p,
.dark-band li,
.dark-band .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.78fr);
  gap: 24px;
}

.checklist,
.value-list,
.content-card ul,
.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

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

.step-card {
  padding: 22px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
}

.step-card h3,
.info-card h3,
.sidebar-card h3,
.legal-card h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.18;
}

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

.content-card {
  padding: 26px;
}

.content-card h2 {
  margin: 0 0 12px;
  font-size: 2.3rem;
  line-height: 1.08;
}

.content-card h3 {
  margin: 24px 0 10px;
  font-size: 1.42rem;
}

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

.review-card {
  padding: 24px;
}

.review-stars {
  color: #ffb14a;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
}

.review-name {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
}

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

.faq-card {
  overflow: hidden;
}

.faq-card details {
  padding: 18px 20px;
}

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

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

.info-card {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, rgba(255, 111, 61, 0.14), rgba(255, 111, 61, 0.05));
}

.cta-band h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
}

.footer {
  padding: 30px 28px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 24px;
}

.footer-copy strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.footer-copy p,
.footer-links a,
.mini-links a,
.contact-list a,
.info-list a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 420px;
  background: linear-gradient(90deg, rgba(8, 23, 40, 0.86), rgba(8, 23, 40, 0.48));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 23, 40, 0.82), rgba(8, 23, 40, 0.2));
  z-index: 1;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 52px;
  color: var(--white);
}

.page-hero-copy h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.78;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
}

.service-page-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.62fr);
}

.sidebar-card {
  padding: 22px;
}

.legal-shell {
  width: min(980px, calc(100% - 36px));
  margin: 24px auto 34px;
  padding: 0;
}

.legal-card {
  padding: 28px;
}

.legal-card h1 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.legal-card h2 {
  font-size: 1.45rem;
}

#cookie-box-center {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  z-index: 9999;
}

#cookie-box-center > * {
  pointer-events: auto;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.request-card,
.service-card,
.content-card,
.step-card,
.review-card,
.faq-card,
.info-card,
.sidebar-card,
.legal-card,
.cta-band {
  animation: rise-in 0.6s ease both;
}

@media (max-width: 1160px) {
  .hero-grid,
  .two-col,
  .service-page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps-grid,
  .info-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-frame {
    width: min(100% - 10px, 100%);
    border-radius: 22px;
  }

  .topbar,
  .section-head,
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    position: static;
  }

  .hero-copy,
  .page-hero {
    min-height: auto;
  }

  .hero-copy-inner,
  .page-hero-copy {
    min-height: auto;
    padding: 30px 24px;
  }

  .service-grid,
  .steps-grid,
  .info-grid,
  .review-grid,
  .mini-card-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-shell,
  .content-shell,
  .page-shell,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    padding: 16px;
  }

  .main-nav,
  .header-actions {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .section-head h2,
  .content-card h2,
  .cta-band h2,
  .legal-card h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .request-card,
  .content-card,
  .step-card,
  .review-card,
  .info-card,
  .sidebar-card,
  .legal-card {
    padding: 20px;
  }
}
