:root {
  --navy: #061d38;
  --navy-2: #0b2d54;
  --steel: #2d557d;
  --gold: #f5b313;
  --gold-dark: #c98c05;
  --silver: #c9d0da;
  --charcoal: #1e2630;
  --ink-soft: #536070;
  --line: #dce2e9;
  --panel: #f4f6f9;
  --white: #ffffff;
  --success: #667f8d;
  --shadow: 0 22px 60px rgba(6, 29, 56, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  animation: pageFade 640ms ease both;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 226, 233, 0.82);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 245px;
  transition: transform 220ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  border: 2px solid rgba(245, 179, 19, 0.36);
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(6, 29, 56, 0.2);
  object-fit: cover;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.brand:hover .brand-logo {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 0 12px 30px rgba(6, 29, 56, 0.28);
}

.logo-text {
  display: grid;
  gap: 1px;
}

.logo-text strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.1;
}

.logo-text span {
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #344255;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  transition: color 180ms ease;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--steel);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: 800 0.94rem/1 "Inter", Arial, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 13px 28px rgba(6, 29, 56, 0.24);
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(167, 176, 190, 0.75);
  background: var(--white);
}

.button-light {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffd876);
  box-shadow: 0 14px 28px rgba(245, 179, 19, 0.26);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 92px 0 46px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(6, 29, 56, 0.98), rgba(6, 29, 56, 0.86) 46%, rgba(6, 29, 56, 0.34)), url("assets/commercial-hero.png") center / cover;
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 116px;
  background: linear-gradient(0deg, rgba(6, 29, 56, 0.42), transparent);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(245, 179, 19, 0.16), transparent 27%);
  animation: glowDrift 7s ease-in-out infinite alternate;
}

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

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.hero-grid > *,
.trust-item,
.section-heading,
.content-copy > p,
.finance-panel,
.program-card,
.service-card,
.asset-grid span,
.process-step,
.scenario-card,
.audience-card,
.profile-block,
.cta-band,
.detail-card,
.footer-main > *,
.footer-bottom {
  animation: riseIn 720ms ease both;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-grid > *:nth-child(2),
.trust-item:nth-child(2),
.program-card:nth-child(2),
.service-card:nth-child(2),
.asset-grid span:nth-child(2),
.process-step:nth-child(2),
.scenario-card:nth-child(2),
.detail-card:nth-child(2),
.footer-main > *:nth-child(2) {
  animation-delay: 90ms;
}

.trust-item:nth-child(3),
.program-card:nth-child(3),
.service-card:nth-child(3),
.asset-grid span:nth-child(3),
.process-step:nth-child(3),
.scenario-card:nth-child(3),
.detail-card:nth-child(3),
.footer-main > *:nth-child(3) {
  animation-delay: 170ms;
}

.trust-item:nth-child(4),
.program-card:nth-child(4),
.service-card:nth-child(4),
.asset-grid span:nth-child(4),
.process-step:nth-child(4),
.detail-card:nth-child(4),
.footer-main > *:nth-child(4) {
  animation-delay: 250ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(245, 179, 19, 0.42);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(245, 179, 19, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-navy .eyebrow {
  color: #f8dfa2;
  background: rgba(255, 255, 255, 0.08);
}

.hero-kicker {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #f2f6fb;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 860px;
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
}

.hero h1 span {
  color: #ffffff;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e6ebf1;
  font-size: 1.22rem;
}

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

.application-card {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(201, 208, 218, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.application-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.28);
}

.hero-logo {
  width: 116px;
  height: 116px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 3px solid rgba(245, 179, 19, 0.36);
  background: var(--navy);
  box-shadow: 0 18px 44px rgba(6, 29, 56, 0.2);
  object-fit: cover;
  animation: logoFloat 4.8s ease-in-out infinite;
}

.application-card h2 {
  font-size: 1.35rem;
}

.application-card p {
  margin: 10px 0 18px;
  color: var(--ink-soft);
}

.lead-form {
  display: grid;
  gap: 12px;
}

.form-honey {
  display: none;
}

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

.lead-form label {
  display: grid;
  gap: 6px;
  color: #334153;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(201, 208, 218, 0.95);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--charcoal);
  background: var(--white);
  font: 600 0.94rem/1.25 "Inter", Arial, sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-form textarea {
  min-height: 86px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(245, 179, 19, 0.28);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.consent-line {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
}

.consent-line input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border: 1px solid rgba(201, 208, 218, 0.5);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(6, 29, 56, 0.16);
}

.trust-item {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
  transition: background 200ms ease, transform 200ms ease;
}

.trust-item:hover {
  background: #fffaf0;
  transform: translateY(-3px);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.32;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--panel);
}

.section-navy {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0a2a4e);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-navy .section-heading p,
.section-navy p {
  color: #d3dce7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.content-copy p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.finance-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.finance-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(6, 29, 56, 0.17);
}

.finance-panel h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: #334153;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--gold-dark);
  border-left: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--steel);
}

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

.service-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-link {
  display: grid;
  grid-template-columns: 54px minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 190ms ease, border-color 190ms ease, color 190ms ease;
}

.service-link:hover {
  color: var(--navy);
  border-color: rgba(245, 179, 19, 0.72);
  transform: translateX(6px);
}

.service-link span {
  color: var(--gold-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
}

.service-link strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.18;
}

.service-link em {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 600;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(6, 29, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.program-card:hover,
.service-card:hover,
.detail-card:hover,
.scenario-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 179, 19, 0.55);
  box-shadow: 0 24px 56px rgba(6, 29, 56, 0.13);
}

.program-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
}

.program-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
}

.program-card.featured span,
.program-card.featured h3 {
  color: var(--white);
}

.program-card h3 {
  font-size: 1.18rem;
}

.program-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.program-card.featured p {
  color: #dce4ef;
}

.service-card {
  min-height: 188px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(6, 29, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--steel));
  font-weight: 900;
}

.service-card h3 {
  font-size: 1.17rem;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.asset-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.asset-layout .section-heading {
  margin-bottom: 0;
}

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

.asset-grid span {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: #334153;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(6, 29, 56, 0.05);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.asset-grid span:hover {
  transform: translateX(5px);
  border-color: rgba(245, 179, 19, 0.65);
  box-shadow: 0 16px 34px rgba(6, 29, 56, 0.1);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(167, 176, 190, 0.36);
  background: rgba(167, 176, 190, 0.36);
}

.process-step {
  min-height: 218px;
  padding: 28px;
  background: var(--white);
  transition: transform 220ms ease, background 220ms ease;
}

.process-step:hover {
  transform: translateY(-5px);
  background: #fffaf0;
}

.process-step span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.process-step h3 {
  font-size: 1.12rem;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

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

.scenario-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.scenario-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(245, 179, 19, 0.2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scenario-card strong {
  display: block;
  margin-top: 20px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.scenario-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: start;
}

.audience-card {
  padding: 34px;
  border: 1px solid rgba(167, 176, 190, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.audience-card h3 {
  margin-bottom: 18px;
}

.audience-card .check-list li,
.audience-card .plain-list li {
  color: #edf2f7;
}

.audience-card .plain-list li::before {
  background: var(--silver);
}

.profile-block {
  padding: 34px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.profile-block p {
  margin: 0;
  font-size: 1.22rem;
}

.profile-block strong {
  color: var(--white);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cta-band:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 66px rgba(6, 29, 56, 0.16);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.cta-band p {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0a2a4e);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -40% 40% auto -10%;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 179, 19, 0.18), transparent 62%);
  animation: glowDrift 7s ease-in-out infinite alternate;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #dce4ef;
  font-size: 1.15rem;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: start;
}

.page-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.page-card:hover,
.contact-card:hover,
.stat-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 179, 19, 0.55);
  box-shadow: 0 24px 56px rgba(6, 29, 56, 0.13);
}

.page-card h2,
.contact-card h2 {
  font-size: 1.35rem;
}

.page-card p,
.contact-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(6, 29, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.stat-card span {
  display: block;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 29, 56, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-card a {
  color: var(--navy);
  font-weight: 900;
}

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

.detail-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.detail-card h2 {
  font-size: 1.4rem;
}

.detail-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 34px;
  color: #d8e0ea;
  background: radial-gradient(circle at 18% 10%, rgba(245, 179, 19, 0.14), transparent 28%), linear-gradient(135deg, #06182d, #081f3b 52%, #041326);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.06) 48%, transparent 58% 100%);
  transform: translateX(-45%);
  animation: footerSheen 8s ease-in-out infinite;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: 38px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand-link {
  margin-bottom: 20px;
}

.footer-brand-link .logo-text strong,
.footer-column h2 {
  color: var(--white);
}

.footer-brand-link .logo-text span {
  color: #f8dfa2;
}

.footer-brand p,
.footer-column span,
.footer-column a,
.footer-bottom p {
  color: #c8d2df;
}

.footer-brand p {
  margin: 0 0 22px;
}

.footer-cta {
  min-width: 220px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.footer-column a,
.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 208, 218, 0.22);
}

.footer-bottom p {
  margin: 0;
  max-width: 780px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPan {
  from {
    background-position: center center;
  }

  to {
    background-position: 58% center;
  }
}

@keyframes glowDrift {
  from {
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(26px, 18px, 0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes footerSheen {
  0%,
  46% {
    transform: translateX(-55%);
  }

  100% {
    transform: translateX(65%);
  }
}

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

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .asset-layout,
  .page-intro,
  .contact-layout,
  .audience-grid,
  .cta-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-bar,
  .program-grid,
  .process-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .detail-grid,
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 680px) {
  .container,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .logo-text strong {
    font-size: 0.94rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .nav-links {
    gap: 2px;
    font-size: 0.86rem;
  }

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

  .hero {
    padding: 56px 0 34px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .trust-bar,
  .program-grid,
  .process-grid,
  .asset-grid,
  .scenario-grid,
  .detail-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .service-link {
    grid-template-columns: 42px 1fr;
    gap: 8px 14px;
  }

  .service-link em {
    grid-column: 2;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .application-card,
  .finance-panel,
  .cta-band,
  .audience-card,
  .profile-block {
    padding: 24px;
  }

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

  .footer-main {
    gap: 28px;
  }
}

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