:root {
  --info-purple: #4b3a73;
  --info-purple-mid: #6a53a8;
  --info-cyan: #1ab3cc;
  --info-yellow: #f7be00;
  --info-magenta: #da1e5b;
  --info-gold: #c49a2e;
  --info-text: #3a3550;
  --info-muted: #6b6580;
  --info-soft: #f7f3fb;
  --info-border: rgba(75, 58, 115, 0.12);
  --info-shadow: 0 22px 54px rgba(75, 58, 115, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--info-text);
  font-family: "Mulish", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body a,
body button,
body input,
body select,
body textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(75, 58, 115, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header > nav {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1500px, 100%);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 24px;
}

.info-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--info-purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.06;
  text-decoration: none;
}

.info-brand img {
  width: 48px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-left: auto;
}

.nav-links > a:not(.sis-nav-cta):not(.sis-theme-toggle) {
  color: var(--info-purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.info-main {
  overflow: hidden;
}

.info-hero {
  position: relative;
  padding: 78px 24px 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 12%, rgba(26, 179, 204, 0.13), transparent 23rem),
    radial-gradient(circle at 95% 20%, rgba(247, 190, 0, 0.13), transparent 22rem),
    linear-gradient(135deg, #fbf8ff, #fff 58%, #f5fbfd);
}

.info-hero::after {
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(218, 30, 91, 0.07);
  content: "";
}

.info-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 64px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.info-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--info-cyan);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.info-hero h1,
.info-heading h2,
.info-contact-card h2,
.info-legal-card h3 {
  font-family: "Poppins", Arial, sans-serif;
}

.info-hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--info-purple);
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.info-hero__lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--info-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.info-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1.5px solid var(--info-magenta);
  border-radius: 999px;
  background: var(--info-magenta);
  box-shadow: 0 12px 26px rgba(218, 30, 91, 0.22);
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.info-button:hover,
.info-button:focus-visible {
  background: #c91f58;
  box-shadow: 0 16px 30px rgba(218, 30, 91, 0.28);
  outline: none;
  transform: translateY(-2px);
}

.info-button--secondary {
  border-color: rgba(75, 58, 115, 0.2);
  background: #fff;
  box-shadow: none;
  color: var(--info-purple);
}

.info-button--secondary:hover,
.info-button--secondary:focus-visible {
  border-color: var(--info-purple-mid);
  background: #fff;
  box-shadow: 0 12px 24px rgba(75, 58, 115, 0.12);
}

.info-hero__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(75, 58, 115, 0.1);
  border-radius: 30px;
  box-shadow: var(--info-shadow);
}

.info-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(32, 24, 59, 0.72));
  content: "";
}

.info-hero__badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(38, 29, 71, 0.64);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.info-hero__badge strong,
.info-hero__badge span {
  display: block;
}

.info-hero__badge strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 19px;
}

.info-hero__badge span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.info-section {
  padding: 84px 24px;
  scroll-margin-top: 90px;
}

.info-section--soft {
  background: var(--info-soft);
}

.info-container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.info-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.info-heading h2 {
  margin: 14px 0 0;
  color: var(--info-purple);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.info-heading p {
  margin: 16px 0 0;
  color: var(--info-muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.info-feature-card,
.info-format-card,
.info-contact-card,
.info-form-card,
.info-legal-card {
  border: 1px solid var(--info-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(75, 58, 115, 0.07);
}

.info-feature-card {
  padding: 28px;
}

.info-feature-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--card-accent, var(--info-cyan)) 14%, #fff);
  color: var(--card-accent, var(--info-cyan));
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  place-items: center;
}

.info-feature-card h3,
.info-format-card h3 {
  margin: 0;
  color: var(--info-purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.3;
}

.info-feature-card p,
.info-format-card p {
  margin: 10px 0 0;
  color: var(--info-muted);
  font-size: 15px;
  line-height: 1.62;
}

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

.info-format-card {
  padding: 28px;
  border-top: 4px solid var(--card-accent, var(--info-purple-mid));
}

.info-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  margin-top: 34px;
  padding: 34px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 190, 0, 0.2), transparent 16rem),
    linear-gradient(125deg, var(--info-purple), var(--info-purple-mid));
  color: #fff;
}

.info-notice h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.info-notice p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.info-notice .info-button {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 17, 50, 0.22);
  color: var(--info-purple);
}

.contact-hero {
  padding-bottom: 70px;
  text-align: center;
}

.contact-hero .info-hero__inner {
  display: block;
}

.contact-hero h1,
.contact-hero .info-hero__lead {
  margin-right: auto;
  margin-left: auto;
}

.contact-hero .info-actions {
  justify-content: center;
}

.info-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 28px;
}

.info-contact-stack {
  display: grid;
  gap: 18px;
}

.info-contact-card,
.info-form-card {
  padding: 30px;
}

.info-form-card {
  scroll-margin-top: 118px;
}

@media (max-width: 1180px) {
  .info-form-card {
    scroll-margin-top: 0;
  }
}

.info-contact-card h2 {
  margin: 0;
  color: var(--info-purple);
  font-size: 21px;
}

.info-contact-card p {
  margin: 10px 0 0;
  color: var(--info-muted);
  line-height: 1.6;
}

.info-contact-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.info-contact-links a,
.info-contact-links address {
  color: var(--info-purple);
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.info-contact-links a:hover,
.info-contact-links a:focus-visible {
  color: var(--info-magenta);
  outline: none;
}

.info-form-card h2 {
  margin: 0;
  color: var(--info-purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 34px);
}

.info-form-card > p {
  margin: 10px 0 24px;
  color: var(--info-muted);
  line-height: 1.6;
}

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

.info-field {
  display: grid;
  gap: 8px;
}

.info-field--wide {
  grid-column: 1 / -1;
}

.info-field label {
  color: var(--info-purple);
  font-size: 14px;
  font-weight: 800;
}

.info-field input,
.info-field select,
.info-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1.5px solid rgba(75, 58, 115, 0.16);
  border-radius: 13px;
  background: #fff;
  color: var(--info-text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.info-field textarea {
  min-height: 150px;
  resize: vertical;
}

.info-field input:focus,
.info-field select:focus,
.info-field textarea:focus {
  border-color: var(--info-cyan);
  box-shadow: 0 0 0 4px rgba(26, 179, 204, 0.12);
}

.info-consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: var(--info-muted);
  font-size: 13px;
  line-height: 1.5;
}

.info-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--info-magenta);
}

.info-form-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 16px;
}

.info-form-status {
  margin: 0;
  color: var(--info-muted);
  font-size: 13px;
  line-height: 1.45;
}

.info-location-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid var(--info-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--info-shadow);
}

.info-location-copy {
  padding: 40px;
}

.info-location-copy h2 {
  margin: 14px 0 0;
  color: var(--info-purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
}

.info-location-copy address {
  margin-top: 18px;
  color: var(--info-muted);
  font-size: 17px;
  font-style: normal;
  line-height: 1.7;
}

.info-location-copy .info-button {
  margin-top: 24px;
}

.info-map {
  min-height: 460px;
  background: #ece8f2;
}

.info-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

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

.info-legal-card {
  padding: 32px;
}

.info-legal-card > span {
  color: var(--info-cyan);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.info-legal-card h3 {
  margin: 12px 0 22px;
  color: var(--info-purple);
  font-size: 22px;
  line-height: 1.3;
}

.info-legal-list {
  display: grid;
  margin: 0;
}

.info-legal-row {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(75, 58, 115, 0.1);
}

.info-legal-row dt {
  color: var(--info-muted);
  font-size: 13px;
}

.info-legal-row dd {
  margin: 0;
  color: var(--info-purple);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

html.sis-dark body {
  background: #171920;
  color: #f1edf8;
}

html.sis-dark .site-header {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(23, 25, 32, 0.94);
}

html.sis-dark .info-brand,
html.sis-dark .nav-links > a:not(.sis-nav-cta):not(.sis-theme-toggle),
html.sis-dark .info-hero h1,
html.sis-dark .info-heading h2,
html.sis-dark .info-feature-card h3,
html.sis-dark .info-format-card h3,
html.sis-dark .info-contact-card h2,
html.sis-dark .info-form-card h2,
html.sis-dark .info-field label,
html.sis-dark .info-location-copy h2,
html.sis-dark .info-legal-card h3,
html.sis-dark .info-legal-row dd,
html.sis-dark .info-contact-links a,
html.sis-dark .info-contact-links address {
  color: #eee8ff;
}

html.sis-dark .info-hero,
html.sis-dark .info-section--soft {
  background: #1d2028;
}

html.sis-dark .info-hero__lead,
html.sis-dark .info-heading p,
html.sis-dark .info-feature-card p,
html.sis-dark .info-format-card p,
html.sis-dark .info-contact-card p,
html.sis-dark .info-form-card > p,
html.sis-dark .info-form-status,
html.sis-dark .info-location-copy address,
html.sis-dark .info-legal-row dt {
  color: #c2bdd0;
}

html.sis-dark .info-feature-card,
html.sis-dark .info-format-card,
html.sis-dark .info-contact-card,
html.sis-dark .info-form-card,
html.sis-dark .info-location-grid,
html.sis-dark .info-legal-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #20232c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

html.sis-dark .info-field input,
html.sis-dark .info-field select,
html.sis-dark .info-field textarea {
  border-color: rgba(255, 255, 255, 0.14);
  background: #181b22;
  color: #f1edf8;
}

html.sis-dark .info-button--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: #20232c;
  color: #eee8ff;
}

@media (max-width: 920px) {
  .info-hero__inner,
  .info-contact-layout,
  .info-location-grid {
    grid-template-columns: 1fr;
  }

  .info-hero__media {
    min-height: 420px;
  }

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

  .info-format-grid {
    grid-template-columns: 1fr;
  }

  .info-location-copy {
    padding: 34px;
  }
}

@media (max-width: 680px) {
  .site-header > nav {
    min-height: 68px;
    padding: 8px 18px;
  }

  .info-brand span {
    display: none;
  }

  .info-hero,
  .info-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .info-hero {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .info-hero__inner {
    gap: 38px;
  }

  .info-hero__media {
    min-height: 340px;
    border-radius: 22px;
  }

  .info-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .info-feature-grid,
  .info-form-grid,
  .info-legal-grid {
    grid-template-columns: 1fr;
  }

  .info-notice {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .info-contact-card,
  .info-form-card,
  .info-legal-card,
  .info-location-copy {
    padding: 25px;
  }

  .info-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .info-form-actions .info-button {
    width: 100%;
  }

  .info-legal-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .info-map,
  .info-map iframe {
    min-height: 360px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
