:root {
  --blue: #07145F;
  --blue-2: #0A1A73;
  --blue-3: #0E2491;
  --yellow: #FFC83D;
  --yellow-2: #FFD96C;
  --cream: #FFF8E6;
  --white: #FFFFFF;
  --text: #101426;
  --muted: rgba(255, 255, 255, .74);
  --muted-soft: rgba(255, 255, 255, .58);
  --line: rgba(255, 255, 255, .14);
  --green: #22C55E;
  --orange: #F59E0B;
  --red: #EF4444;
  --shadow: 0 30px 90px rgba(0, 0, 0, .30);
  --radius: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 200, 61, .24), transparent 28%),
    radial-gradient(circle at 6% 18%, rgba(255, 255, 255, .09), transparent 26%),
    linear-gradient(180deg, var(--blue) 0%, #06104E 52%, #050B36 100%);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: .65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes tinyBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.animate-1 { animation: fadeUp .75s ease both; }
.animate-2 { animation: fadeUp .75s ease .12s both; }
.animate-3 { animation: fadeUp .75s ease .24s both; }
.animate-4 { animation: fadeUp .75s ease .36s both; }

.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  z-index: 1;
}

.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(7, 20, 95, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.03em; }
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 12px 30px rgba(255, 200, 61, .24);
  animation: tinyBounce 3.4s ease-in-out infinite;
}
.brand-name { font-size: 23px; color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--yellow); }
.nav-pill {
  padding: 10px 16px; border-radius: 999px;
  color: var(--blue) !important;
  background: var(--yellow);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
.nav-pill:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: translateX(-120%);
  animation: shimmer 4.5s ease-in-out infinite;
}

.hero {
  max-width: var(--max); margin: 0 auto; padding: 76px 22px 58px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 15px; border-radius: 999px;
  border: 1px solid rgba(255, 200, 61, .28);
  background: rgba(255, 200, 61, .09);
  color: var(--yellow); font-weight: 800; font-size: 14px;
  margin-bottom: 22px;
}
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--yellow); box-shadow: 0 0 0 7px rgba(255, 200, 61, .13); }
h1 {
  margin: 0; max-width: 760px;
  font-size: clamp(43px, 6.6vw, 86px);
  line-height: .96; letter-spacing: -.075em; font-weight: 950;
}
.yellow { color: var(--yellow); }
.lead {
  margin: 26px 0 0; max-width: 670px;
  color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 54px; padding: 0 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 900; transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--yellow-2), var(--yellow)); color: var(--blue); box-shadow: 0 18px 45px rgba(255, 200, 61, .28); }
.btn-secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, .07); color: var(--white); }

.badges {
  margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; max-width: 700px;
}
.badge {
  padding: 12px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .07);
  color: var(--muted);
  font-size: 14px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 200, 61, .42);
  background: rgba(255, 200, 61, .09);
}
.badge b { color: var(--yellow); }

.hero-art-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}
.glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 61, .35), transparent 62%);
  filter: blur(16px);
  animation: glowPulse 5.2s ease-in-out infinite;
}
.main-image-card {
  position: relative;
  width: min(520px, 90vw);
  min-height: 560px;
  border-radius: 44px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .04)),
    rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--shadow);
  animation: floatHero 6.4s ease-in-out infinite;
  overflow: hidden;
}
.main-image-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 200, 61, .22) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: shimmer 5.8s ease-in-out infinite;
  pointer-events: none;
}
.main-image-frame {
  position: relative;
  height: 100%;
  min-height: 524px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, .10);
}
.main-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 524px;
  object-fit: cover;
  display: block;
}
.main-image-note {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(7, 20, 95, .72);
  border: 1px solid rgba(255, 200, 61, .26);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.mini-card {
  position: absolute; left: -10px; bottom: 72px;
  width: 232px; padding: 16px; border-radius: 26px;
  background: rgba(7, 20, 95, .82);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: floatSoft 5.4s ease-in-out infinite;
  z-index: 4;
}
.avatar-ring {
  width: 68px; height: 68px; border-radius: 50%; padding: 5px;
  background: conic-gradient(var(--green) 0 86%, rgba(255, 255, 255, .12) 86% 100%);
  margin-bottom: 10px;
  position: relative;
}
.avatar-ring:before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, .38);
  animation: ringSpin 6s linear infinite;
}
.avatar-core {
  width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .1);
  background: rgba(7, 20, 95, .90);
  display: grid;
  place-items: center;
}
.mini-card strong { display: block; font-size: 23px; color: var(--yellow); }
.mini-card p { margin: 6px 0 0; color: var(--muted-soft); font-size: 13px; line-height: 1.35; }

.floating-chip {
  position: absolute;
  right: 10px;
  bottom: 170px;
  z-index: 4;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255, 200, 61, .95);
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  animation: fadeUp .8s ease .5s both, tinyBounce 3.1s ease-in-out 1s infinite;
}

section { max-width: var(--max); margin: 0 auto; padding: 78px 22px; position: relative; }
.section-title { text-align: center; max-width: 790px; margin: 0 auto 42px; }
.section-title h2 {
  margin: 0; font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.03; letter-spacing: -.06em;
}
.section-title p { margin: 18px auto 0; max-width: 700px; color: var(--muted); font-size: 18px; line-height: 1.6; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  min-height: 260px; padding: 28px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .07); border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 200, 61, .34);
  background: rgba(255, 255, 255, .10);
}
.icon {
  width: 54px; height: 54px; border-radius: 19px; margin-bottom: 22px;
  display: grid; place-items: center;
  background: rgba(255, 200, 61, .13); color: var(--yellow);
}
.card h3 { margin: 0; font-size: 22px; letter-spacing: -.035em; }
.card p { margin: 12px 0 0; color: var(--muted); line-height: 1.58; }
.joke { margin-top: 14px; color: var(--yellow-2); font-size: 14px; line-height: 1.45; }

.light {
  max-width: none; margin-top: 40px; padding: 92px 22px;
  background:
    radial-gradient(circle at 17% 8%, rgba(255, 200, 61, .30), transparent 25%),
    linear-gradient(180deg, var(--cream) 0%, white 100%);
  color: var(--text);
}
.light-inner { max-width: var(--max); margin: 0 auto; }
.light .section-title p { color: #646B7C; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
.step {
  background: white; border: 1px solid rgba(7, 20, 95, .08);
  box-shadow: 0 18px 58px rgba(7, 20, 95, .10);
  border-radius: var(--radius); padding: 26px; counter-increment: s;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-7px); box-shadow: 0 24px 70px rgba(7, 20, 95, .15); }
.step:before {
  content: counter(s); width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--yellow); color: var(--blue);
  font-weight: 950; margin-bottom: 34px;
}
.step h3 { margin: 0; font-size: 20px; letter-spacing: -.035em; }
.step p { color: #62697A; line-height: 1.55; margin: 10px 0 0; font-size: 15px; }

.compat {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center;
}
.rings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.profile {
  padding: 18px; border-radius: var(--radius); background: rgba(255, 255, 255, .07); border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}
.profile:hover { transform: translateY(-6px); border-color: rgba(255, 200, 61, .32); }
.ring { width: 108px; height: 108px; border-radius: 50%; padding: 7px; margin-bottom: 16px; }
.r1 { background: conic-gradient(var(--green) 0 91%, rgba(255, 255, 255, .15) 91%); }
.r2 { background: conic-gradient(var(--yellow) 0 66%, rgba(255, 255, 255, .15) 66%); }
.r3 { background: conic-gradient(var(--orange) 0 54%, rgba(255, 255, 255, .15) 54%); }
.r4 { background: conic-gradient(var(--green) 0 82%, rgba(255, 255, 255, .15) 82%); }
.ring-core {
  width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center;
  font-weight: 950; font-size: 22px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .20);
}
.profile b { display: block; font-size: 18px; }
.profile span { display: block; margin-top: 5px; color: var(--muted); font-size: 14px; line-height: 1.4; }
.panel {
  padding: 38px; border-radius: 36px; background: rgba(255, 255, 255, .07); border: 1px solid var(--line);
}
.panel h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -.06em; }
.panel p { margin: 18px 0 0; color: var(--muted); font-size: 18px; line-height: 1.62; }
.check-list { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); line-height: 1.45; }
.tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 200, 61, .14); color: var(--yellow); font-weight: 950; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  padding: 26px; border-radius: var(--radius); background: rgba(255, 255, 255, .07); border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}
.quote:hover { transform: translateY(-6px); border-color: rgba(255, 200, 61, .30); }
.quote p { margin: 0; color: var(--muted); line-height: 1.6; }
.quote b { display: block; margin-top: 18px; color: var(--yellow); }

.cta { padding-bottom: 110px; }
.cta-box {
  text-align: center; border-radius: 44px; padding: 58px 28px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 200, 61, .27), transparent 40%), rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 200, 61, .20); box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  transform: translateX(-120%);
  animation: shimmer 7s ease-in-out infinite;
}
.cta-box > * { position: relative; }
.cta-box h2 { margin: 0; font-size: clamp(36px, 5vw, 66px); line-height: 1; letter-spacing: -.065em; }
.cta-box p { max-width: 710px; margin: 20px auto 0; color: var(--muted); font-size: 19px; line-height: 1.6; }
.store-row { margin-top: 30px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.store {
  min-width: 190px; padding: 15px 18px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, .09); text-align: left;
  transition: transform .2s ease, background .2s ease;
}
.store:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .13); }
.store small { display: block; color: var(--muted-soft); font-size: 12px; }
.store b { display: block; margin-top: 2px; font-size: 18px; color: var(--white); }

footer { border-top: 1px solid var(--line); background: rgba(0, 0, 0, .12); }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 30px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  color: var(--muted-soft); font-size: 14px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Custom Layouts for Content & Legal Pages */
.content-wrapper {
  max-width: 800px;
  margin: 60px auto 100px;
  padding: 0 22px;
  animation: fadeUp .75s ease both;
}

.legal-card {
  padding: 48px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.legal-card h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: -.04em;
}

.legal-subtitle {
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 34px;
  font-size: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.legal-content {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 42px;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -.03em;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content ul {
  margin: 16px 0 24px 20px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 12px;
}

.legal-content strong {
  color: var(--white);
}

.legal-entity-box {
  margin-top: 48px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 200, 61, .06);
  border: 1px solid rgba(255, 200, 61, .20);
  color: var(--muted);
}

.legal-entity-box h3 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 18px;
}

.legal-entity-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
}

.back-home:hover {
  color: var(--yellow);
  transform: translateX(-4px);
}

/* Contact and Forms Styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.contact-info p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 38px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 200, 61, .12);
  color: var(--yellow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-details h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
}

.info-details p {
  margin: 0;
  font-size: 15px;
  color: var(--muted-soft);
}

.form-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

/* Tabs styles */
.tabs-header {
  display: flex;
  background: rgba(0, 0, 0, .24);
  border: 1px solid var(--line);
  padding: 5px;
  border-radius: 16px;
  margin-bottom: 30px;
  gap: 4px;
}

.tab-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .22s ease;
}

.tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

.tab-btn.active {
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(255, 200, 61, .15);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeUp .45s ease both;
}

/* Form inputs styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--muted-soft);
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, .20);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  transition: all .2s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .32);
}

.form-control:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(0, 0, 0, .32);
  box-shadow: 0 0 0 4px rgba(255, 200, 61, .12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFF8E6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 24px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .20);
  margin-top: 2px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.alert {
  padding: 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.alert-danger {
  background: rgba(239, 68, 68, .09);
  border: 1px solid rgba(239, 68, 68, .28);
  color: #FFA3A3;
}

.alert-warning {
  background: rgba(245, 158, 11, .09);
  border: 1px solid rgba(245, 158, 11, .28);
  color: #FFE0A3;
}

.btn-block {
  width: 100%;
}

/* Modal styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 95, .82);
  backdrop-filter: blur(14px);
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 22px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: min(440px, 100%);
  padding: 44px 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .02)),
    rgba(7, 20, 95, .90);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translateY(30px);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .14);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.modal-box h2 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -.03em;
}

.modal-box p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 30px;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-art-wrap { order: -1; min-height: auto; padding: 24px 0 10px; }
  .main-image-card { width: min(420px, 90vw); min-height: 480px; animation-duration: 7s; }
  .main-image-frame, .main-image-frame img { min-height: 444px; }
  .cards, .steps, .compat, .quotes { grid-template-columns: 1fr; }
  .rings { grid-template-columns: repeat(2, 1fr); }
  
  /* Contact page responsive */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 720px) {
  .nav-links a:not(.nav-pill) { display: none; }
  .badges, .check-list, .rings { grid-template-columns: 1fr; }
  .mini-card, .floating-chip { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .main-image-card { min-height: 430px; }
  .main-image-frame, .main-image-frame img { min-height: 394px; }
  .legal-card { padding: 28px 20px; }
  .form-panel { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Language Switcher header component styles */
.lang-switcher {
  display: inline-flex;
  background: rgba(0, 0, 0, .24);
  border: 1px solid var(--line);
  padding: 3px;
  border-radius: 999px;
  gap: 2px;
  margin-left: 10px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.lang-btn:hover {
  color: var(--white);
}
.lang-btn.active {
  background: var(--yellow);
  color: var(--blue);
}
