:root {
  color-scheme: light;
  --ink: #191a24;
  --ink-soft: #303243;
  --muted: #64687a;
  --subtle: #8d91a3;
  --paper: #f6f7fb;
  --paper-deep: #eff1f8;
  --surface: #ffffff;
  --surface-soft: #f0f1fb;
  --accent: #5b5ce2;
  --accent-strong: #4645c6;
  --accent-soft: #ececff;
  --accent-faint: rgba(91, 92, 226, 0.1);
  --mint: #0a9674;
  --mint-soft: #e7f7f2;
  --amber: #c97918;
  --amber-soft: #fff3df;
  --coral: #d65362;
  --coral-soft: #fff0f2;
  --line: rgba(25, 26, 36, 0.055);
  --line-strong: rgba(25, 26, 36, 0.1);
  --shadow-float: 0 28px 80px rgba(38, 40, 78, 0.12), 0 8px 24px rgba(38, 40, 78, 0.06);
  --shadow-card: 0 18px 48px rgba(38, 40, 78, 0.075), 0 3px 10px rgba(38, 40, 78, 0.035);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --max: 1184px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--ink);
  background: rgba(91, 92, 226, 0.18);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--surface), 0 0 0 6px rgba(91, 92, 226, 0.72);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #fbfbff;
  background: var(--accent-strong);
  font-size: 14px;
  font-weight: 720;
  transform: translateY(-160%);
  transition: transform 0.2s ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 0;
  pointer-events: none;
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(38, 40, 78, 0.09), inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-right: 8px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(91, 92, 226, 0.18);
}

.brand-mark {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-meta {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 520;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  min-height: 40px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.nav-cta {
  margin-left: 4px;
  padding-inline: 18px;
  color: #fbfbff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 12px 26px rgba(70, 69, 198, 0.24);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fbfbff;
  background: linear-gradient(135deg, #6768eb 0%, #4544be 100%);
  box-shadow: 0 16px 32px rgba(70, 69, 198, 0.3);
}

.locale-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.locale-switch[open] {
  z-index: 40;
}

.locale-trigger {
  min-width: 128px;
  min-height: 42px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  background: rgba(246, 247, 251, 0.86);
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.locale-trigger::-webkit-details-marker {
  display: none;
}

.locale-trigger::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--muted);
  background:
    linear-gradient(var(--muted), var(--muted)) 50% 0 / 1.5px 100% no-repeat,
    linear-gradient(var(--muted), var(--muted)) 0 50% / 100% 1.5px no-repeat;
  opacity: 0.72;
}

.locale-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease-out;
}

.locale-trigger:hover,
.locale-trigger:focus-visible,
.locale-switch[open] .locale-trigger {
  color: var(--accent-strong);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.locale-switch[open] .locale-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.locale-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 184px;
  padding: 8px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(38, 40, 78, 0.18), inset 0 0 0 1px var(--line);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.locale-option {
  min-height: 42px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease-out, background 0.2s ease-out;
}

.locale-option:hover,
.locale-option:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.locale-option[aria-current="page"] {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.locale-option[aria-current="page"]::after {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

main {
  position: relative;
  margin-top: -88px;
  padding-top: 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 8%, rgba(91, 92, 226, 0.13), transparent 27%),
    radial-gradient(circle at 91% 13%, rgba(20, 185, 170, 0.1), transparent 22%),
    linear-gradient(180deg, #f8f8fc 0%, #f5f6fb 30%, #ffffff 48%, #f4f5fa 100%);
}

main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 920px;
  opacity: 0.52;
  background-image: radial-gradient(circle, rgba(68, 69, 100, 0.15) 1px, transparent 1.15px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.78) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.78) 55%, transparent 100%);
  pointer-events: none;
}

main::after {
  content: "";
  position: absolute;
  top: 74px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(91, 92, 226, 0.08);
  filter: blur(2px);
  pointer-events: none;
}

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

.hero {
  width: min(100% - 40px, var(--max));
  min-height: 800px;
  margin: 0 auto;
  padding: 88px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.hero > div {
  min-width: 0;
}

.eyebrow {
  min-height: 34px;
  width: fit-content;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius-full);
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(38, 40, 78, 0.07), inset 0 0 0 1px rgba(91, 92, 226, 0.1);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(10, 150, 116, 0.12);
}

h1 {
  max-width: 740px;
  margin: 24px 0 0;
  font-size: clamp(52px, 5.4vw, 76px);
  line-height: 0.99;
  font-weight: 820;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.heading-line {
  display: block;
  max-width: 100%;
}

.heading-line:first-child {
  color: var(--accent-strong);
  background: linear-gradient(100deg, var(--ink) 4%, #30358f 48%, var(--accent) 74%, #2389b5 104%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(38, 40, 78, 0.07), inset 0 0 0 1px var(--line);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.button:hover,
.button:focus-visible {
  color: var(--accent-strong);
  background: var(--surface);
  box-shadow: 0 18px 36px rgba(38, 40, 78, 0.11), inset 0 0 0 1px rgba(91, 92, 226, 0.12);
  transform: translateY(-2px);
}

.button-primary {
  min-height: 50px;
  padding-inline: 22px;
  color: #fbfbff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 38px rgba(70, 69, 198, 0.27), 0 6px 14px rgba(70, 69, 198, 0.12);
}

.button-primary::after {
  content: "↗";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease-out;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fbfbff;
  background: linear-gradient(135deg, #6869eb 0%, #4544be 100%);
  box-shadow: 0 22px 44px rgba(70, 69, 198, 0.33), 0 8px 18px rgba(70, 69, 198, 0.14);
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: translate(2px, -2px);
}

.actions .button:nth-child(3) {
  padding-inline: 10px;
  color: var(--muted);
  background: transparent;
  box-shadow: none;
}

.actions .button:nth-child(3)::after {
  content: "→";
  font-size: 17px;
  transition: transform 0.2s ease-out;
}

.actions .button:nth-child(3):hover,
.actions .button:nth-child(3):focus-visible {
  color: var(--accent-strong);
  background: var(--accent-faint);
  box-shadow: none;
}

.actions .button:nth-child(3):hover::after,
.actions .button:nth-child(3):focus-visible::after {
  transform: translateX(3px);
}

.hero-notes {
  max-width: 680px;
  margin-top: 36px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(38, 40, 78, 0.055), inset 0 0 0 1px rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.note {
  position: relative;
  min-width: 0;
  padding: 2px 4px;
}

.note + .note::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: -12px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(48, 50, 67, 0.12), transparent);
}

.note strong {
  display: block;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.note:nth-child(2) strong {
  color: var(--mint);
}

.note:nth-child(3) strong {
  color: var(--amber);
}

.note span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.phone-wrap {
  position: relative;
  width: min(100%, 386px);
  margin: 0;
  padding: 7px;
  justify-self: center;
  display: grid;
  justify-items: center;
  border: 1px solid rgba(111, 114, 128, 0.92);
  border-radius: 60px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.1)),
    #08090e;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 2px rgba(0, 0, 0, 0.88),
    0 38px 76px rgba(26, 28, 52, 0.24),
    0 10px 24px rgba(26, 28, 52, 0.12);
  isolation: isolate;
}

.phone-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -16% 8% -18%;
  z-index: -2;
  border-radius: 46% 54% 44% 56% / 54% 42% 58% 46%;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(145deg, rgba(91, 92, 226, 0.2), rgba(98, 177, 221, 0.12) 48%, rgba(31, 182, 146, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), 0 34px 90px rgba(70, 69, 198, 0.14);
  transform: rotate(-7deg);
}

.phone-wrap::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: -16px;
  left: 5%;
  z-index: -1;
  height: 46px;
  border-radius: 50%;
  background: rgba(30, 31, 58, 0.24);
  filter: blur(24px);
}

.phone-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 51px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.075);
}

.section {
  background: rgba(255, 255, 255, 0.9);
}

.section.alt {
  background:
    radial-gradient(circle at 12% 16%, rgba(91, 92, 226, 0.07), transparent 24%),
    linear-gradient(180deg, #f1f2f9 0%, #f6f7fb 100%);
}

.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  align-items: end;
  gap: 56px;
}

.label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

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

.support-card,
.faq-card,
.contact-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255, 255, 255, 0.76);
}

.support-card {
  min-height: 184px;
  padding: 28px 28px 28px 96px;
  overflow: hidden;
}

.support-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -66px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.58;
}

.support-card:nth-child(2)::after {
  background: var(--mint-soft);
}

.support-card:nth-child(3)::after {
  background: var(--amber-soft);
}

.support-card:nth-child(4)::after {
  background: var(--coral-soft);
}

.icon {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(91, 92, 226, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.icon.mint {
  color: var(--mint);
  background: var(--mint-soft);
}

.icon.amber {
  color: var(--amber);
  background: var(--amber-soft);
}

.icon.coral {
  color: var(--coral);
  background: var(--coral-soft);
}

.support-card h3,
.contact-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.support-card p,
.faq-card p,
.contact-panel p,
.privacy-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.support-card p,
.contact-panel p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.faq-card {
  overflow: hidden;
  transition: background 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.faq-card:hover,
.faq-card:focus-within {
  background: var(--surface);
  box-shadow: 0 22px 52px rgba(38, 40, 78, 0.11), inset 0 0 0 1px rgba(91, 92, 226, 0.08);
  transform: translateY(-2px);
}

.faq-card[open] {
  background: linear-gradient(145deg, rgba(236, 236, 255, 0.74), rgba(255, 255, 255, 0.96) 62%);
  box-shadow: 0 22px 52px rgba(38, 40, 78, 0.1), inset 0 0 0 1px rgba(91, 92, 226, 0.1);
}

.faq-card summary {
  min-height: 84px;
  padding: 24px 72px 24px 24px;
  display: flex;
  align-items: center;
  list-style: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  user-select: none;
}

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

.faq-question {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 730;
  letter-spacing: -0.025em;
}

.faq-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  transition: background 0.2s ease-out, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-card[open] .faq-toggle {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-card[open] .faq-toggle::before,
.faq-card[open] .faq-toggle::after {
  background: #fbfbff;
}

.faq-answer {
  padding: 0 72px 24px 24px;
}

.faq-answer p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: stretch;
  gap: 16px;
}

.contact-panel {
  padding: 32px;
  overflow: hidden;
}

#privacy .contact-panel:first-child {
  background:
    radial-gradient(circle at 90% 0%, rgba(10, 150, 116, 0.11), transparent 35%),
    rgba(255, 255, 255, 0.92);
}

#privacy .contact-panel:last-child {
  color: #fbfbff;
  background:
    radial-gradient(circle at 94% 8%, rgba(133, 134, 255, 0.38), transparent 34%),
    linear-gradient(145deg, #29264f 0%, #4143a8 100%);
  box-shadow: 0 24px 58px rgba(50, 48, 120, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

#privacy .contact-panel:last-child h3,
#privacy .contact-panel:last-child p {
  color: #fbfbff;
}

#privacy .contact-panel:last-child p {
  color: rgba(248, 248, 255, 0.75);
}

#privacy .contact-panel:last-child .button {
  margin-top: 12px;
  color: var(--accent-strong);
  background: #fbfbff;
  box-shadow: 0 14px 32px rgba(22, 21, 53, 0.2);
}

#privacy .contact-panel:last-child .button::after {
  content: "→";
  margin-left: 2px;
  font-size: 17px;
  transition: transform 0.2s ease-out;
}

#privacy .contact-panel:last-child .button:hover,
#privacy .contact-panel:last-child .button:focus-visible {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

#privacy .contact-panel:last-child .button:hover::after,
#privacy .contact-panel:last-child .button:focus-visible::after {
  transform: translateX(3px);
}

.contact-main {
  min-height: 336px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fbfbff;
  background:
    radial-gradient(circle at 88% 12%, rgba(151, 152, 255, 0.38), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(29, 189, 150, 0.24), transparent 38%),
    linear-gradient(135deg, #24223f 0%, #3d3e9b 58%, #176b62 120%);
  box-shadow: 0 28px 68px rgba(45, 43, 105, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.contact-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.17) 1px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: linear-gradient(120deg, transparent 12%, #fff 54%, transparent 86%);
  -webkit-mask-image: linear-gradient(120deg, transparent 12%, #fff 54%, transparent 86%);
  pointer-events: none;
}

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

.contact-main .label {
  color: rgba(244, 244, 255, 0.68);
}

.contact-main h2,
.contact-main h3,
.contact-main p {
  color: #fbfbff;
}

.contact-main p {
  max-width: 620px;
  color: rgba(244, 244, 255, 0.72);
  font-size: 15px;
}

.contact-email {
  min-height: 50px;
  margin-top: 28px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  color: var(--accent-strong);
  background: #fbfbff;
  box-shadow: 0 16px 34px rgba(22, 21, 53, 0.22);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.contact-email::before {
  content: "✦";
  color: var(--accent);
  font-size: 14px;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--accent-strong);
  background: var(--accent-soft);
  box-shadow: 0 20px 42px rgba(22, 21, 53, 0.28);
  transform: translateY(-2px);
}

.privacy-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 28px;
}

.privacy-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
}

.footer {
  color: #f5f5fb;
  background:
    radial-gradient(circle at 82% 0%, rgba(91, 92, 226, 0.22), transparent 28%),
    #20212c;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  min-height: 104px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: #f5f5fb;
  opacity: 0.72;
  transition: opacity 0.2s ease-out, color 0.2s ease-out;
}

.footer a:hover,
.footer a:focus-visible,
.footer a[aria-current="page"] {
  color: #ffffff;
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 13px;
}

.copyright {
  margin: 0;
  color: rgba(245, 245, 251, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 48px;
  }

  h1 {
    font-size: clamp(48px, 5.7vw, 66px);
  }

  .hero-notes {
    gap: 18px;
  }

  .note + .note::before {
    left: -9px;
  }
}

@media (max-width: 920px) {
  .nav-links .nav-link:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 80px;
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero > div:first-child {
    max-width: 720px;
  }

  .phone-wrap {
    width: min(100%, 344px);
  }

  .section-head,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-copy {
    max-width: 680px;
  }

  #privacy .contact-panel:last-child,
  #contact .contact-panel:last-child {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    padding: 8px 0;
  }

  .nav {
    width: min(100% - 16px, var(--max));
    min-height: 56px;
    padding: 7px 8px;
    gap: 8px;
    border-radius: 18px;
  }

  .brand {
    gap: 9px;
    padding-right: 0;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-mark {
    display: none;
  }

  .locale-trigger {
    min-width: 104px;
    min-height: 42px;
    padding: 8px 10px;
    gap: 6px;
    font-size: 12px;
  }

  .nav-cta {
    min-height: 42px;
    margin-left: 0;
    padding: 9px 12px;
    font-size: 12px;
  }

  main {
    margin-top: -72px;
    padding-top: 72px;
  }

  main::before {
    height: 760px;
    background-size: 24px 24px;
  }

  main::after {
    top: 140px;
    right: -260px;
  }

  .hero,
  .section-inner,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding: 72px 0 64px;
    gap: 56px;
  }

  h1 {
    margin-top: 20px;
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .actions {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .actions .button:nth-child(3) {
    min-height: 40px;
  }

  .hero-notes {
    padding: 12px 16px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .note {
    min-height: 64px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: center;
    gap: 12px;
  }

  .note + .note::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(48, 50, 67, 0.12), transparent);
  }

  .note span {
    margin-top: 0;
  }

  .phone-wrap {
    width: min(100%, 292px);
  }

  .phone-wrap::before {
    inset: 7% -12% 8% -12%;
  }

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

  .section-head {
    margin-bottom: 32px;
    gap: 20px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .support-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 0;
    padding: 24px 24px 24px 84px;
  }

  .icon {
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .faq-card summary {
    min-height: 76px;
    padding: 20px 64px 20px 20px;
  }

  .faq-toggle {
    top: 20px;
    right: 20px;
  }

  .faq-answer {
    padding: 0 64px 22px 20px;
  }

  .contact-panel,
  .contact-main {
    padding: 28px 24px;
  }

  .contact-main {
    min-height: 328px;
  }

  .contact-email {
    max-width: 100%;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    min-height: 0;
    padding: 40px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .locale-trigger {
    width: 42px;
    min-width: 42px;
    justify-content: center;
  }

  .locale-trigger::after {
    display: none;
  }

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

  .nav-cta {
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pulse {
    animation: pulse-soft 2.1s ease-out infinite;
  }

  .phone-wrap {
    animation: phone-float 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  @keyframes pulse-soft {
    0% {
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 0 0 0 4px rgba(10, 150, 116, 0.28);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(10, 150, 116, 0);
    }
    100% {
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 0 0 0 4px rgba(10, 150, 116, 0.28);
    }
  }

  @keyframes phone-float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-up {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-notes,
    .section-head,
    .support-grid,
    .faq-grid,
    .contact-layout {
      animation: reveal-up auto cubic-bezier(0.2, 0.8, 0.2, 1) both;
      animation-timeline: view();
      animation-range: entry 0% entry 42%;
    }
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
