

:root {
  --ink: #12070c;
  --muted: #6e5962;
  --pink: #f01f57;
  --hot: #ff346d;
  --wine: #a90e3c;
  --pale: #fff3f6;
  --blush: #ffdce5;
  --line: #f0ccd6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fffafa;
  color: var(--ink);
  font-family: Inter, "Noto Sans Devanagari", "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand strong { color: var(--pink); }
.brand-mark {
  width: 38px;
  height: 35px;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(145deg, var(--hot), var(--wine));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 9px 22px #f01f5735;
  transform: rotate(-4deg);
}
.brand-mark span { transform: rotate(4deg); font-size: 17px; }
.brand-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-header nav { display: flex; gap: 32px; font-size: 14px; font-weight: 700; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: var(--pink); }

.install-button {
  width: fit-content;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hot), var(--wine));
  color: #fff;
  border: 1px solid #ff7a9d;
  box-shadow: 0 14px 34px #b20e3c38, inset 0 1px #ffffff55;
  transition: transform .2s ease, box-shadow .2s ease;
}
.install-button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px #b20e3c52; }
.install-button svg { width: 27px; height: 27px; fill: currentColor; flex: none; }
.install-button span { display: flex; flex-direction: column; line-height: 1; }
.install-button small { font-size: 9px; letter-spacing: .11em; opacity: .8; }
.install-button strong { margin-top: 5px; font-size: 16px; }
.install-button.compact { min-height: 45px; padding: 7px 14px; border-radius: 13px; }
.install-button.compact svg { width: 20px; height: 20px; }
.install-button.compact small { display: none; }
.install-button.compact strong { margin: 0; font-size: 13px; }
.install-button.inverse { background: #fff; color: #bd1645; border-color: #fff; box-shadow: 0 16px 40px #21000942; }

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 120px max(7vw, calc((100vw - 1180px) / 2)) 55px;
  background:
    radial-gradient(circle at 13% 18%, #ffe2ea 0 2px, transparent 3px),
    radial-gradient(circle at 78% 20%, #ffc4d5 0 3px, transparent 4px),
    linear-gradient(115deg, #fff 0 49%, #fff0f4 49% 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -11vw;
  top: -20vw;
  width: 64vw;
  height: 64vw;
  border-radius: 50%;
  border: 110px solid #ffdae5;
  opacity: .5;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 20px; height: 20px; background: #ff8bab; left: 46%; top: 27%; }
.hero-orb-two { width: 9px; height: 9px; background: var(--pink); left: 6%; bottom: 17%; }
.hero-copy { z-index: 2; padding: 38px 0; }
.eyebrow-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  background: #ffe8ee;
  border: 1px solid #ffd0dc;
  border-radius: 999px;
  color: #a8123e;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 5px #f01f5720; display: inline-block; }
.hero h1 {
  margin: 24px 0 4px;
  max-width: 700px;
  font-size: clamp(64px, 7vw, 108px);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 950;
}
.hero h1 span, .section-heading h2 span, .offer-copy h2 span, .safety-card h2 span, .faq-intro h2 span, .final-cta h2 span {
  color: var(--pink);
}
.hero-hindi { margin: 18px 0 0; font-size: 26px; font-weight: 800; color: var(--wine); }
.hero-description { max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.7; margin: 18px 0; }
.offer-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.offer-chips span { padding: 10px 13px; background: #fff; border: 1px solid var(--line); border-radius: 999px; color: #6e2340; font-size: 12px; box-shadow: 0 7px 22px #a70d3a0d; }
.offer-chips b { color: var(--pink); }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 25px; }
.download-proof { display: flex; flex-direction: column; color: var(--muted); font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.download-proof strong { color: var(--ink); font-size: 24px; letter-spacing: -.04em; }
.microcopy { color: #9d7d88; font-size: 11px; margin-top: 13px; }
.hero-visual { z-index: 2; align-self: end; position: relative; height: 630px; display: grid; place-items: end center; }
.hero-phone { position: relative; z-index: 2; width: auto; height: 610px; object-fit: contain; filter: drop-shadow(0 34px 28px #7b143934); }
.phone-glow { position: absolute; z-index: 0; width: 420px; height: 420px; border-radius: 50%; background: #ef2a5f; filter: blur(80px); opacity: .15; bottom: 30px; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid #ffdbe4; border-radius: 16px; box-shadow: 0 18px 45px #5e0c2830; }
.float-live { top: 120px; left: 5%; padding: 12px 15px; color: #a90e3c; font-size: 11px; font-weight: 900; letter-spacing: .08em; animation: floaty 4s ease-in-out infinite; }
.float-message { right: 0; bottom: 130px; padding: 12px 16px; animation: floaty 4.8s ease-in-out infinite reverse; }
.float-message > span { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; border-radius: 12px; background: var(--pink); }
.float-message div { display: flex; flex-direction: column; font-size: 12px; }
.float-message small { color: var(--muted); margin-top: 4px; }
@keyframes floaty { 50% { transform: translateY(-10px) rotate(1deg); } }

.proof-bar {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.proof-bar div { display: flex; justify-content: center; align-items: center; gap: 9px; padding: 15px; border-right: 1px solid var(--line); font-size: 13px; }
.proof-bar div:last-child { border-right: 0; }
.proof-bar span { color: var(--pink); }

.section { max-width: 1180px; margin: auto; padding: 110px 0; }
.section-heading .kicker, .kicker { margin: 0 0 15px; color: var(--wine); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.section-heading h2, .offer-copy h2, .safety-card h2, .faq-intro h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 950;
}
.section-heading > p:last-child { color: var(--muted); margin-top: 15px; font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.feature-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 20px 60px #8d15331a; }
.feature-media { position: relative; height: 430px; overflow: hidden; background: var(--pale); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .45s ease; }
.feature-card:hover .feature-media img { transform: scale(1.025); }
.feature-media > span { position: absolute; top: 15px; left: 15px; border-radius: 999px; padding: 8px 11px; background: #11070cae; backdrop-filter: blur(10px); color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.feature-content { padding: 24px; }
.feature-content h3 { margin: 0 0 9px; font-size: 21px; letter-spacing: -.03em; }
.feature-content p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.offer-section {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background:
    radial-gradient(circle at 0 100%, #f22d642f, transparent 36%),
    #0c080a;
  color: #fff;
}
.offer-copy { padding: 100px max(6vw, calc((100vw - 1180px) / 2)); padding-right: 40px; align-self: center; }
.kicker.light { color: #ff89a8; }
.offer-copy h2 span { color: #ff3d72; }
.offer-lead { max-width: 500px; color: #cbb7bf; line-height: 1.7; }
.offer-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 30px 0; }
.offer-list div { min-height: 125px; padding: 18px; display: flex; flex-direction: column; justify-content: center; background: #ffffff0b; border: 1px solid #ffffff18; border-radius: 18px; }
.offer-list b { color: #ff4d7d; font-size: 31px; letter-spacing: -.05em; }
.offer-list span { margin-top: 7px; color: #cab7be; font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .07em; }
.offer-copy > small { display: block; margin-top: 13px; color: #8f7b83; font-size: 10px; }
.offer-visual { position: relative; min-height: 670px; display: grid; place-items: center; background: radial-gradient(circle, #e91e5963, transparent 58%); }
.offer-frame { z-index: 2; width: 430px; height: 590px; overflow: hidden; border-radius: 34px; border: 7px solid #302328; box-shadow: 0 40px 80px #000; transform: rotate(3deg); }
.offer-frame img { width: 100%; height: 100%; object-fit: cover; }
.coin { position: absolute; z-index: 3; width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; color: #8e6320; font-weight: 950; font-size: 26px; background: radial-gradient(circle at 35% 30%, #fff3a1, #f5af20 65%, #b67200); border: 6px solid #ffc94c; box-shadow: 0 12px 26px #0007; }
.coin-one { left: 9%; top: 22%; transform: rotate(-15deg); }
.coin-two { right: 12%; bottom: 16%; transform: rotate(12deg) scale(.75); }

.centered { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 55px; }
.steps article { position: relative; min-height: 270px; padding: 28px; background: var(--pale); border: 1px solid var(--line); border-radius: 28px; }
.steps article > span { position: absolute; right: 22px; top: 18px; color: #e7c4ce; font-size: 38px; font-weight: 950; }
.step-icon { width: 62px; height: 62px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--hot), var(--wine)); border-radius: 20px; font-size: 25px; box-shadow: 0 14px 32px #f01f573a; }
.steps h3 { margin: 30px 0 10px; font-size: 22px; }
.steps p { color: var(--muted); line-height: 1.65; margin: 0; font-size: 14px; }

.safety-section { padding: 0 24px 110px; }
.safety-card {
  max-width: 1180px;
  margin: auto;
  min-height: 390px;
  padding: 65px 70px;
  display: grid;
  grid-template-columns: 150px 1fr .85fr;
  align-items: center;
  gap: 35px;
  background: linear-gradient(120deg, #fff 0 56%, #fff0f4 56%);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: 0 30px 80px #8a0e3318;
}
.shield { width: 120px; height: 138px; display: grid; place-items: center; color: #fff; font-size: 38px; background: linear-gradient(145deg, #ff628d, #ae0d3d); clip-path: polygon(50% 0, 94% 15%, 88% 75%, 50% 100%, 12% 75%, 6% 15%); filter: drop-shadow(0 16px 18px #b90f4138); }
.safety-card h2 { font-size: clamp(40px, 4.2vw, 64px); }
.safety-card > div p:last-child { color: var(--muted); max-width: 480px; line-height: 1.6; }
.safety-card ul { padding: 0; list-style: none; }
.safety-card li { display: flex; gap: 11px; align-items: center; padding: 13px 0; color: #512333; border-bottom: 1px solid #efced8; font-size: 14px; font-weight: 700; }
.safety-card li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #ffd6e1; color: var(--wine); }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-intro > p:last-child { color: var(--muted); line-height: 1.65; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 800; font-size: 17px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--pink); font-size: 26px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); line-height: 1.7; margin: -5px 45px 23px 0; }

.final-cta {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, #ffffff18 0 5px, transparent 6px),
    radial-gradient(circle at 90% 72%, #ffffff12 0 7px, transparent 8px),
    linear-gradient(135deg, #d8174e, #8e0b34);
}
.mini-logo { width: 145px; height: 145px; display: grid; place-items: center; border-radius: 28px; background: #fff; overflow: hidden; margin-bottom: 25px; padding: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.final-cta h2 { font-size: clamp(42px, 5.2vw, 78px); }
.final-cta h2 span { color: #ffd1dd; }
.final-cta > p:not(.kicker) { margin: 16px 0 28px; color: #ffd7e2; font-size: 18px; }
.final-cta > small { margin-top: 13px; color: #ffc4d4; }

footer { max-width: 1180px; min-height: 180px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 15px 40px; color: var(--muted); }
.footer-brand { color: var(--ink); }
footer p { justify-self: end; }
footer div { display: flex; gap: 22px; font-size: 13px; font-weight: 700; }
footer div a:hover { color: var(--pink); }
footer > small { justify-self: end; }
.mobile-install { display: none; }

@media (max-width: 1000px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; padding-left: 34px; padding-right: 20px; }
  .hero h1 { font-size: 64px; }
  .hero-visual { height: 580px; }
  .hero-phone { height: 550px; }
  .section { padding-left: 24px; padding-right: 24px; }
  .safety-card { grid-template-columns: 110px 1fr; padding: 50px; }
  .safety-card ul { grid-column: 2; }
  footer { padding: 45px 24px; }
}

@media (max-width: 740px) {
  body { padding-bottom: 76px; }
  .site-header { position: absolute; height: 72px; width: calc(100% - 30px); }
  .site-header .install-button { display: none; }
  .brand { font-size: 19px; }
  .brand-logo { height: 75px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 105px 20px 0;
    text-align: center;
    background: linear-gradient(160deg, #fff 0 45%, #fff0f4 45%);
  }
  .hero-copy { padding: 15px 0 5px; }
  .eyebrow-pill, .install-button { margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: clamp(49px, 15vw, 68px); margin-top: 20px; }
  .hero-hindi { font-size: 20px; }
  .hero-description { font-size: 15px; line-height: 1.6; }
  .offer-chips { justify-content: center; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .download-proof { align-items: center; }
  .hero-visual { height: 485px; margin-top: 10px; }
  .hero-phone { height: 470px; }
  .float-live { top: 92px; left: 0; }
  .float-message { right: -5px; bottom: 80px; text-align: left; }
  .proof-bar { grid-template-columns: 1fr 1fr; }
  .proof-bar div { min-height: 64px; border-bottom: 1px solid var(--line); font-size: 11px; }
  .proof-bar div:nth-child(2) { border-right: 0; }
  .section { padding: 78px 18px; }
  .section-heading { text-align: center; }
  .section-heading h2, .offer-copy h2, .faq-intro h2 { font-size: 44px; }
  .feature-grid { grid-template-columns: 1fr; gap: 15px; }
  .feature-card { display: grid; grid-template-columns: 45% 55%; min-height: 290px; }
  .feature-media { height: 100%; min-height: 290px; }
  .feature-content { align-self: center; padding: 20px; }
  .offer-section { grid-template-columns: 1fr; }
  .offer-copy { order: 1; text-align: center; padding: 75px 20px 40px; }
  .offer-list { gap: 6px; }
  .offer-list div { min-height: 110px; padding: 10px; }
  .offer-list b { font-size: 25px; }
  .offer-list span { font-size: 9px; }
  .offer-visual { min-height: 520px; }
  .offer-frame { width: 310px; height: 455px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 230px; text-align: left; }
  .safety-section { padding: 0 18px 78px; }
  .safety-card { grid-template-columns: 1fr; text-align: center; padding: 42px 24px; }
  .shield { margin: auto; }
  .safety-card ul { grid-column: auto; text-align: left; }
  .faq-section { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { text-align: center; }
  .final-cta { min-height: 510px; }
  .final-cta h2 { font-size: 43px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer p, footer > small { justify-self: center; }
  .mobile-install {
    position: fixed;
    z-index: 50;
    left: 10px;
    right: 10px;
    bottom: 9px;
    min-height: 64px;
    padding: 9px 10px 9px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    background: #12070df1;
    color: #fff;
    box-shadow: 0 12px 35px #0005;
    backdrop-filter: blur(14px);
  }
  .mobile-install > div { display: flex; flex-direction: column; }
  .mobile-install > div strong { font-size: 14px; }
  .mobile-install > div span { margin-top: 3px; color: #cbb8bf; font-size: 10px; }
  .mobile-install .install-button { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Subpage Styles */
.subpage-header {
  position: relative;
  padding: 150px max(7vw, calc((100vw - 1180px) / 2)) 70px;
  background:
    radial-gradient(circle at 13% 18%, #ffe2ea 0 2px, transparent 3px),
    radial-gradient(circle at 78% 20%, #ffc4d5 0 3px, transparent 4px),
    linear-gradient(115deg, #fff 0 49%, #fff0f4 49% 100%);
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.subpage-header::before {
  content: "";
  position: absolute;
  right: -11vw;
  top: -20vw;
  width: 64vw;
  height: 64vw;
  border-radius: 50%;
  border: 110px solid #ffdae5;
  opacity: .3;
  z-index: 1;
}
.subpage-header h1 {
  position: relative;
  z-index: 2;
  margin: 0 0 15px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -.05em;
  text-transform: uppercase;
  font-weight: 950;
}
.subpage-header h1 span {
  color: var(--pink);
}
.subpage-description {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.subpage-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
.content-container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 20px 60px #8d15330a;
}
.intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 35px;
  font-weight: 500;
}

/* Policy Blocks */
.policy-block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--line);
}
.policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-num {
  background: linear-gradient(135deg, var(--hot), var(--wine));
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 10px #f01f5730;
}
.policy-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.policy-content p {
  margin: 0 0 15px;
}
.policy-content p:last-child {
  margin-bottom: 0;
}
.policy-content ul {
  margin: 12px 0;
  padding-left: 22px;
}
.policy-content li {
  margin-bottom: 8px;
}
.policy-content li:last-child {
  margin-bottom: 0;
}
.policy-content a {
  color: var(--pink);
  font-weight: 700;
  transition: color .2s ease;
}
.policy-content a:hover {
  color: var(--wine);
  text-decoration: underline;
}
.policy-footer-text {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 600;
  text-align: center;
}

/* Form styling matching Frenzy Meet theme */
.deletion-form {
  margin-top: 25px;
}
.form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.form-label .required {
  color: var(--pink);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--pale);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px #f01f5715;
  background: #fff;
}
.custom-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.custom-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.custom-checkbox {
  margin-top: 4px;
  accent-color: var(--pink);
  width: 18px;
  height: 18px;
  flex: none;
  cursor: pointer;
}
.checkbox-label {
  cursor: pointer;
}
.other-input-container {
  margin-top: 8px;
  width: 100%;
}
.other-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 14px;
  background: var(--pale);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.other-input:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}
.confirmation-box {
  background: var(--pale);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.form-actions {
  margin-top: 35px;
}
.btn-submit {
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 14px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hot), var(--wine));
  color: #fff;
  border: 1px solid #ff7a9d;
  box-shadow: 0 14px 34px #b20e3c28, inset 0 1px #ffffff55;
  transition: transform .2s ease, box-shadow .2s ease;
  font-size: 15px;
  gap: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px #b20e3c42;
}

@media (max-width: 740px) {
  .subpage-header {
    padding: 110px 20px 45px;
  }
  .subpage-header h1 {
    font-size: 32px;
  }
  .subpage-description {
    font-size: 14px;
  }
  .subpage-content {
    padding: 30px 15px 60px;
  }
  .content-container {
    padding: 25px 20px;
    border-radius: 20px;
  }
  .intro-text {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .policy-title {
    font-size: 17px;
  }
  .policy-content {
    font-size: 14px;
  }
  .confirmation-box {
    padding: 15px;
  }
  .btn-submit {
    width: 100%;
  }
}

/* --- New Header & Footer (Frenzymeet Website Structure with Ready-to-Run Theme) --- */

.main_header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 88px;
  display: flex;
  align-items: center;
  z-index: 100;
}

.main_header .container {
  width: 100%;
  display: flex;
  align-items: center;
}

.main_header .navbar {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.main-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.navbar-links a {
  color: var(--ink);
  transition: color 0.2s ease;
  text-decoration: none;
}

.navbar-links a:hover {
  color: var(--pink);
}

.header_btn .btn-primary, .mobile-offcanvas-btn .btn-primary {
  width: fit-content;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--hot), var(--wine));
  color: #fff;
  border: 1px solid #ff7a9d;
  box-shadow: 0 10px 24px #b20e3c25;
  transition: transform .2s ease, box-shadow .2s ease;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.header_btn .btn-primary:hover, .mobile-offcanvas-btn .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px #b20e3c35;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.navbar-toggler .toggler-icon {
  width: 100%;
  height: 3px;
  background-color: var(--ink);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-toggler .toggler-icon:nth-child(2) {
  margin: 5px 0;
}

/* Offcanvas Menu */
.mobile-offcanvas {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #fffafa;
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-offcanvas.active {
  left: 0;
}

.offcanvas-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.offcanvas-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.btn-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}

.offcanvas-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-grow: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-list a {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  transition: color 0.2s ease;
  text-decoration: none;
}

.mobile-nav-list a:hover {
  color: var(--pink);
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 7, 13, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Footer Section */
.footer_section {
  display: block; /* Override low-specificity tag display: grid; from ready-to-run template */
  position: relative;
  background: #fffafa;
  color: var(--ink);
  padding: 80px 0 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.footer_section .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer_top {
  margin-bottom: 50px;
}

.footer_top .row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
  gap: 40px;
}

.footer_widget {
  display: flex;
  flex-direction: column;
}

.footer_logo_link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer_logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.footer_desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 320px;
}

.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.contact_link i {
  color: var(--pink);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.contact_link:hover {
  color: var(--pink);
  transform: translateX(3px);
}

.widget_title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 10px;
}

.widget_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.footer_links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_links li {
  display: block;
}

.footer_links a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.footer_links a i {
  font-size: 10px;
  color: var(--pink);
  opacity: 0.8;
  margin-right: 8px;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer_links a:hover {
  color: var(--pink);
  transform: translateX(4px);
}

.footer_app_links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store_link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(240, 204, 214, 0.15);
}

.store_link:hover {
  background: var(--pale);
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(240, 31, 87, 0.12);
}

.store_link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.store_link span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store_link small {
  font-size: 8px;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store_link strong {
  font-size: 14px;
  margin-top: 3px;
  font-weight: 700;
}

.footer_bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
  margin-top: 20px;
}

.copyright_text {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* Sticky Download Banner */
.sticky_download_banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 250, 250, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 14px 24px;
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky_download_banner.visible {
  transform: translateY(0);
}

.banner_content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.banner_text {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.banner_text .accent_text {
  color: var(--pink);
}

.banner_actions {
  display: flex;
  gap: 12px;
}

.banner_actions .store_link {
  padding: 8px 14px;
  border-radius: 10px;
}

.banner_actions .store_link svg {
  width: 20px;
  height: 20px;
}

.banner_actions .store_link strong {
  font-size: 12px;
}

@media (max-width: 900px) {
  .navbar-links, .header_btn {
    display: none;
  }
  .navbar-toggler {
    display: flex;
  }
  .footer_top .row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer_top .row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .banner_content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .sticky_download_banner {
    padding: 12px 10px;
  }
  .banner_actions {
    width: 100%;
    justify-content: center;
  }
}
