:root {
  --ink: #272633;
  --muted: #6f6d7d;
  --teal: #168f9a;
  --teal-dark: #08737c;
  --teal-soft: #dff8f8;
  --rose: #df4d66;
  --rose-dark: #8a2031;
  --rose-soft: #fff0f2;
  --cream: #fffaf4;
  --card: rgba(255, 255, 255, 0.86);
  --line: rgba(8, 115, 124, 0.16);
  --shadow: 0 24px 70px rgba(37, 91, 96, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(223, 77, 102, 0.12), transparent 28rem),
    linear-gradient(180deg, #ddf9fa 0%, #f7ffff 46%, var(--cream) 100%);
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-dark);
}

.hero,
.page-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(44px, 7vw, 76px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.hero h1,
.page-hero h1,
.section h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.16;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 7vw, 5.4rem);
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.hero p,
.page-hero p,
.section p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.english-note {
  direction: ltr;
  color: #777485;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(8, 115, 124, 0.12);
}

.button.primary {
  color: #fff;
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button.danger {
  color: #fff;
  background: var(--rose);
}

.button.quiet {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(8, 115, 124, 0.22);
  box-shadow: none;
}

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

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(223, 248, 248, 0.72)),
    var(--card);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: min(70%, 320px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(8, 115, 124, 0.18));
}

.section {
  margin: 0 0 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 28px;
}

.feature-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.step-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
}

.feature-icon,
.step-number {
  display: inline-grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-weight: 900;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 1.35rem;
}

.feature-card h3,
.step-card h3 {
  margin: 18px 0 0;
  font-size: 1.25rem;
}

.feature-card p,
.step-card p {
  margin-top: 8px;
  font-size: 1rem;
}

.split-section,
.request-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero {
  max-width: 900px;
}

.request-panel {
  border-color: rgba(8, 115, 124, 0.18);
  background:
    linear-gradient(135deg, rgba(223, 248, 248, 0.82), rgba(255, 255, 255, 0.92)),
    var(--card);
}

.support-section,
.compact-panel {
  box-shadow: 0 14px 38px rgba(37, 91, 96, 0.1);
}

.support-section h2,
.compact-panel h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  direction: rtl;
}

.step-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
}

.step-copy {
  padding: 24px 24px 18px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.05rem;
}

.step-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: #dff8f8;
}

.info-band {
  background: linear-gradient(135deg, rgba(223, 248, 248, 0.95), rgba(255, 250, 244, 0.95));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.legal-page {
  max-width: 920px;
  margin-top: 24px;
}

.legal-header {
  margin-bottom: 28px;
}

.legal-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.16;
}

.legal-page h2 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.35;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.legal-page ul {
  margin: 14px 0 0;
  padding-inline-start: 24px;
}

.legal-page a {
  color: var(--teal-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .hero,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
  }

  .split-section,
  .request-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .page-hero {
    padding-top: 28px;
  }

  .section {
    padding: 24px;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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