:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #0d1b2f;
  --muted: #5d718c;
  --navy: #091b34;
  --navy-2: #102b51;
  --gold: #c8ab6f;
  --line: rgba(13, 27, 47, 0.1);
  --shadow: 0 24px 60px rgba(9, 27, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 171, 111, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(16, 43, 81, 0.08), transparent 25%),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: #071424;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.top-strip-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.top-contact:hover {
  color: #ffffff;
}

.top-contact-left {
  justify-content: flex-start;
}

.top-contact-right {
  justify-content: flex-end;
}

.contact-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(251, 252, 254, 0.82);
  border-bottom: 1px solid rgba(13, 27, 47, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--navy);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--navy);
}

.section-pad {
  padding: 84px 0;
}

.hero {
  padding-top: 52px;
}

.hero-grid,
.benefit-shell,
.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

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

h1 {
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  color: var(--navy);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  color: var(--navy);
}

.hero-text,
.section-lead,
.benefit-copy p,
.trust-copy p,
.final-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: white;
  box-shadow: 0 14px 30px rgba(9, 27, 52, 0.2);
}

.btn-secondary {
  border: 1px solid rgba(13, 27, 47, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.btn-small {
  padding: 11px 16px;
  font-size: 0.92rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 47, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: #395071;
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top left, rgba(200, 171, 111, 0.12), transparent 32%),
    linear-gradient(145deg, #f7f9fc, #eef3f9);
  border: 1px solid rgba(13, 27, 47, 0.08);
  box-shadow: var(--shadow);
  min-height: 520px;
  padding: 26px;
  overflow: hidden;
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(16, 43, 81, 0.06);
  filter: blur(4px);
}

.visual-frame::before {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -50px;
}

.visual-frame::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -60px;
}

.visual-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(9, 27, 52, 0.9);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.book-stack {
  position: relative;
  height: 100%;
  min-height: 430px;
}

.book-card {
  position: absolute;
  padding: 24px;
  border-radius: 22px;
  color: white;
  box-shadow: 0 24px 44px rgba(9, 27, 52, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.book-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 55%);
  pointer-events: none;
}

.book-card span {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
}

.book-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.book-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.book-large {
  inset: 40px 30px 120px 0;
  background: linear-gradient(145deg, #0e2342, #12335f);
}

.book-mid {
  width: 52%;
  right: 4%;
  top: 175px;
  background: linear-gradient(145deg, #152f55, #1c4a78);
}

.book-small {
  width: 42%;
  left: 10%;
  bottom: 20px;
  background: linear-gradient(145deg, #253e67, #143559);
}

.visual-footer {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 27, 47, 0.08);
}

.visual-footer strong,
.visual-footer span {
  display: block;
}

.visual-footer strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.visual-footer span {
  color: var(--muted);
  font-size: 0.85rem;
}

.mini-meter {
  width: 110px;
  height: 10px;
  border-radius: 999px;
  background: rgba(9, 27, 52, 0.12);
  overflow: hidden;
}

.mini-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #dfc489);
}

.section-tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 243, 248, 0.9));
  border-top: 1px solid rgba(13, 27, 47, 0.05);
  border-bottom: 1px solid rgba(13, 27, 47, 0.05);
}

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

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

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

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

.challenge-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: start;
}

.problem-grid {
  margin-top: 0;
}

.info-card,
.solution-card,
.trust-card,
.faq-item,
.process-item,
.panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(9, 27, 52, 0.06);
}

.info-card {
  border-radius: 16px;
  padding: 16px 18px;
  color: #274062;
  min-height: 76px;
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.45;
}

.challenge-summary {
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(150deg, #0f2343, #17395f);
  color: white;
  box-shadow: var(--shadow);
}

.challenge-summary h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.35;
  color: white;
}

.challenge-summary p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.summary-label {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.solutions-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 18px;
}

.solutions-summary {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(150deg, #0f2444, #173a67);
  color: white;
  box-shadow: var(--shadow);
}

.solutions-summary h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.solutions-summary p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.solution-grid {
  align-content: start;
}

.solution-card {
  border-radius: 18px;
  padding: 18px 18px 16px;
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.solution-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(9, 27, 52, 0.08);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.solution-card h3,
.panel h3,
.process-item h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.06rem;
}

.solution-card p,
.panel p,
.process-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.benefit-shell {
  align-items: start;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
  color: #28405f;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), #e2ca94);
  box-shadow: 0 0 0 4px rgba(200, 171, 111, 0.18);
}

.benefit-panels {
  display: grid;
  gap: 16px;
}

.panel {
  border-radius: 20px;
  padding: 24px;
}

.panel span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(9, 27, 52, 0.08);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}

.panel-dark {
  background: linear-gradient(145deg, #0f2343, #17395f);
}

.panel-dark h3,
.panel-dark p,
.panel-dark span {
  color: white;
}

.panel-dark span {
  background: rgba(255, 255, 255, 0.14);
}

.panel-light {
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
}

.panel-outline {
  background: rgba(255, 255, 255, 0.68);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
}

.process-item span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(9, 27, 52, 0.08);
  color: var(--navy);
  font-weight: 800;
  grid-row: span 2;
}

.process-item h3 {
  margin-bottom: 4px;
}

.trust-grid {
  align-items: stretch;
}

.trust-points {
  display: grid;
  gap: 16px;
}

.trust-card {
  border-radius: 18px;
  padding: 18px 20px;
  color: #294160;
}

.statement {
  padding: 92px 0;
  background: linear-gradient(145deg, var(--navy), #112c51);
  color: white;
  text-align: center;
}

.statement h2 {
  color: white;
  margin-bottom: 14px;
}

.statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  padding: 16px 18px;
  border-radius: 16px;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

summary::-webkit-details-marker {
  display: none;
}

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

.final-section {
  padding-top: 56px;
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(145deg, #fefefe, #eef3f8);
  border: 1px solid rgba(13, 27, 47, 0.08);
  box-shadow: var(--shadow);
}

.final-card p {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  padding: 38px 0 46px;
  background: #071424;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 18px;
}

.site-footer h3 {
  color: white;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffd89a;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 18, 35, 0.56);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none !important;
}

.consultation-modal {
  position: relative;
  width: min(640px, 100%);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
  border: 1px solid rgba(13, 27, 47, 0.08);
  box-shadow: 0 30px 80px rgba(5, 15, 31, 0.32);
  padding: 28px;
}

.modal-copy p:last-child {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 27, 52, 0.08);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
}

.consultation-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 27, 47, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: rgba(9, 27, 52, 0.48);
  box-shadow: 0 0 0 4px rgba(9, 27, 52, 0.08);
}

.consultation-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .hero-grid,
  .benefit-shell,
  .trust-grid,
  .challenge-layout,
  .solutions-layout,
  .footer-grid,
  .final-card {
    grid-template-columns: 1fr;
  }

  .solutions-summary {
    position: static;
  }

  .visual-frame {
    min-height: 480px;
  }

  .consultation-modal {
    width: min(620px, 100%);
  }
}

@media (max-width: 780px) {
  .top-strip-inner {
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
  }

  .top-contact {
    font-size: 0.82rem;
  }

  .nav-links {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .section-pad {
    padding: 66px 0;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .challenge-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .visual-frame {
    min-height: 420px;
    padding: 18px;
  }

  .book-large {
    inset: 36px 12px 112px 0;
  }

  .book-mid {
    width: 56%;
  }

  .book-small {
    width: 48%;
  }

  .visual-footer {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }

  .final-card {
    padding: 24px;
  }

  .consultation-modal {
    padding: 22px 18px;
    border-radius: 24px;
  }
}
