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

:root {
  --bg: #020706;
  --panel: rgba(0, 0, 0, 0.68);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.54);
  --emerald: #24ffd0;
  --emerald-dark: #051a16;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 10%, rgba(36, 255, 208, 0.12), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(36, 255, 208, 0.08), transparent 35%),
    #020706;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px;
  background: rgba(2, 7, 6, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.site-header nav {
  display: flex;
  gap: 26px;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
}

.site-header nav a:hover {
  color: var(--emerald);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 64px 80px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("images/2.png");
  background-size: cover;
  background-position: center 64%;
  background-repeat: no-repeat;
  transform: translateY(76px) scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 7, 6, 0.88) 0%, rgba(2, 7, 6, 0.54) 54%, rgba(2, 7, 6, 0.28) 100%),
    linear-gradient(0deg, #020706 0%, transparent 34%);
}

.hero-inner {
  max-width: 980px;
}

.eyebrow {
  color: var(--emerald);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-inner h1,
.section-head h2,
.detail-card h2,
.custom-content h2,
.form-intro h2,
.mini-detail-grid h2,
.contact-section h2 {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -5px;
  font-weight: 950;
}

.hero-copy {
  max-width: 820px;
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.55;
}

.hero-actions,
.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 52px;
  padding: 15px 23px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 950;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  border: 0;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--emerald);
  color: #02100d;
}

.button.ghost,
.button.outline {
  color: var(--emerald);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(36, 255, 208, 0.46);
}

.button.ghost:hover,
.button.outline:hover {
  background: rgba(36, 255, 208, 0.09);
}

.button.small {
  min-height: 46px;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 14px;
  flex: 1;
  min-width: 145px;
}

.button.full {
  width: 100%;
}

.section-pad {
  padding: 105px 64px;
}

.section-head {
  max-width: 960px;
  margin-bottom: 52px;
}

.section-head p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(36, 255, 208, 0.58);
}

.product-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.product-body {
  padding: 28px;
}

.badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(36, 255, 208, 0.13);
  color: #dbfff8;
  border: 1px solid rgba(36, 255, 208, 0.25);
  font-weight: 900;
}

.product-card h3,
.detail-buy-box h3 {
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -1.3px;
  margin-bottom: 14px;
}

.product-card p,
.detail-card p,
.detail-card li,
.detail-buy-box p,
.custom-content p,
.form-intro p,
.mini-detail-grid p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-card p {
  margin-bottom: 24px;
}

.detail-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 1), rgba(2, 7, 6, 0.88)),
    url("images/3.png");
  background-size: cover;
  background-position: center;
}

.news-detail-bg {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.96), rgba(2, 7, 6, 0.88)),
    url("images/newsappthumb.png");
  background-size: cover;
  background-position: center;
}

.detail-card {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  border-radius: 42px;
  padding: 44px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid var(--line);
}

.detail-card p {
  margin: 24px 0;
  max-width: 850px;
}

.detail-card ul {
  padding-left: 22px;
}

.detail-buy-box {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-self: start;
}

.detail-buy-box img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
  border-radius: 24px;
}

.detail-buy-box p {
  margin: 0 0 22px;
}

.mini-detail-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 1), rgba(2, 7, 6, 0.92)),
    url("images/4.png");
  background-size: cover;
  background-position: center;
}

.alt-detail {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.88)),
    url("images/admobthumbnail.png");
  background-size: cover;
  background-position: center;
}

.mini-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: 42px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid var(--line);
}

.mini-detail-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.mini-detail-grid p {
  margin-top: 24px;
  max-width: 740px;
  font-size: 21px;
}

.mini-detail-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.custom-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 110px 64px;
  isolation: isolate;
}

.custom-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("images/5.png");
  background-size: cover;
  background-position: center;
}

.custom-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 7, 6, 0.94), rgba(2, 7, 6, 0.52), rgba(2, 7, 6, 0.24));
}

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

.custom-content p {
  margin: 28px 0 34px;
  max-width: 800px;
  font-size: 22px;
}

.form-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 1), rgba(2, 7, 6, 0.9)),
    url("images/3.png");
  background-size: cover;
  background-position: center;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  border-radius: 42px;
  padding: 44px;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid var(--line);
}

.form-intro p {
  margin-top: 24px;
  max-width: 680px;
  font-size: 21px;
}

.request-form {
  display: grid;
  gap: 18px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

.request-form select option {
  color: #06110f;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(36, 255, 208, 0.7);
  box-shadow: 0 0 0 4px rgba(36, 255, 208, 0.08);
}

.request-form textarea {
  resize: vertical;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h2 {
  font-size: clamp(40px, 6vw, 76px);
}

@media (max-width: 1100px) {
  .product-grid,
  .detail-card,
  .mini-detail-grid,
  .mini-detail-grid.reverse,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 16px 24px;
  }

  .site-header nav {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    flex-wrap: wrap;
  }

  .hero-section,
  .section-pad,
  .custom-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-section {
    padding-top: 210px;
    min-height: 940px;
  }

  .hero-bg {
    background-position: center 68%;
    transform: translateY(88px) scale(1.08);
  }

  .hero-inner h1,
  .section-head h2,
  .detail-card h2,
  .custom-content h2,
  .form-intro h2,
  .mini-detail-grid h2 {
    font-size: 54px;
    letter-spacing: -2.6px;
  }

  .hero-copy,
  .section-head p,
  .custom-content p,
  .form-intro p,
  .mini-detail-grid p {
    font-size: 18px;
  }

  .product-image {
    height: 210px;
  }

  .button.small {
    width: 100%;
  }

  .detail-card,
  .mini-detail-grid,
  .form-shell {
    padding: 26px;
    border-radius: 30px;
  }

  .mini-detail-grid img {
    height: 300px;
    border-radius: 24px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}


.unavailable-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.9)),
    url("images/4.png");
  background-size: cover;
  background-position: center;
}

.unavailable-card {
  max-width: 960px;
  padding: 48px;
  border-radius: 42px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(36, 255, 208, 0.25);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.unavailable-card h2,
.included-section h2,
.process-section h2 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -4px;
  font-weight: 950;
}

.unavailable-card p {
  margin: 24px 0 32px;
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.appointment-detail {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.88)),
    url("images/AppointmentProthumb.png");
  background-size: cover;
  background-position: center;
}

.test-detail {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.88)),
    url("images/teststhumb.png");
  background-size: cover;
  background-position: center;
}

.included-section,
.process-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 1), rgba(2, 7, 6, 0.92)),
    url("images/2.png");
  background-size: cover;
  background-position: center;
}

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

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.info-card h3 {
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

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

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 28px;
  max-width: 900px;
}

.audience-card {
  display: block;
  text-decoration: none;
  padding: 26px;
  border-radius: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(36, 255, 208, 0.26);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 255, 208, 0.6);
  background: rgba(36, 255, 208, 0.07);
}

.audience-card span {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .info-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .unavailable-card {
    padding: 26px;
    border-radius: 30px;
  }

  .unavailable-card h2,
  .included-section h2,
  .process-section h2 {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

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

  .info-card {
    min-height: auto;
  }
}


.custom-template-detail {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.88)),
    url("images/3.png");
  background-size: cover;
  background-position: center;
}

.custom-product-card .product-image {
  background-position: center;
}

.mini-detail-grid .button {
  margin-top: 26px;
}


/* Sales conversion details */
.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}

.product-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 255, 208, 0.10);
  border: 1px solid rgba(36, 255, 208, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 24px;
}

.detail-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(36, 255, 208, 0.11);
  border: 1px solid rgba(36, 255, 208, 0.28);
  color: #eafffb;
  font-size: 14px;
  font-weight: 950;
}

.detail-feature-list {
  margin: 0 0 28px;
  padding-left: 22px;
}

.detail-feature-list li {
  margin-bottom: 9px;
}

.checkout-points {
  display: grid;
  gap: 8px;
  margin: -6px 0 22px;
}

.checkout-points span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .detail-stats span {
    width: 100%;
    justify-content: center;
  }
}


/* Product detail bubble / modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal:target {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(1320px, 97vw);
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  border-radius: 38px;
  background: rgba(2, 7, 6, 0.92);
  border: 1px solid rgba(36, 255, 208, 0.34);
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 32px;
  line-height: 1;
}

.modal-media {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.modal-content {
  padding: 48px;
}

.modal-content h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -3px;
  font-weight: 950;
  margin-bottom: 20px;
}

.modal-content p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.modal-stats {
  margin: 20px 0 24px;
}

.modal-list {
  margin: 0 0 28px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .product-modal {
    align-items: flex-start;
    padding: 76px 14px 20px;
  }

  .modal-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .modal-media img {
    min-height: 320px;
    max-height: 420px;
    object-fit: contain;
    padding: 12px;
  }

  .modal-content {
    padding: 26px;
  }

  .modal-actions .button {
    width: 100%;
  }
}


/* How it works bubble modal */
.how-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.how-modal:target {
  display: flex;
}

.how-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
}

.how-modal-card {
  position: relative;
  z-index: 1;
  width: min(1320px, 96vw);
  max-height: 88vh;
  overflow: auto;
  padding: 46px;
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.88), rgba(2, 7, 6, 0.72)),
    url("images/5.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(36, 255, 208, 0.26);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.68);
}

.how-modal-card h2 {
  max-width: 840px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -5px;
  font-weight: 950;
}

.how-modal-copy {
  max-width: 900px;
  margin: 28px 0 42px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 22px;
  line-height: 1.6;
}

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

.how-step-card {
  min-height: 190px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.how-step-card h3 {
  color: #fff;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.how-step-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.custom-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.refund-policy {
  margin-top: 34px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(36, 255, 208, 0.22);
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.6;
}

.refund-policy strong {
  color: #ffffff;
}

@media (max-width: 860px) {
  .how-modal {
    align-items: flex-start;
    padding: 76px 14px 20px;
  }

  .how-modal-card {
    padding: 28px;
    border-radius: 28px;
  }

  .how-modal-card h2 {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .how-modal-copy {
    font-size: 18px;
  }

  .how-modal-grid {
    grid-template-columns: 1fr;
  }
}


/* Terms / License / Refund Policy */
.product-terms-note {
  margin: 16px 0 0 !important;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(36, 255, 208, 0.18);
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.product-terms-note a,
.refund-policy a,
.modal-legal-note a {
  color: var(--emerald);
  font-weight: 950;
  text-decoration: none;
}

.product-terms-note a:hover,
.refund-policy a:hover,
.modal-legal-note a:hover {
  text-decoration: underline;
}

.modal-legal-note {
  margin: 4px 0 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(36, 255, 208, 0.08);
  border: 1px solid rgba(36, 255, 208, 0.26);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.modal-legal-note strong {
  color: #ffffff;
}

.modal-legal-note a {
  display: inline-flex;
  margin-left: 6px;
}

.refund-policy a {
  display: inline-flex;
  margin-left: 6px;
}

.terms-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.9)),
    url("images/4.png");
  background-size: cover;
  background-position: center;
}

.terms-shell {
  padding: 44px;
  border-radius: 42px;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(36, 255, 208, 0.24);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.terms-head {
  margin-bottom: 34px;
}

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

.terms-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.058);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.terms-card.highlight {
  border-color: rgba(36, 255, 208, 0.36);
  background: rgba(36, 255, 208, 0.085);
}

.terms-card.wide {
  grid-column: 1 / -1;
}

.terms-card h3 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.terms-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.terms-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .terms-shell {
    padding: 26px;
    border-radius: 30px;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .modal-legal-note a,
  .refund-policy a {
    display: block;
    margin: 8px 0 0;
  }
}


/* Top Terms / License / Refund Policy modal */
.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.terms-modal:target {
  display: flex;
}

.terms-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
}

.terms-modal-card {
  position: relative;
  z-index: 1;
  width: min(1320px, 96vw);
  max-height: 88vh;
  overflow: auto;
  padding: 46px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.98), rgba(2, 7, 6, 0.90)),
    url("images/4.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(36, 255, 208, 0.28);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.68);
}

.terms-modal-card h2 {
  max-width: 900px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -5px;
  font-weight: 950;
}

.terms-modal-copy {
  max-width: 900px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 21px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .terms-modal {
    align-items: flex-start;
    padding: 76px 14px 20px;
  }

  .terms-modal-card {
    padding: 28px;
    border-radius: 28px;
  }

  .terms-modal-card h2 {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .terms-modal-copy {
    font-size: 18px;
  }
}


.contact-email {
  margin-top: 14px;
}

.contact-email a {
  color: var(--emerald);
  font-weight: 950;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}


/* Conversion upgrade additions */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  max-width: 940px;
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(36, 255, 208, 0.28);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
}

.trust-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 1), rgba(2, 7, 6, 0.90)),
    url("images/4.png");
  background-size: cover;
  background-position: center;
}

.trust-shell {
  padding: 46px;
  border-radius: 42px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(36, 255, 208, 0.24);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.trust-shell h2 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -4px;
  font-weight: 950;
  margin-bottom: 32px;
}

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

.trust-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.058);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-card h3 {
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .hero-trust-strip span {
    width: 100%;
    justify-content: center;
  }

  .trust-shell {
    padding: 28px;
    border-radius: 30px;
  }

  .trust-shell h2 {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
