:root {
  --cyan: #1ebbf0;
  --cyan-deep: #009bd4;
  --navy: #071b2b;
  --navy-soft: #0d3044;
  --blue: #5168f5;
  --violet: #6c63ff;
  --mint: #21c7a8;
  --coral: #ff7a59;
  --ice: #f3fafd;
  --aqua: #eaf9fe;
  --blue-tint: #eef1ff;
  --mint-tint: #eafbf6;
  --white: #fff;
  --text: #102638;
  --muted: #5f7484;
  --border: #d7e5ec;
  --border-strong: #bed5e0;
  --shadow-sm: 0 12px 28px rgba(8, 26, 41, .07);
  --shadow-md: 0 18px 34px rgba(8, 31, 46, .09);
  --shadow-lg: 0 24px 54px rgba(5, 31, 46, .18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --container: 1280px;
  --header-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(30, 187, 240, .42); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 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; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 2000; padding: 10px 14px; background: var(--navy); color: #fff; border-radius: 8px; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

h1, h2, h3 { margin: 0; color: var(--navy); font-family: "Manrope", sans-serif; line-height: 1.12; letter-spacing: -.015em; }
h1 { max-width: 720px; font-size: clamp(2.55rem, 5vw, 3.625rem); font-weight: 800; }
h2 { max-width: 920px; font-size: clamp(2rem, 3.7vw, 2.625rem); font-weight: 800; }
h3 { font-size: 1.28rem; font-weight: 800; }
p { margin: 0; }

.eyebrow { margin: 0 0 12px; color: var(--cyan-deep); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow-violet { color: var(--violet); }
.eyebrow-mint { color: var(--mint); }
.eyebrow-coral { color: var(--coral); }
.section-heading { display: grid; gap: 12px; margin-bottom: 40px; }
.section-heading > p:last-child { max-width: 900px; color: var(--muted); font-size: 1.06rem; }

.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); background: rgba(255,255,255,.95); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; width: 205px; overflow: hidden; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; color: var(--text); }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; border-radius: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 700; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 43px; padding: 11px 20px; font-size: .92rem; }
.button-primary { color: #fff; background: linear-gradient(105deg, var(--cyan), var(--blue)); box-shadow: 0 8px 18px rgba(31, 140, 199, .2); }
.button-primary:hover { box-shadow: 0 13px 26px rgba(31, 140, 199, .28); }
.button-secondary { color: var(--navy); background: #fff; border-color: var(--border-strong); }

.hero { padding: 76px 0; min-height: 680px; background: linear-gradient(110deg, var(--ice), var(--aqua)); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(400px, .88fr); gap: 72px; align-items: center; }
.hero-copy { display: grid; gap: 24px; }
.hero-lead { max-width: 710px; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px 24px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .82rem; font-weight: 600; }
.trust-list li { position: relative; padding-left: 16px; }
.trust-list li::before { content: ""; position: absolute; left: 0; top: .52em; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.hero-visual { position: relative; max-width: 500px; margin-left: auto; border: 1px solid rgba(30,187,240,.42); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 48%, rgba(0,0,0,.13)); pointer-events: none; }
.hero-visual img { aspect-ratio: 1; object-fit: cover; }

.value-section { background: #fff; }
.cards { display: grid; gap: 20px; }
.cards-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-card { min-height: 205px; display: flex; flex-direction: column; gap: 18px; padding: 26px; border: 1px solid; border-radius: 12px; }
.value-card-cyan { background: var(--aqua); border-color: #c6eaf6; }
.value-card-blue { background: var(--blue-tint); border-color: #cfd5ff; }
.value-card-mint { background: var(--mint-tint); border-color: #c8eee5; }
.card-number { color: var(--muted); font-size: .82rem; font-weight: 600; }
.value-card p { color: var(--muted); font-size: .95rem; }

.services-section { background: var(--ice); }
.service-card { min-height: 470px; display: flex; flex-direction: column; gap: 20px; padding: 30px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.service-card h3 { min-height: 58px; font-size: 1.38rem; }
.service-card > p { color: var(--muted); font-size: .95rem; }
.service-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .88rem; font-weight: 600; }
.service-card li { position: relative; padding-left: 17px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.service-card > a { margin-top: auto; color: var(--cyan-deep); font-size: .9rem; font-weight: 700; }
.service-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .03em; }
.service-icon-cyan { color: var(--cyan-deep); background: var(--aqua); }
.service-icon-blue { color: var(--blue); background: var(--blue-tint); }
.service-icon-mint { color: #0c9f84; background: var(--mint-tint); }

.integral-section { padding: 68px 0; color: #fff; background: linear-gradient(110deg, var(--navy), var(--navy-soft)); }
.integral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.integral-grid h2 { max-width: 590px; color: #fff; font-size: clamp(2rem, 3vw, 2.35rem); }
.integral-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.integral-points article { padding: 8px 18px 8px 0; }
.integral-points h3 { color: var(--cyan); font-size: 1.25rem; }
.integral-points article:nth-child(2) h3 { color: var(--mint); }
.integral-points article:nth-child(3) h3 { color: #97a7ff; }
.integral-points p { margin-top: 12px; color: #c5d7e1; font-size: .9rem; }

.process-section { background: #fff; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.process-list li { min-height: 170px; padding: 8px 18px 8px 4px; }
.process-list h3 { margin-top: 14px; font-size: 1.18rem; }
.process-list p { max-width: 240px; margin-top: 10px; color: var(--muted); font-size: .88rem; }
.step { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; color: #fff; border-radius: 50%; font-weight: 700; box-shadow: 0 8px 18px rgba(30,187,240,.16); }
.step-cyan { background: var(--cyan); }
.step-blue { background: var(--blue); }
.step-violet { background: var(--violet); }
.step-mint { background: var(--mint); }

.about-section { background: #f6fbfd; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 72px; align-items: start; }
.about-copy > p:not(.eyebrow) { max-width: 720px; margin-top: 12px; color: var(--muted); font-size: 1.05rem; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.mission-grid article { padding: 8px 18px 8px 0; }
.mission-grid h3 { color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 1rem; }
.mission-grid p { margin-top: 10px; color: var(--muted); font-size: .86rem; }
.values-card { min-height: 450px; padding: 30px; color: #c5d7e1; background: linear-gradient(135deg, var(--navy), #0b3c51); border: 1px solid #18475b; border-radius: 16px; }
.values-card h3 { color: #fff; font-size: 1.55rem; }
.values-card dl { display: grid; gap: 14px; margin: 18px 0 0; }
.values-card dl > div { position: relative; padding-left: 20px; }
.values-card dl > div::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.values-card dl > div:nth-child(2)::before { background: var(--blue); }
.values-card dl > div:nth-child(3)::before { background: var(--mint); }
.values-card dl > div:nth-child(4)::before { background: var(--coral); }
.values-card dl > div:nth-child(5)::before { background: #9f97ff; }
.values-card dt { color: #fff; font-weight: 700; font-size: .9rem; }
.values-card dd { margin: 3px 0 0; font-size: .78rem; line-height: 1.4; }

.contact-section { background: linear-gradient(110deg, #fff, var(--ice)); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 560px; gap: 76px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 620px; margin-top: 12px; color: var(--muted); font-size: 1.05rem; }
.contact-points { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .9rem; font-weight: 600; }
.contact-points li { position: relative; padding-left: 20px; }
.contact-points li::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); }
.contact-form { position: relative; display: flex; flex-direction: column; gap: 17px; padding: 30px; background: #f7fcfe; border: 1px solid #c7e5f0; border-radius: 16px; box-shadow: var(--shadow-md); }
.form-heading h3 { font-size: 1.5rem; }
.form-heading p { margin-top: 8px; color: var(--muted); font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--muted); font-size: .82rem; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; color: var(--text); background: #fff; border: 1px solid #cfe1e9; border-radius: 8px; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.field input, .field select { min-height: 52px; padding: 0 14px; }
.field textarea { min-height: 125px; padding: 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8aa0ad; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(30,187,240,.12); outline: none; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #d94f4f; background: #fffafa; }
.field-error { min-height: 16px; color: #b42318; font-size: .74rem; line-height: 1.3; }
.field-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .72rem; }
.honeypot { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: .78rem; line-height: 1.45; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--cyan-deep); }
.consent-row a { color: var(--cyan-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.consent-error { display: block; margin-top: -11px; }
.submit-button { width: 100%; min-height: 54px; border: 0; }
.submit-button:disabled { cursor: not-allowed; opacity: .72; transform: none; }
.button-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.is-loading .button-loader { display: inline-block; }
.submit-button.is-loading .button-text { opacity: .75; }
.privacy-summary { color: var(--muted); font-size: .72rem; }
.form-status { min-height: 42px; display: flex; align-items: center; padding: 10px 12px; color: var(--muted); background: rgba(255,255,255,.6); border: 1px solid transparent; border-radius: 8px; font-size: .82rem; }
.form-status:empty { display: none; }
.form-status.is-success { color: #08705d; background: var(--mint-tint); border-color: #bfe9df; }
.form-status.is-error { color: #9f231b; background: #fff1ef; border-color: #f1c6c2; }

.site-footer { padding: 56px 0 34px; color: #c5d7e1; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) 130px 130px; gap: 60px; align-items: start; }
.footer-brand img { width: 180px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 430px; margin-top: 12px; font-size: .82rem; }
.site-footer nav { display: grid; gap: 10px; }
.site-footer nav h2 { color: #fff; font-family: "DM Sans", sans-serif; font-size: .9rem; }
.site-footer nav a { font-size: .8rem; }
.site-footer a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }

.privacy-page { background: var(--ice); }
.privacy-main { padding: 72px 0; }
.privacy-card { max-width: 900px; padding: 48px; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-sm); }
.privacy-card h1 { max-width: 760px; font-size: clamp(2.1rem, 5vw, 3rem); }
.privacy-card h2 { margin-top: 32px; font-size: 1.25rem; }
.privacy-card p { margin-top: 10px; color: var(--muted); }
.privacy-date { font-size: .85rem; }
.privacy-card .button { margin-top: 28px; color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }

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

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 46px; }
  .contact-grid { grid-template-columns: 1fr 500px; gap: 48px; }
  .about-grid { grid-template-columns: 1fr 390px; gap: 48px; }
  .integral-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; }
  .main-nav { gap: 18px; }
}

@media (max-width: 900px) {
  :root { --header-height: 82px; }
  .section { padding: 72px 0; }
  .site-header { height: var(--header-height); }
  .brand { width: 178px; }
  .brand img { width: 178px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 13px 12px; }
  .main-nav .button { margin-top: 8px; }
  .hero { min-height: 0; padding: 66px 0; }
  .hero-grid, .integral-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 580px; margin: 10px auto 0; }
  .cards-three { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .service-card { min-height: 0; }
  .service-card h3 { min-height: 0; }
  .integral-points { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 38px; }
  .values-card { min-height: 0; }
  .contact-grid { gap: 42px; }
  .contact-form { width: min(100%, 620px); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(2.25rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.35rem); }
  .hero { padding: 54px 0; }
  .hero-grid { gap: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 10px; }
  .integral-section { padding: 58px 0; }
  .integral-points { grid-template-columns: 1fr; gap: 8px; }
  .process-list { grid-template-columns: 1fr; gap: 4px; }
  .process-list li { min-height: 0; padding-bottom: 20px; }
  .mission-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .privacy-card { padding: 28px 22px; }
}
