:root {
  --bg: #ffffff;
  --surface: #f4f8ff;
  --text: #0f172a;
  --dark: #4d4141;
  --muted: #4a5a72;
  --accent: #00aaff;
  --accent-deep: #0088cc;
  --danger: #c03d3d;
  --radius: 20px;
  --shadow: 0 14px 40px rgba(12, 58, 176, 0.12);
  --header-height: 78px;
}

@font-face {
  font-family: 'Beautiful Freak';
  src: url('assets/It%27s%20me%20Simon%20-%20Beautiful%20Freak%20Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Heading rules: main heading uses Beautiful Freak, sub-headers use Lato */
h1 {
  font-family: 'Beautiful Freak';
}
h2, h3 {
  font-family: 'Lato', sans-serif;
}

.container {
  margin: 0 auto;
  width: min(1120px, calc(100% - 2.2rem));
}

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  left: 0;
  padding: 0.8rem 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(11, 95, 255, 0.12);
  box-shadow: 0 10px 24px rgba(12, 58, 176, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  
}

.nav-right {
  align-items: center;
  display: flex;
  gap: 1.2rem;
}

.nav-link {
  color: var(--text);
  font-family: 'Lato';
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent-deep);
}

.nav-link:focus,
.nav-link:active,
.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--accent);
}

.menu-toggle {
  align-items: center;
  background: #f4f8ff;
  border: 1px solid rgba(11, 95, 255, 0.18);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  display: none;
  height: 2.65rem;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 2.65rem;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.24s ease, opacity 0.24s ease;
  width: 1.15rem;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0.5rem;
  text-decoration: none;
  margin-left: 0;
}

.brand p {
  animation: brand-shine 3s linear infinite;
  background-image: linear-gradient(
    90deg,
    rgba(0, 81, 255, 0.55) 0%,
    #00aaff 42%,
    #7fb1ff 50%,
    #0088cc 58%,
    rgba(0, 81, 255, 0.55) 100%
  );
  background-size: 200% 100%;
  color: transparent;
  font-family: 'Beautiful Freak';
  font-size: clamp(1.15rem, 4.5vw, 1.75rem);
  font-weight: 700;
  margin: 0;
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link[aria-current="page"] {
  color: var(--accent);
}

.site-header.is-scrolled .brand p {
  background-image: linear-gradient(
    90deg,
    rgba(0, 81, 255, 0.55) 0%,
    #00aaff 42%,
    #7fb1ff 50%,
    #0088cc 58%,
    rgba(0, 81, 255, 0.55) 100%
  );
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.brand img {
  border-radius: 0;
  height: 28px;
  object-fit: contain;
  width: 28px;
  display: block;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  padding: 0.92rem 1.35rem;
  text-decoration: none;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn:hover { transform: translateY(-2px);
 color: rgb(12, 12, 12);
 background: #0051ff; 
 }

.btn-primary {
  background: #f8f8f8;
  border-color: #00aaff;
  color: var(--accent);
}

.btn-primary:hover{
  background-color: #0088cc;

}
.btn-ghost {
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font-weight: 700;
  padding: 0;
}

.btn-ghost:hover {
  color: var(--accent);
  transform: none;
  background: none;
}



main { padding-top: 0; }

.hero {
  align-items: center;
  background-image: url("assets/familyB.png");
  background-color: #9aa7b5;
  background-position:  center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: 100vh;
  padding-top: 5rem;
  position: relative;
  object-fit:calc();
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.6) 42%,
    rgba(0, 0, 0, 0.12) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-overlay::after {
  content: "";
  display: none;
}

.hero-copy {
  color: #ffffff;
  max-width: 700px;
  margin-left: 0;
  padding: 3rem 0 3rem 2rem;
  position: relative;
  width: min(700px, calc(100% - 2rem));
  z-index: 2;
}

.eyebrow {
  color: #0088cc;
  font-family: 'Lato';
  font-size: 1.50rem;
  font-weight: bolder;
  letter-spacing: 0.26em; 
  margin: 0;
  text-transform: uppercase;
  
}

h1 {
  font-family: "Beautiful Freak";
  font-size: clamp(3rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0.8rem 0 1.1rem;
  text-transform: uppercase;
}

.lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  line-height: 1.75;
  margin: 0;
}

.feature-points {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.feature-points li {
  color: #ffffff;
  font-weight: 600;
  padding-left: 2rem;
  position: relative;
}

.feature-points li::before {
  color: #0088cc;
  content: "\2713";
  font-size: 1rem;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0.1rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-info-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border-top: 1px solid rgba(11, 95, 255, 0.14);
  border-bottom: 1px solid rgba(11, 95, 255, 0.12);
  padding: 4.6rem 0;
}

.hero-info-wrap {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 1fr;
}

.hero-info-kicker {
  color: #00aaff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.hero-info-copy h2 {
  color: #0f2237;
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.9rem, 3.9vw, 3rem);
  line-height: 1.14;
  margin: 0.55rem 0 1rem;
}

.hero-info-copy h2.info-perfect {
  color: var(--accent);
  font-family:'Raleway';
}



.hero-info-store-buttons {
  justify-content: flex-start;
  margin-top: 1.35rem;
}

.hero-info-copy p {
  color: #22447e;
  font-size: clamp(0.98rem, 1.9vw, 1.08rem);
  line-height: 1.74;
  margin: 0;
  max-width: 55ch;
}

.hero-info-media {
  background: linear-gradient(160deg, #f5f9ff, #e9f0ff);
  border: 1px solid rgba(11, 95, 255, 0.2);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-info-media img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: calc();
  width: 100%;
}

.why-choose-section {
  background: #eef0f2;
  border-top: 1px solid rgba(10, 26, 48, 0.08);
  border-bottom: 1px solid rgba(10, 26, 48, 0.08);
  padding: 5rem 0 5.4rem;
}

.why-choose-wrap {
  text-align: center;
}

.why-choose-title {
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
  line-height: 1.06;
  margin: 0;
}

.why-choose-subtitle {
  color: var(--dark);
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  line-height: 1.65;
  margin: 1.2rem auto 0;
  max-width: 760px;
}

.why-choose-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4rem;
}

.why-choose-card {
  background: #f5f6f8;
  border: 1px solid rgba(20, 38, 56, 0.06);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(31, 51, 71, 0.08);
  min-height: 330px;
  padding: 2.6rem 1.8rem 2.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.why-choose-card:hover {
  border-color: rgba(0, 81, 255, 0.28);
  box-shadow: 0 16px 32px rgba(10, 163, 214, 0.16);
  transform: translateY(-6px);
}

.why-icon {
  align-items: center;
  color: var(--accent-deep);
  display: inline-flex;
  height: 2.8rem;
  justify-content: center;
  margin-bottom: 1.7rem;
  width: 2.8rem;
}

.why-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  height: 100%;
  width: 100%;
}

.why-choose-card h3 {
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  line-height: 1.2;
  margin: 0;
}

.why-choose-card p {
  color: var(--dark);
  font-size: clamp(0.98rem, 1.65vw, 1.08rem);
  line-height: 1.68;
  margin: 1rem auto 0;
  max-width: 30ch;
}

.intro-split-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 166, 255, 0.12), transparent 50%),
    radial-gradient(circle at 88% 80%, rgba(7, 168, 237, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border-top: 1px solid rgba(11, 247, 255, 0.14);
  border-bottom: 1px solid rgba(11, 96, 255, 0.12);
  padding: 4.6rem 0;
}

.intro-split-wrap {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 1fr;
}

.intro-split-copy h2 {
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin: 0.45rem 0 1.4rem;
}

.intro-split-copy p {
  color: var(--dark);
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  margin: 0;
}

.intro-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.how-steps {
  display: grid;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-step-item {
  align-items: flex-start;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: auto 1fr;
}

.step-badge {
  align-items: center;
  border: 3px solid #08a2f0;
  border-radius: 50%;
  color: #08a2f0;
  display: inline-flex;
  font-family: 'Lato', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  height: 4.1rem;
  justify-content: center;
  line-height: 1;
  width: 4.1rem;
}

.step-copy h3 {
  color: #00aaff;
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.step-copy p {
  color: var(--dark);
  font-size: clamp(0.95rem, 1.7vw, 1.06rem);
  line-height: 1.65;
  margin: 0;
  max-width: 34ch;
}

.intro-split-media {
  background: linear-gradient(160deg, #f5f9ff, #e9f0ff);
  border: 1px solid rgba(128, 82, 62, 0.2);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-split-media img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.video-section { padding: 5rem 0 5.5rem; }

.video-frame {
  background: linear-gradient(160deg, #f3f7ff, #e7efff);
  border: 1px solid rgba(124, 78, 59, 0.18);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 860px;
  overflow: hidden;
  position: relative;
}

video {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.video-mute-toggle {
  align-items: center;
  background: rgba(8, 20, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  bottom: 1rem;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  height: 2.75rem;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: 2.75rem;
  z-index: 2;
}

.video-mute-toggle:hover {
  background: rgba(90, 74, 74, 0.9);
  transform: translateY(-1px);
}

.video-sound-icon {
  fill: none;
  height: 1.35rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 1.35rem;
}

.video-sound-icon[hidden] {
  display: none;
}

.get-app-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 186, 255, 0.11), transparent 42%),
    radial-gradient(circle at 92% 78%, rgba(13, 157, 240, 0.09), transparent 45%),
    linear-gradient(180deg, #f2f7ff 0%, #ebf2ff 100%);
  border-top: 1px solid rgba(11, 202, 255, 0.15);
  border-bottom: 1px solid rgba(11, 194, 255, 0.12);
  padding: 5.3rem 0 5.6rem;
}

.get-app-wrap {
  max-width: 900px;
  text-align: center;
}

.get-app-title {
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin: 0 0 0.8rem;
}

.get-app-text {
  color: #4d4141;
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 620px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.store-btn {
  background: #0b1428;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 236px;
  padding: 0.78rem 1.15rem;
  text-align: left;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  box-shadow: 0 14px 28px rgba(7, 15, 35, 0.24);
  transform: translateY(-2px);
}

.store-btn-sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  opacity: 0.82;
}

.store-btn-main {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.store-btn-copy {
  display: inline-grid;
  gap: 0.15rem;
}

.store-btn-icon {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
}

.store-btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}


.site-footer {
  background:
    linear-gradient(180deg, #4d4141 0%, #212121 70%);
  border-top: 1px solid rgba(10, 205, 240, 0.909);
  display: flex;
  flex-direction: column;
  /* padding: 3.2rem 0 1.6rem; */
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: space-between;
  padding: 2.4rem 0;
}

.footer-top {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 0.95fr);
}

.footer-brand-block {
  max-width: 460px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 1.6rem;
}

.footer-brand img {
  height: 72px;
  width: 72px;
  object-fit: contain;
}

.footer-copy {
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid rgba(23, 203, 235, 0.788);
  text-align: center;
  padding: 5px;
}

/* .footer-contact {
  color: var(--danger);
  display: inline-flex;
  font-weight: 700;
  margin-top: 1rem;
  text-decoration: none;
}

.footer-contact:hover {
  color: var(--accent-deep);
} */

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.footer-links-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: stretch;
  width: 100%;
}

.footer-links-column {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-links-column h4 {
  color: #fff3f3;
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}

.footer-links-column a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-column a:hover {
  color: var(--accent);
}

/* .footer-bottom {
  border-top: 1px solid rgba(215, 237, 11, 0.12);
  padding-top: 1.4rem;
}

.footer-copy-bottom {
  font-size: 0.98rem;
  text-align: center;
} */

.social-link {
  align-items: center;
  background: #f8f4ef;
  border: 1px solid rgba(175, 120, 67, 0.16);
  border-radius: 999px;
  color: #00131d;
  display: inline-flex;
  height: 2.85rem;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
  width: 2.85rem;
}

.social-link:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-link svg {
  fill: currentColor;
  height: 1.1rem;
  width: 1.1rem;
}

.modal {
  align-items: center;
  display: grid;
  inset: 0;
  padding: 1rem;
  position: fixed;
  z-index: 50;
}

.modal[hidden] { display: none; }

.modal-backdrop {
  background: rgba(10, 22, 40, 0.46);
  inset: 0;
  position: absolute;
}

.modal-panel {
  background: #ffffff;
  border: 1px solid rgba(11, 95, 255, 0.2);
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: 520px;
  padding: 1.5rem;
  position: relative;
  width: 100%;
}

.modal-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  right: 0.8rem;
  top: 0.7rem;
}

.modal h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}

.modal-subtitle {
  color: var(--muted);
  line-height: 1.55;
  margin: 0.65rem 0 1.2rem;
}

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  color: #4d4141;
  display: grid;
  font-size: 0.92rem;
  gap: 0.45rem;
}

.form input,
.form textarea,
.form select {
  background: #f8faff;
  border: 1px solid rgba(11, 218, 255, 0.2);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  padding: 0.8rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(11, 170, 255, 0.75);
  outline: none;
}

.page-main {
  background: #f4f8ff;
  padding-top: 78px;
}

.support-hero {
  position: relative;
  z-index: 0;
  background-image: linear-gradient(105deg, rgba(9, 17, 35, 0.92), rgba(11, 157, 255, 0.568)), url("assets/new.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(4rem + var(--header-height));
  padding-bottom: 3.5rem;
}

.support-hero-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

.hero-text {
  color: rgba(244, 248, 255, 0.86);
  line-height: 1.65;
  /* margin: 1rem 0 0; */
  max-width: 62ch;
  padding-top: 72px;
}

.hero-text {
  max-width: none;
}

.hero-text{
  overflow-wrap: anywhere;
}

.support-hero-intro {
  display: block;
}

.support-hero-copy h1,
.policy-hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.06;
  margin: 0.8rem 0 1rem;
  max-width: 11ch;
}

.support-hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  margin: 0;
  max-width: 58ch;
}


.support-form-panel {
  background: #ffffff;
  border: 1px solid rgba(231, 238, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(2, 18, 55, 0.28);
  color: var(--text);
  padding: 1.45rem;
}

.support-form-panel h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  margin: 0;
}

.support-form-panel > p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0.55rem 0 1.25rem;
}

.support-form-panel .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  width: 100%;
}

.support-form-panel .btn-primary:hover {
  background: var(--accent-deep);
  color: #ffffff;
}

.support-section {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  padding: 3.6rem 0 4.4rem;
}

.support-form-section {
  background: #ffffff;
  padding: 0 0 4.6rem;
}

.support-form-wrap {
  max-width: 620px;
}

.support-content-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card {
  background: #ffffff;
  border: 1px solid rgba(11, 95, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(12, 58, 176, 0.08);
  padding: 1.45rem;
}

.support-card-icon {
  color: var(--accent);
  display: inline-flex;
  font-family: 'Lato';
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.support-card h2,
.policy-card h2 {
  color: #10233d;
  font-family: 'Lato';
  margin: 0;
}

.support-card h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.2;
}

.support-card p {
  color: #4a5a72;
  line-height: 1.68;
  margin: 0.75rem 0 0;
}

.policy-hero {
  position: relative;
  z-index: 0;
  background-image: linear-gradient(105deg, rgba(9, 17, 35, 0.92), rgba(11, 157, 255, 0.568)), url("assets/new2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  /* pull the section up so its background sits underneath the fixed header */
  margin-top: calc(var(--header-height) * -1);
  /* preserve the original visual spacing but account for header height */
  padding-top: calc(4rem + var(--header-height));
  padding-bottom: 3.5rem;
}

.policy-hero h1 {
  font-family: 'Beautiful Freak';
  max-width: none;
  text-transform: uppercase;
}

.policy-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  margin: 0;
}

.policy-section {
  padding: 2.6rem 0 4.2rem;
}

.policy-card {
  background: #ffffff;
  border: 1px solid rgba(11, 95, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(12, 58, 176, 0.08);
  max-width: 860px;
  padding: 2rem;
}

.policy-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-top: 1.8rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  color: #40536d;
  line-height: 1.75;
  margin: 0.65rem 0 0;
}

.policy-card a {
  color: var(--accent);
  font-weight: 700;
}

.form-feedback {
  color: var(--accent);
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.form-feedback.error { color: var(--danger); }

@media (max-width: 1020px) {
  .hero {
    background-size: cover;
  }
  .hero-info-wrap { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-choose-card {
    min-height: 0;
    padding: 2.2rem 1.5rem 1.9rem;
  }
  .intro-split-wrap { grid-template-columns: 1fr; }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
  }
  .support-hero-grid,
  .support-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --header-height: 84px;
  }
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .site-header {
    padding: 0.65rem 0;
    width: 100%;
  }
  .nav {
    min-height: 42px;
    min-width: 0;
  }
  main { padding-top: 84px; }
  .brand img { height: 42px; width: 42px; }
  .btn { width: 100%; }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-right {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 95, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(10, 30, 72, 0.16);
    display: grid;
    flex-direction: column;
    gap: 0;
    left: 1.1rem;
    opacity: 0;
    overflow: hidden;
    padding: 0.35rem;
    pointer-events: none;
    position: fixed;
    right: 1.1rem;
    top: 72px;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    visibility: hidden;
    width: auto;
    z-index: 40;
  }
  .nav-right.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
  .nav-link {
    border-radius: 6px;
    font-family: 'Lato';
    font-size: 0.95rem;
    padding: 0.95rem 1rem;
  }
  .nav-link:hover {
    background: #f4f8ff;
  }
  .btn-ghost { text-align: right; width: auto; }
  .hero {
    background-position: 58% top;
    background-size: cover;
    min-height: calc(100vh - 84px);
    overflow: hidden;
    padding-top: 1.5rem;
  }
  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.62) 42%,
        rgba(0, 0, 0, 0.82) 100%
      ),
      linear-gradient(
        115deg,
        rgba(7, 31, 44, 0.28) 0%,
        rgba(11, 161, 255, 0.14) 52%,
        rgba(0, 0, 0, 0.36) 100%
      );
  }
  .hero-overlay::after {
    animation: hero-sheen 5.4s ease-in-out infinite;
    background: linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.02) 43%,
      rgba(255, 255, 255, 0.2) 48%,
      rgba(255, 255, 255, 0.06) 54%,
      transparent 62%,
      transparent 100%
    );
    content: "";
    display: block;
    inset: -18% -70%;
    position: absolute;
    transform: translateX(-42%);
    will-change: transform;
  }
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 0 3rem;
    width: min(100%, calc(100% - 2.2rem));
  }
  .hero-copy h1 {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
  }
  .hero-actions { gap: 0.6rem; }
  .hero-info-section { padding: 3.8rem 0; }
  .hero-info-store-buttons { justify-content: center; }
  .why-choose-section { padding: 4rem 0 4.3rem; }
  .why-choose-grid {
    gap: 0.95rem;
    margin-top: 2.4rem;
  }
  .why-choose-title { font-size: clamp(1.85rem, 9vw, 2.75rem); }
  .intro-split-section { padding: 3.8rem 0; }
  .intro-split-wrap { gap: 1.3rem; }
  .step-badge {
    font-size: 1.25rem;
    height: 3.4rem;
    width: 3.4rem;
  }
  .step-copy p { max-width: none; }
  .get-app-section { padding: 4.4rem 0 4.8rem; }
  .store-buttons { margin-top: 1.6rem; }
  .store-btn {
    justify-content: center;
    min-width: 100%;
    text-align: center;
  }
  .store-btn-copy { justify-items: center; }
  .footer-content { gap: 1.8rem; }
  .footer-brand-block { max-width: none; }
  .footer-brand img { height: 60px; width: 60px; }
  .footer-copy { font-size: 0.98rem; }
  .footer-links-grid {
    gap: 1.45rem;
    grid-template-columns: 1fr;
  }
  .footer-links-column h4 { font-size: 1.15rem; }
  .social-links { margin-top: 1.5rem; }
  .social-link {
    height: 2.65rem;
    width: 2.65rem;
  }
  .page-main { padding-top: 84px; }
  .support-hero { padding: 3.4rem 0 3.8rem; }
  .support-form-section { padding-bottom: 3.8rem; }
  .support-form-panel,
  .support-card,
  .policy-card { padding: 1.2rem; }
  .support-hero-copy h1 { max-width: none; }
  .policy-hero { padding: 3.4rem 0 3rem; }
}

@keyframes hero-sheen {
  0% {
    transform: translateX(-42%);
    opacity: 0;
  }
  18% {
    opacity: 0.75;
  }
  52% {
    opacity: 0.32;
  }
  100% {
    transform: translateX(42%);
    opacity: 0;
  }
}

@keyframes brand-shine {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

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

  .brand p {
    animation: none;
  }
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  padding: 5rem 0 5.4rem;
}

.faq-title {
  color: #0f2237;
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 0.6rem;
  text-align: center;
}

.faq-subtitle {
  color: #4a5a72;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin: 0 auto 3rem;
  max-width: 680px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: #f4f8ff;
  border: 1px solid rgba(11, 95, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
  padding: 1.5rem;
  transition: background-color 0.24s ease;
  -webkit-user-select: none;
  user-select: none;
}

.faq-question:hover {
  background-color: rgba(11, 95, 255, 0.08);
}

.faq-question span {
  color: #0f2237;
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.faq-icon {
  color: var(--accent);
  flex-shrink: 0;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transition: transform 0.24s ease;
  width: 1.5rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(11, 95, 255, 0.12);
}

.faq-answer p {
  color: #22447e;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .faq-list {
    gap: 0.6rem;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-question span {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
  }

  .faq-icon {
    height: 1.3rem;
    width: 1.3rem;
  }
}
