:root {
  --blue: #2865c7;
  --dark: #20242a;
  --text: #606a74;
  --border: rgba(32, 36, 42, 0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(115,170,229,.30), transparent 34%),
    radial-gradient(circle at 5% 88%, rgba(180,213,241,.34), transparent 38%),
    linear-gradient(135deg, #edf4fa 0%, #fafcfd 52%, #edf3f7 100%);
}

a { color: inherit; }

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .5;
  animation: floating 16s ease-in-out infinite alternate;
}

.blob-1 {
  width: 650px;
  height: 650px;
  right: -200px;
  top: -260px;
  background: rgba(85,150,225,.35);
}

.blob-2 {
  width: 560px;
  height: 560px;
  left: -220px;
  bottom: -230px;
  background: rgba(174,210,242,.45);
  animation-delay: -5s;
}

.blob-3 {
  width: 420px;
  height: 420px;
  left: 42%;
  top: 34%;
  background: rgba(255,255,255,.88);
  animation-delay: -9s;
}

@keyframes floating {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(50px,-35px,0) scale(1.1); }
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .08;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.16'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 38px clamp(28px, 6vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: block;
  width: 280px;
  max-width: 65vw;
  height: auto;
}

.back-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color .2s ease;
}

.back-link:hover { color: var(--blue); }
.back-link span { font-size: 19px; line-height: 1; }

.home-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 25px clamp(28px, 6vw, 100px) 85px;
}

.home-content {
  max-width: 900px;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 25px;
}

.home-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 500;
  max-width: 850px;
  margin-bottom: 34px;
}

.home-title span { color: var(--blue); }

.intro {
  max-width: 730px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 18px;
}

.highlight {
  max-width: 720px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--dark);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 35px rgba(40,101,199,.23);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(40,101,199,.30);
}

.button-secondary {
  color: var(--dark);
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.button-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.75);
}

.legal-main {
  width: 100%;
  padding: 80px clamp(28px, 6vw, 100px) 120px;
}

.hero {
  max-width: 900px;
  margin-bottom: 95px;
}

.legal-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero-text {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
}

.quick-contact {
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px 13px 15px;
  border-radius: 100px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-size: 16px;
}

.quick-contact-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.35;
}

.quick-contact a {
  display: block;
  margin-top: 2px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.content-wrap {
  max-width: 1100px;
}

.section {
  padding: 54px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 55px;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 500;
  position: sticky;
  top: 30px;
  align-self: start;
}

.section-content {
  max-width: 730px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.section-content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-content h3:not(:first-child) { margin-top: 38px; }
.section-content strong { color: var(--dark); font-weight: 600; }
.section-content p + p { margin-top: 22px; }

.section-content ul {
  margin-top: 20px;
  padding-left: 22px;
}

.section-content li { margin-bottom: 6px; }

.section-content a {
  color: var(--blue);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.section-content a:hover { text-decoration: underline; }

.data-block + .data-block { margin-top: 34px; }

.contact-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(32,36,42,.07);
}

.contact-row:first-child { padding-top: 0; }

.label {
  color: var(--dark);
  font-weight: 600;
}

.provider-card,
.legal-note {
  padding: 24px 27px;
  border-radius: 20px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.provider-card { margin-top: 28px; }

.legal-note {
  margin-top: 70px;
  max-width: 800px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.legal-note strong { color: var(--dark); }

.site-footer {
  padding: 24px clamp(28px,6vw,100px) 38px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 13px;
  line-height: 1.7;
  color: #747d86;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover { color: var(--blue); }

@media (max-width: 850px) {
  .section {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-title { position: static; }
}

@media (max-width: 700px) {
  .site-header { padding-top: 28px; }

  .logo {
    width: 225px;
    max-width: 68vw;
  }

  .back-link { font-size: 0; }
  .back-link span { font-size: 24px; }

  .home-main {
    align-items: flex-start;
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .home-title {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.05;
  }

  .intro, .highlight { font-size: 16px; }

  .actions { flex-direction: column; }
  .button { width: 100%; }

  .legal-main {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .hero { margin-bottom: 70px; }

  .legal-title {
    font-size: clamp(43px, 12vw, 62px);
  }

  .hero-text { font-size: 17px; }

  .section { padding: 42px 0; }
  .section-title { font-size: 21px; }
  .section-content { font-size: 15px; }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}