:root {
  --navy: #302f62;
  --deep: #262348;
  --plum: #4e3a59;
  --orange: #ff6b18;
  --gold: #ffad14;
  --mint: #48d5cb;
  --sky: #55c4f1;
  --coral: #ff86b2;
  --cream: #fff9f1;
  --paper: #ffffff;
  --muted: #6d7089;
  --line: rgba(48, 47, 98, 0.12);
  --shadow: 0 24px 70px rgba(33, 31, 64, 0.16);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--deep);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--orange);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 16px; }

.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
}
.top-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.top-strip a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 18px rgba(24, 21, 47, 0.08);
}
.navbar {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
}
.navbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy);
  font-size: 1.34rem;
  white-space: nowrap;
}
.brand img { width: 48px; height: 48px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  color: var(--navy);
}
.nav-menu a { position: relative; }
.nav-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-menu > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(255, 107, 24, .28);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--cream);
  border-radius: 14px;
  cursor: pointer;
  padding: 11px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 9px;
}

.section { position: relative; overflow: hidden; }
.section-hero {
  background: linear-gradient(110deg, #37305f 0%, #614454 47%, #ff6818 100%);
  color: #fff;
  padding: 86px 0 94px;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}
.hero-bg::before {
  width: 340px; height: 340px; left: -120px; top: 20px;
  background: repeating-radial-gradient(circle, #fff 0 3px, transparent 4px 18px);
}
.hero-bg::after {
  width: 450px; height: 450px; right: -120px; top: 50px;
  background: repeating-radial-gradient(circle, #fff 0 2px, transparent 3px 15px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  color: var(--orange);
  font-size: .88rem;
}
.section-hero .eyebrow { color: var(--gold); }
.hero-copy h1,
.section-heading h2,
.split-copy h2,
.vision-panel h2,
.contact-copy h2 {
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 14px 0 18px;
  font-weight: 950;
}
.hero-copy h1 { font-size: clamp(3rem, 7vw, 5.6rem); max-width: 740px; }
.hero-copy p { max-width: 620px; color: rgba(255,255,255,.9); font-size: 1.1rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 32px 0 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 13px;
  border: 2px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 107, 24, .3);
}
.btn-secondary {
  border-color: rgba(255,255,255,.48);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}
.trust-row span {
  display: block;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 17px;
  padding: 13px 14px;
  color: rgba(255,255,255,.86);
}
.trust-row strong { display: block; color: #fff; }

.hero-visual { position: relative; min-height: 560px; }
.hero-image-wrap {
  position: absolute;
  inset: 20px 0 0 20px;
  border-radius: 52% 48% 51% 49% / 42% 45% 55% 58%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 76px rgba(0,0,0,.22);
  border: 18px solid rgba(111, 66, 43, .4);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.orb { position: absolute; border-radius: 50%; z-index: 2; }
.orb-one { width: 120px; height: 120px; background: var(--gold); left: 10px; bottom: 95px; box-shadow: 0 26px 60px rgba(255, 173, 20, .28); }
.orb-two { width: 42px; height: 42px; background: var(--mint); right: 4%; top: 30px; opacity: .7; }
.floating-badge {
  position: absolute;
  z-index: 3;
  left: 8%; bottom: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  color: var(--deep);
  border-radius: 21px;
  padding: 15px 18px;
  box-shadow: var(--shadow);
  max-width: 285px;
}
.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  font-size: 1.55rem;
}
.floating-badge strong { display: block; color: var(--navy); line-height: 1.1; }
.floating-badge small { color: var(--muted); }

.edge-panel {
  position: relative;
  margin-top: 84px;
  background: #fff;
  color: var(--deep);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow);
}
.section-heading { text-align: center; max-width: 790px; margin: 0 auto 36px; }
.section-heading--left { text-align: left; margin-left: 0; }
.section-heading h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); color: var(--navy); }
.section-heading p { color: var(--muted); margin: 0; }
.edge-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.mini-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(38, 35, 72, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mini-card:hover, .mini-card.active { transform: translateY(-6px); box-shadow: var(--shadow); }
.mini-icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 1.8rem;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  margin-bottom: 18px;
}
.mini-card:nth-child(2) .mini-icon { background: linear-gradient(135deg, var(--mint), var(--sky)); }
.mini-card:nth-child(3) .mini-icon { background: linear-gradient(135deg, var(--sky), var(--navy)); }
.mini-card h3, .service-card h3 { color: var(--navy); font-size: 1.35rem; line-height: 1.15; margin: 0 0 10px; letter-spacing: -0.03em; }
.mini-card p, .service-card p, .split-copy p, .vision-panel p, .contact-copy p { color: var(--muted); margin: 0 0 16px; }

.section-about-services { background: #fff; padding: 104px 0 0; }
.split-feature {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 76px;
  align-items: center;
  margin-bottom: 96px;
}
.visual-card {
  border-radius: 34px;
  background: linear-gradient(145deg, #ffffff, var(--cream));
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 28px;
}
.split-copy h2, .vision-panel h2, .contact-copy h2 { font-size: clamp(2.1rem, 4.4vw, 3.55rem); color: var(--navy); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--deep);
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 107, 24, .1);
  color: var(--orange);
  font-size: .85rem;
}

.services-band {
  position: relative;
  padding: 84px 0 100px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.1) 0 2px, transparent 3px 20px),
    linear-gradient(110deg, #a85828 0%, #654352 48%, #2e2d62 100%);
  color: #fff;
}
.services-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern-topo.svg");
  opacity: .2;
}
.services-band > .container { position: relative; }
.section-heading.light h2, .section-heading.light p { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.service-card {
  background: #fff;
  color: var(--deep);
  border-radius: 0;
  padding: 18px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}
.service-card--lift { transform: translateY(44px); }
.service-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  background: var(--cream);
}
.service-card__body { padding: 24px 16px 8px; text-align: center; }
.service-card__body.top { padding-top: 18px; padding-bottom: 24px; }

.vision-panel {
  margin: 96px auto;
  border-radius: var(--radius-xl);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  background: var(--cream);
  border: 1px solid rgba(255, 107, 24, .18);
  box-shadow: 0 24px 60px rgba(33,31,64,.08);
}
.vision-panel p { max-width: 800px; }

.section-contact { background: #fff; padding: 20px 0 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 54px;
  align-items: start;
  padding-bottom: 72px;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-list a, .contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(255, 107, 24, .13);
  margin: 0;
  color: var(--deep);
  font-weight: 700;
}
.contact-list a:hover { color: var(--orange); }
.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fbfbff;
  color: var(--deep);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 24, .12);
}
.contact-form small { color: var(--muted); }

.policies {
  padding: 76px 0 90px;
  border-top: 1px solid var(--line);
}
.accordion {
  display: grid;
  gap: 16px;
  max-width: 950px;
  margin: 0 auto;
}
details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(38,35,72,.06);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--orange); font-size: 1.35rem; line-height: 1; }
details[open] summary::after { content: "–"; }
.policy-body { padding: 0 26px 24px; color: var(--muted); }
.policy-body p { margin-top: 0; }
.policy-body li { margin: 10px 0; }
.policy-body strong { color: var(--deep); }

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr;
  gap: 56px;
  padding: 54px 0;
}
.brand--footer { margin-bottom: 16px; }
.footer p { color: var(--muted); margin: 6px 0; }
.footer h3 { color: var(--navy); margin: 0 0 14px; }
.footer a:not(.brand) { display: block; color: var(--muted); margin: 8px 0; }
.footer a:not(.brand):hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 18px;
  color: var(--muted);
}
.footer-bottom p { margin: 0; }

@media (max-width: 1040px) {
  .hero-grid, .split-feature, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; max-width: 720px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card--lift { transform: none; }
  .vision-panel { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .top-strip__inner { justify-content: center; text-align: center; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 112px;
    display: grid;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 12px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .22s ease;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu a { padding: 13px 14px; border-radius: 13px; }
  .nav-menu a:hover { background: var(--cream); }
  .nav-menu > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .section-hero { padding: 62px 0 76px; }
  .trust-row, .edge-cards, .footer-grid { grid-template-columns: 1fr; }
  .edge-panel { padding: 30px; }
  .hero-copy h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .hero-visual { min-height: 420px; }
  .hero-image-wrap { inset: 0; border-width: 12px; }
  .floating-badge { left: 3%; bottom: 10px; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section-heading--left { text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .split-feature { gap: 40px; margin-bottom: 60px; }
  .services-band { padding: 64px 0; }
  .vision-panel, .contact-form { padding: 26px; border-radius: 24px; }
  .section-about-services { padding-top: 70px; }
  .contact-grid { gap: 34px; }
  .hero-visual { min-height: 360px; }
  .floating-badge { position: relative; left: auto; bottom: auto; margin: 20px 0 0; }
}
