:root {
  --bg: #f6f2e9;
  --bg-alt: #ece5d7;
  --surface: rgba(255, 253, 248, 0.88);
  --surface-strong: #fffdf8;
  --ink: #101d39;
  --ink-soft: #2f3c60;
  --muted: #68708b;
  --line: rgba(16, 29, 57, 0.12);
  --line-strong: rgba(16, 29, 57, 0.2);
  --accent: #de7746;
  --accent-strong: #c96333;
  --accent-2: #2f53ef;
  --success: #2aa96b;
  --white: #fffdf8;
  --radius-s: 16px;
  --radius-m: 24px;
  --radius-l: 36px;
  --shadow-s: 0 10px 30px rgba(16, 29, 57, 0.08);
  --shadow-m: 0 24px 60px rgba(16, 29, 57, 0.12);
  --shadow-l: 0 44px 110px rgba(16, 29, 57, 0.18);
  --f-display: "Unbounded", sans-serif;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(222, 119, 70, 0.1), transparent 26%),
    radial-gradient(circle at top right, rgba(47, 83, 239, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f5ee 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

section {
  position: relative;
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(222, 119, 70, 0.24);
  border-radius: 999px;
  background: rgba(222, 119, 70, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow-light {
  border-color: rgba(255, 253, 248, 0.24);
  background: rgba(255, 253, 248, 0.08);
  color: #ffc7a2;
}

.h-xxl {
  font-size: clamp(38px, 5vw, 62px);
}

.h-xxl-low{
    font-size: clamp(19px, 3vw, 31px);
    line-height: 0.2;
    letter-spacing: normal;

}

.h-xl {
  font-size: clamp(30px, 4vw, 54px);
}

.sec-head {
  max-width: 820px;
  margin-bottom: 56px;
}

.sec-head p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(16, 29, 57, 0.18);
}

.btn-dark:hover {
  background: #18264a;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(222, 119, 70, 0.24);
}

.btn-accent:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-ghost-light {
  border-color: rgba(255, 253, 248, 0.24);
  color: var(--white);
}

.btn-ghost-light:hover {
  border-color: rgba(255, 253, 248, 0.6);
  background: rgba(255, 253, 248, 0.08);
}

.btn-lg {
  min-height: 56px;
  padding: 16px 28px;
  font-size: 16px;
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 0 0 14px 14px;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 18px 24px 0;
}

.nav-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 18px 14px 20px;
  border: 1px solid rgba(255, 253, 248, 0.65);
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-s);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.logo-mark svg {
  position: relative;
  z-index: 1;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  flex-wrap: wrap;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-panel {
  width: min(1240px, 100%);
  margin: 12px auto 0;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-m);
}

.nav-panel[hidden] {
  display: none;
}

.nav-panel-inner {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.nav-panel-inner a,
.nav-panel-inner .btn {
  width: 100%;
}

.nav-panel-inner a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(16, 29, 57, 0.04);
  font-weight: 700;
}

.hero {
  padding: 64px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 54px;
  align-items: center;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero-sub {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 19px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-s);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--f-display);
  font-size: 18px;
}

.hero-metrics span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.hero-proof {
  max-width: 620px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96) 0%, rgba(236, 229, 215, 0.92) 100%);
  box-shadow: var(--shadow-s);
}

.hero-proof p {
  color: var(--ink-soft);
  font-size: 15px;
}

.hero-media {
  position: relative;
}

.hero-photo-card {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.65);
  box-shadow: var(--shadow-l);
  aspect-ratio: 10 / 11;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 29, 57, 0.9) 100%);
}

.hero-photo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(16, 29, 57, 0.7);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-photo-note strong {
  font-size: 18px;
}

.hero-photo-note span {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 253, 248, 0.82);
}

.hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-m);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  z-index: 999;
}

.hero-badge-a {
  top: 28px;
  left: 0;
}

.hero-badge-b {
  right: 0;
  bottom: 255px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(42, 169, 107, 0.15);
}

.badge-ico {
  color: var(--accent);
  font-size: 18px;
}

.stats {
  padding: 44px 0 40px;
  background:
    radial-gradient(circle at 85% 34%, rgba(222, 119, 70, 0.18), transparent 20%),
    linear-gradient(135deg, #111d39 0%, #1c2d5f 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.stat {
  display: grid;
  gap: 10px;
}

.stat-num {
  font-family: var(--f-display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 253, 248, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.stats-tagline {
  margin-top: 26px;
  text-align: center;
  color: rgba(255, 253, 248, 0.88);
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 23px);
}

.problems {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.42) 0%, rgba(236, 229, 215, 0.72) 100%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.problem,
.benefit,
.trust,
.case,
.expert,
.service {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-s);
}

.problem {
  padding: 28px;
  border-radius: var(--radius-m);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.problem:hover,
.benefit:hover,
.trust:hover,
.case:hover,
.expert:hover,
.service:hover {
  transform: translateY(-4px);
  border-color: rgba(222, 119, 70, 0.28);
  box-shadow: var(--shadow-m);
}

.problem-num {
  margin-bottom: 28px;
  color: var(--accent);
  font-family: var(--f-display);
  font-size: 14px;
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(16, 29, 57, 0.06);
}

.problem h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.problem p {
  color: var(--muted);
  font-size: 15px;
}

.solution-section {
  padding: 32px 0;
}

.solution {
  margin: 0 24px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(47, 83, 239, 0.2), transparent 26%),
    radial-gradient(circle at bottom left, rgba(222, 119, 70, 0.16), transparent 24%),
    linear-gradient(135deg, #101d39 0%, #16254b 100%);
  color: var(--white);
  overflow: hidden;
}

.solution .wrap {
  padding: 92px 40px;
}

.solution .sec-head p {
  color: rgba(255, 253, 248, 0.72);
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.roadmap-line {
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(255, 253, 248, 0.28) 0 8px, transparent 8px 16px);
}

.step {
  position: relative;
  z-index: 1;
}

.step-circle {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #24366f 0%, #101d39 100%);
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.step:nth-child(2) .step-circle {
  background: linear-gradient(135deg, #2f53ef 0%, #2140ba 100%);
}

.step:nth-child(3) .step-circle {
  background: linear-gradient(135deg, #de7746 0%, #bb5b2e 100%);
}

.step:nth-child(4) .step-circle {
  background: linear-gradient(135deg, #f2d99b 0%, #d5ac3e 100%);
  color: var(--ink);
}

.step-num {
  font-family: var(--f-display);
  font-size: 24px;
}

.step h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

.step p {
  color: rgba(255, 253, 248, 0.74);
  font-size: 15px;
}

.solution-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.06);
}

.solution-footer p {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.82);
}

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

.service {
  position: relative;
  overflow: hidden;
  padding: 34px 32px;
  border-radius: var(--radius-l);
}

.service-bg {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background:
    radial-gradient(circle at top right, rgba(255, 253, 248, 0.5), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
}

.service > * {
  position: relative;
  z-index: 1;
}

.s-1 {
  background: linear-gradient(135deg, #f4e5d3 0%, #ead1b1 100%);
}

.s-2 {
  background: linear-gradient(135deg, #dce4ff 0%, #becaf8 100%);
}

.s-3 {
  background: linear-gradient(135deg, #f6d9c5 0%, #f0bd9c 100%);
}

.s-4 {
  background: linear-gradient(135deg, #d5e7e4 0%, #b6d0cc 100%);
}

.s-top {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.service-ico {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.48);
}

.service h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.service-text {
  max-width: 40ch;
  color: var(--ink-soft);
}

.service ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.service li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

.service li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.benefits {
  background: rgba(236, 229, 215, 0.56);
}

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

.benefit {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-m);
}

.benefit-num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(222, 119, 70, 0.12);
  color: var(--accent);
  font-family: var(--f-display);
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.benefit p {
  color: var(--muted);
}

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

.case {
  overflow: hidden;
  border-radius: 30px;
}

.case-cover {
  aspect-ratio: 16 / 11;
  background: #d9d1c2;
}

.case-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 360px;
  padding: 26px 26px 30px;
}

.case-tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case h3 {
  font-size: 24px;
}

.case-meta {
  color: var(--muted);
  font-size: 14px;
}

.case-results {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.case-results li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

.case-results li::before {
  content: "↑";
  color: var(--accent);
  font-weight: 800;
}

.case-results li.down::before {
  content: "↓";
  color: var(--success);
}

.case-results li.flat::before {
  content: "→";
  color: var(--accent-2);
}

.case-quote {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(236, 229, 215, 0.74);
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  font-size: 14px;
  font-style: italic;
}

.trust-section {
  background: linear-gradient(180deg, rgba(236, 229, 215, 0.32) 0%, rgba(246, 242, 233, 0.75) 100%);
}

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

.trust {
  padding: 30px;
  border-radius: var(--radius-l);
}

.trust-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
}

.trust h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.trust p {
  color: var(--ink-soft);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-tag {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16, 29, 57, 0.06);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.experts {
  background: rgba(236, 229, 215, 0.5);
}

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

.expert {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  padding: 24px;
  border-radius: 30px;
}

.expert-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.expert h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.expert-role {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert p {
  color: var(--ink-soft);
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.32) 0%, rgba(246, 242, 233, 0.74) 100%);
}

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

.faq-aside {
  align-self: start;
  position: sticky;
  top: 116px;
}

.faq-aside h2 {
  margin-bottom: 18px;
}

.faq-aside p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--line-strong);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
}

.faq-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(16, 29, 57, 0.06);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
}

.faq-item.open .faq-toggle::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a-inner {
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

.cta-section {
  padding: 88px 24px 96px;
}

.cta-card {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 68px 54px;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(222, 119, 70, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(47, 83, 239, 0.18), transparent 26%),
    linear-gradient(135deg, #101d39 0%, #1b2e60 100%);
  color: var(--white);
  text-align: center;
}

.cta-card h2 {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: clamp(32px, 4vw, 56px);
}

.cta-card p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

.cta-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

footer {
  padding: 72px 0 36px;
  background: linear-gradient(180deg, #101d39 0%, #0b1530 100%);
  color: rgba(255, 253, 248, 0.72);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 36px;
}

footer h4 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer a {
  display: block;
  padding: 4px 0;
  font-size: 15px;
}

footer a:hover {
  color: #ffc7a2;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 18px;
}

.foot-logo .logo-mark {
  background: var(--white);
}



.foot-desc,
.foot-note {
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.foot-btn {
  margin-top: 14px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.46);
  font-size: 13px;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 110;
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 29, 57, 0.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px 30px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-l);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.modal.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 29, 57, 0.06);
}

.modal-close:hover {
  background: var(--ink);
  color: var(--white);
}

.modal h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 4vw, 34px);
}

.modal-sub {
  margin-bottom: 24px;
  color: var(--muted);
}

.field {
  margin-bottom: 16px;
}

.field label,
.fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(222, 119, 70, 0.6);
  box-shadow: 0 0 0 4px rgba(222, 119, 70, 0.16);
}

.fieldset {
  border: 0;
  padding: 0;
}

.radio-group {
  display: grid;
  gap: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 29, 57, 0.02);
}

.radio-item input {
  width: auto;
  margin: 0;
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
}

.modal-fine {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.form-message.is-success {
  color: var(--success);
}

.form-message.is-error {
  color: #bf4242;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(222, 119, 70, 0.85);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    margin: 0 auto;
  }

  .hero-badge-a {
    left: 16px;
  }

  .hero-badge-b {
    right: 16px;
  }

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

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

  .faq-aside {
    position: static;
  }
}

@media (max-width: 960px) {
  section {
    padding: 82px 0;
  }

  .wrap {
    width: min(1240px, calc(100% - 32px));
  }

  .nav {
    padding: 14px 16px 0;
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-metrics,
  .roadmap,
  .benefits-grid,
  .services-grid,
  .experts-grid,
  .cases-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .solution {
    margin: 0 16px;
    border-radius: 30px;
  }

  .solution .wrap {
    padding: 72px 24px;
  }

  .roadmap-line {
    display: none;
  }

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

  .expert {
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .logo span:last-child {
    font-size: 14px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-proof p {
    font-size: 14px;
  }

  .hero-ctas .btn,
  .cta-ctas .btn {
    width: 100%;
  }

  .hero-photo-card {
    aspect-ratio: 4 / 5;
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .hero-photo-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .stats-grid,
  .problems-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .solution-footer,
  .expert {
    grid-template-columns: 1fr;
    display: grid;
  }

  .expert-photo {
    width: 180px;
  }

  .cta-section {
    padding: 74px 16px 96px;
  }

  .cta-card {
    padding: 48px 22px;
    border-radius: 30px;
  }

  .modal {
    padding: 16px;
  }

  .modal-card {
    padding: 34px 20px 24px;
  }

  .floating-cta {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
