:root {
  --bg-page: #f3f6fb;
  --bg-white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #4b5d75;
  --navy: #0d2d4d;
  --navy-deep: #08283c;
  --blue: #1e5d9f;
  --sky: #dfeefb;
  --line: rgba(20, 65, 107, 0.14);
  --gold: #d4b26a;
  --gold-soft: #f3d89a;
  --shadow: 0 24px 50px rgba(12, 48, 81, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 31, 48, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 14px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.brand-copy {
  color: #fff;
}

.brand-label {
  font-size: clamp(1.15rem, 1.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}

.brand-tagline {
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  padding-left: 20px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before { top: -6px; }
.menu-toggle-icon::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,0.96);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 0;
  transition: opacity 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-phone {
  padding: 10px 18px !important;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffffff !important;
}

.hero {
  position: relative;
  isolation: isolate;
  background: linear-gradient(90deg, rgba(8, 25, 38, 0.72) 0%, rgba(10, 39, 60, 0.54) 28%, rgba(10, 39, 60, 0.18) 60%, rgba(10, 39, 60, 0.06) 100%);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 25, 38, 0.68) 0%, rgba(10, 39, 60, 0.5) 26%, rgba(10, 39, 60, 0.16) 58%, rgba(10, 39, 60, 0.06) 100%),
    url('./banner.png') center/cover no-repeat;
  filter: saturate(0.9) brightness(0.98);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
  align-items: center;
  padding: 28px 0 20px;
}

.hero-copy {
  max-width: 670px;
  padding-left: 10px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-copy p {
  max-width: 560px;
  margin: 20px 0 26px;
  font-size: clamp(1.02rem, 1.35vw, 1.55rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0f4a8d 0%, #123d74 100%);
  color: #ffffff;
  font-size: 1.03rem;
  font-weight: 700;
  box-shadow: 0 20px 25px rgba(11, 53, 91, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-now-btn,
.footer-call-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: #f4d17a;
  color: #10273d;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(244, 209, 122, 0.22);
}

.primary-btn:hover,
.call-now-btn:hover,
.footer-call-now:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.network {
  position: absolute;
  inset: 58px 60px 0 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: radial-gradient(circle at center, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 30px rgba(255,255,255,0.12);
}

.network::before,
.network::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
}

.network::after {
  inset: 28% 33%;
}

.node {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.2);
}

.node-one { top: 18%; left: 18%; }
.node-two { top: 34%; left: 58%; }
.node-three { top: 58%; left: 74%; }
.node-four { top: 72%; left: 40%; }
.node-five { top: 62%; left: 18%; }
.node-six { top: 28%; right: 18%; }
.node-seven { top: 18%; right: 34%; }

.consultant-card {
  position: absolute;
  right: 70px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 24px;
  padding: 16px 22px 16px 16px;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.consultant-card:hover,
.consultant-card:focus-visible {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.38);
  box-shadow: 0 28px 55px rgba(12, 48, 81, 0.2);
  outline: none;
}

.consultant-card img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.7);
}

.consultant-info {
  display: flex;
  flex-direction: column;
  color: #0f1e2a;
}

.consultant-info strong {
  font-size: 1.2rem;
  font-weight: 700;
}

.consultant-info span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 30, 42, 0.7);
}

.consultant-info small {
  margin-top: 10px;
  color: #0e5aa8;
  font-size: 0.78rem;
  font-weight: 800;
}

.services {
  background: rgba(255,255,255,0.65);
  padding: 40px 0 34px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-item {
  background: rgba(255,255,255,0.1);
  border-left: 1px solid var(--line);
  padding: 28px 18px 18px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.service-item:first-child {
  border-left: none;
}

.icon-wrap {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #114b86;
  margin-bottom: 18px;
}

.icon-wrap svg {
  width: 52px;
  height: 52px;
}

.service-item h3 {
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.04em;
  color: #0d2d4d;
}

.service-item h3 a {
  color: inherit;
}

.service-item h3 a:hover,
.service-item h3 a:focus-visible {
  color: #0e5aa8;
}

.service-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.55;
}

.value-bar {
  background: var(--navy-deep);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.value-item {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.value-item:last-child {
  border-right: none;
}

.value-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #eaeef8;
}

.value-item span {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.value-item small {
  margin-top: 6px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.contact-item {
  background: rgba(255,255,255,0.02);
}

.about {
  background: #f8f9fb;
  padding: 76px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.about-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 36px 52px 18px 16px;
  background: linear-gradient(135deg, rgba(15,74,141,0.14), rgba(15,74,141,0.04));
  border-radius: 24px;
}

.about-photo img {
  position: relative;
  width: min(100%, 420px);
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: #dfeefb;
}

.section-kicker {
  margin: 0 0 20px;
  color: #0e5aa8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-kicker.inverted {
  color: rgba(255,255,255,0.8);
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  color: #0d2338;
}

.cta-band {
  background: linear-gradient(135deg, #0a1e2d 0%, #153d66 100%);
  color: #fff;
  padding: 32px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-content h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: #0f172a;
}

.about-content p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.section-intro {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.proof-section,
.resources-preview,
.faq-section {
  padding: 76px 0;
}

.proof-section {
  background: #fff;
}

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

.proof-card,
.resource-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #f8fafc;
}

.proof-metric {
  display: block;
  color: #0e5aa8;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-card h3,
.resource-card h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.proof-card p,
.resource-card p {
  margin: 0;
  color: var(--text-secondary);
}

.proof-label,
.resource-card span {
  display: block;
  margin-top: 22px;
  color: #0e5aa8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-section {
  background: #eaf2f8;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.faq-list details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-list details p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--text-secondary);
}

.resources-preview {
  background: #f8f9fb;
}

.resource-card {
  display: block;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.resource-card strong {
  display: block;
  margin-top: 22px;
  color: var(--navy);
}

.page-hero {
  padding: 88px 0 72px;
  background: linear-gradient(135deg, #09283d 0%, #155983 64%, #e5bd63 150%);
  color: #fff;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.84);
  font-size: 1.2rem;
}

.breadcrumb {
  margin-bottom: 26px;
  color: #f3d89a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-section {
  padding: 72px 0;
}

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

.detail-content h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-content p,
.detail-content li {
  color: var(--text-secondary);
  font-size: 1.06rem;
}

.detail-content ul {
  padding-left: 20px;
}

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

.method-step {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: #f8fafc;
}

.method-step strong {
  display: block;
  color: var(--navy);
}

.method-step p {
  margin: 5px 0 0;
  font-size: 0.98rem;
}

.answer-band {
  background: #eaf2f8;
}

.about-content ul {
  margin: 24px 0 30px;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 600;
}

.about-content li + li {
  margin-top: 10px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  background: #0c4a87;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 26px rgba(12, 74, 135, 0.18);
}

.site-footer {
  background: #0a1e2d;
  color: #edf5ff;
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.footer-brand h3 {
  margin: 0 0 4px;
  font-size: 1.5rem;
}

.footer-brand p {
  margin: 0;
  color: rgba(237,245,255,0.8);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(237,245,255,0.8);
}

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

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

  .about-inner {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-layout,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
  }

  .topbar {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 14px;
    right: 0;
  }

  .main-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding-left: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.16);
    margin-top: 14px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav.has-toggle {
    display: none;
  }

  .main-nav.has-toggle.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 11px 8px;
    border-radius: 6px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255,255,255,0.1);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-phone {
    width: 100%;
    margin-top: 6px;
    text-align: center;
  }

  .brand-label {
    font-size: 1.05rem;
  }

  .brand-tagline {
    letter-spacing: 0.08em;
    font-size: 0.58rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .hero-copy p {
    font-size: 1.02rem;
    margin: 18px 0 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .call-now-btn,
  .footer-call-now,
  .secondary-btn {
    width: 100%;
    min-height: 56px;
    font-size: 0.96rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .network {
    inset: 24px 24px 0 24px;
  }

  .consultant-card {
    right: 16px;
    left: 16px;
    bottom: 12px;
    padding: 12px 16px 12px 12px;
  }

  .consultant-card img {
    width: 104px;
    height: 104px;
  }

  .services-grid,
  .value-grid,
  .footer-inner,
  .proof-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .proof-section,
  .resources-preview,
  .faq-section,
  .detail-section {
    padding: 54px 0;
  }

  .cta-actions {
    width: 100%;
  }

  .value-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .value-item:last-child {
    border-bottom: none;
  }
}

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