:root {
  --bg: #f5f6f3;
  --text: #101614;
  --muted: #5f6964;
  --card: #ffffff;
  --line: #dfe6de;
  --green: #4caf50;
  --green-deep: #1f5f2c;
  --green-soft: #e6f4e5;
  --dark: #08110d;
  --shadow: 0 18px 45px rgba(9, 18, 13, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: #05100b;
  color: #d6ead6;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}
.topbar-inner span { position: relative; }
.topbar-inner span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -16px;
  color: #7fbe79;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compact { position: static; }
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 17px;
  line-height: 1;
}
.brand em {
  display: block;
  margin-top: 4px;
  color: var(--green-deep);
  font-style: normal;
  font-weight: 700;
}
.brand-mark {
  width: 54px;
  height: 54px;
  color: var(--green);
  flex: 0 0 auto;
}
.nav {
  display: flex;
  gap: 28px;
  color: #59625f;
  font-size: 15px;
  font-weight: 600;
}
.nav a:hover { color: var(--green-deep); }
.nav-cta { min-width: 148px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #57bb59 0%, #3f9b43 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(67, 155, 67, 0.22);
}
.btn-secondary {
  background: #fff;
  color: var(--green-deep);
  border-color: var(--line);
}
.btn-block { width: 100%; }

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #07110d;
}
.hero-bg,
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg {
  background-image: linear-gradient(90deg, rgba(5, 12, 8, 0.88) 0%, rgba(5, 12, 8, 0.68) 35%, rgba(5, 12, 8, 0.36) 100%), url('../images/hero-coastal.webp');
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 40px;
  padding: 54px 0 46px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(71, 145, 72, 0.18);
  border: 1px solid rgba(125, 208, 106, 0.2);
  color: #e8f7e5;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow.light {
  background: #eef6ee;
  color: var(--green-deep);
  border-color: #d4e7d5;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.94;
  margin: 0 0 18px;
}
.hero h1 span { color: #68d05f; }
.hero-copy > p {
  max-width: 560px;
  color: rgba(255,255,255,0.88);
  font-size: 23px;
  line-height: 1.5;
  margin: 0;
}
.hero-copy > p strong { color: #7fd56f; }
.hero-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.hero-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 185px;
}
.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 195, 96, 0.16);
  color: #72d76a;
  flex: 0 0 auto;
}
.icon-badge svg { width: 22px; height: 22px; }
.hero-feature strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-feature span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.45;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.stars {
  color: #ffcb45;
  letter-spacing: 0.1em;
  font-size: 20px;
}

.quick-card {
  align-self: start;
  background: rgba(8, 18, 14, 0.86);
  border: 1px solid rgba(87, 187, 89, 0.25);
  box-shadow: 0 22px 46px rgba(4, 8, 6, 0.38);
  border-radius: 22px;
  padding: 22px;
}
.quick-card-label {
  color: #b7ecae;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.quick-card h2 {
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 1.06;
}
.quick-card-sub {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.toggle-group { margin-bottom: 14px; }
.toggle-inline-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.toggle-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 700;
}
.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-row { grid-template-columns: repeat(2, 1fr); }
.toggle,
.unit-toggle,
.volume-toggle {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.08);
  color: #f1f4ef;
  cursor: pointer;
  font-weight: 700;
}
.toggle.active,
.unit-toggle.active,
.volume-toggle.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.range-field {
  display: block;
  margin-top: 14px;
}
.field-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-bottom: 6px;
}
.field-line strong {
  color: #fff;
  font-size: 15px;
}
input[type="range"] {
  width: 100%;
  accent-color: #73c76b;
}
.calc-trigger { margin-top: 16px; }
.result-box {
  margin-top: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.result-kicker {
  margin: 0;
  color: #c9d7cc;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}
.result-value {
  margin: 10px 0 6px;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}
.result-note {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.result-link {
  display: inline-flex;
  margin-top: 14px;
  color: #c6e7bf;
  font-style: italic;
  font-size: 15px;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px 0;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 16px;
  font-weight: 900;
  flex: 0 0 auto;
}
.trust-item strong {
  display: block;
  color: #2c352f;
  font-size: 14px;
}
.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 72px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head.center {
  display: block;
  text-align: center;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #d8e2d8;
  background: #fff;
  color: #38433d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 18px 18px;
  background: #f7f8f7;
  border: 1px solid #e6ebe7;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.step-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
}
.step-num {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.products {
  background: linear-gradient(180deg, #f4f6f4 0%, #eef2ee 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e1e7e1;
  box-shadow: var(--shadow);
  text-align: center;
}
.featured { outline: 2px solid rgba(76, 175, 80, 0.22); }
.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef6ee;
  color: var(--green-deep);
  font-size: 26px;
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.green-badge {
  background: #5bbf5f;
  color: #fff;
}
.dark-badge {
  background: #274d2f;
  color: #d9f2d3;
}
.price-card h3 {
  margin: 4px 0 8px;
  font-size: 26px;
}
.price-card p {
  margin: 0 auto 16px;
  color: var(--muted);
  line-height: 1.45;
  min-height: 66px;
  max-width: 240px;
}
.price {
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 18px;
}
.dark-card {
  background: linear-gradient(180deg, #13211a 0%, #0b1310 100%);
  color: #fff;
  border-color: rgba(103, 181, 109, 0.24);
}
.dark-card p { color: rgba(255,255,255,0.76); }
.dark-card .plan-icon {
  background: rgba(99, 190, 101, 0.16);
  color: #9ee097;
}

.about { padding-top: 42px; }
.about-shell {
  background: #f2f4f1;
  border: 1px solid #dfe5df;
  border-radius: 24px;
  padding: 28px;
}
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-signature {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.signature-name {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 42px;
  line-height: 1;
}
.signature-role {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.about-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 48px);
}
.about-copy p {
  margin: 0 0 12px;
  color: #4f5854;
  font-size: 18px;
  line-height: 1.55;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.about-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stats strong {
  color: #2f7f35;
  font-size: 35px;
  line-height: 1;
}
.about-stats span {
  color: var(--muted);
  font-size: 14px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 350px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.cta-bg {
  background-image: linear-gradient(90deg, rgba(5, 11, 8, 0.76) 0%, rgba(5, 11, 8, 0.58) 52%, rgba(5, 11, 8, 0.46) 100%), url('../images/cta.webp');
}
.cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0;
}
.cta-product-shot img {
  width: 100%;
  max-width: 230px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.34));
}
.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 4vw, 56px);
}
.cta-copy p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.84);
  font-size: 20px;
  max-width: 680px;
}
.cta-note {
  margin-top: 12px;
  color: #d0e7cf;
  font-size: 14px;
}

.site-footer {
  background: #060f0b;
  color: rgba(255,255,255,0.72);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-tag {
  color: #79ce72;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.checkout-main { padding-top: 56px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.checkout-grid-cards {
  grid-template-columns: repeat(2, 1fr);
}
.checkout-side img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.mini-note-box {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.mini-note-box h3 { margin-top: 0; }
.mini-note-box ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}
code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #f0f4f0;
}

@media (max-width: 1100px) {
  /* .nav display:none removed — see mobile patch at bottom */
  .hero-grid,
  .about-grid,
  .checkout-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }
  .quick-card { max-width: 520px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps,
  .trust-grid,
  .about-stats,
  .checkout-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar-inner {
    gap: 18px;
    font-size: 11px;
  }
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-grid { padding-top: 34px; }
  .hero-copy > p { font-size: 18px; }
  .hero-feature-row,
  .pricing-grid,
  .steps,
  .trust-grid,
  .about-stats,
  .checkout-grid-cards,
  .toggle-inline-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .step-card { grid-template-columns: 1fr; }
  .step-card img { width: 100%; height: 180px; }
  .section-head { display: block; }
  .section-pill { margin-top: 16px; }
  .about-shell { padding: 18px; }
  .footer-links { gap: 12px; }
  .btn,
  .nav-cta { width: 100%; }
}


/* April 15 update */
.hero-bg{background-position:center center;}
.hero-grid{grid-template-columns:minmax(0,1.05fr) 390px;min-height:740px;align-items:center;}
.hero-copy{padding-top:8px;padding-bottom:20px;}
.hero-copy>p{max-width:520px;font-size:20px;}
.hero-feature-row{gap:18px;}
.hero-feature{max-width:170px;}
.quick-card{justify-self:end;margin-right:8px;backdrop-filter:blur(7px);}
.trust-icon{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:10px;background:#f1f7f1;color:#46a64f;font-size:0;}
.trust-icon svg{width:19px;height:19px;}
.plan-icon{width:56px;height:56px;border-radius:16px;background:#f2f7f2;color:#243330;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.plan-icon svg{width:26px;height:26px;}
.founder-photo-wrap{min-height:320px;}
.founder-photo-wrap img{height:100%;width:100%;object-fit:cover;}
.founder-signature{left:30px;bottom:22px;padding:0;background:none;text-shadow:0 2px 10px rgba(0,0,0,.35);}
.signature-name{font-size:34px;line-height:1;font-weight:500;opacity:.95;}
.signature-role{font-size:12px;letter-spacing:.12em;text-transform:uppercase;}
.about-grid{grid-template-columns:1.1fr 1.5fr;gap:36px;align-items:stretch;}
.about-copy p{font-size:17px;line-height:1.55;}
.section-pill{font-weight:800;letter-spacing:.08em;}
.cta-product-shot img{max-width:320px;}
@media (max-width: 980px){.hero-grid{grid-template-columns:1fr;min-height:auto}.quick-card{margin-right:0;justify-self:stretch}.about-grid{grid-template-columns:1fr;}}


.faq-section { background: linear-gradient(180deg, #f7faf7 0%, #eef6ee 100%); }
.faq-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:20px; }
.faq-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:22px; box-shadow:0 14px 30px rgba(9,18,13,.07); }
.faq-card h3 { margin:0 0 10px; font-size:20px; color:var(--green-deep); }
.faq-card p { margin:0; color:#56635c; line-height:1.7; }
.footer-links a { color: inherit; }
.footer-links-inline { display:flex; gap:16px; flex-wrap:wrap; }
.footer-inner p { color: var(--muted); max-width: 520px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

.audio-sample-container {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  padding: 24px;
  margin: 32px 0;
  max-width: 600px;
}

.custom-player {
  width: 100%;
  margin-top: 16px;
  filter: invert(100%) hue-rotate(90deg) brightness(1.5); /* Adjusts default player to match green/dark theme */
}

.audio-info h3 {
  margin: 8px 0;
  font-size: 1.25rem;
}
.audio-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background: linear-gradient(145deg, var(--panel), var(--bg));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  align-items: center;
  box-shadow: var(--shadow);
}

.audio-content h2 span { color: var(--accent); }

.audio-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.audio-bullets li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.audio-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.audio-player-wrap {
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.custom-player {
  width: 100%;
  margin-top: 10px;
  filter: invert(100%) hue-rotate(90deg) brightness(1.2); /* Makes default player match green theme */
}

@media (max-width: 768px) {
  .audio-card { grid-template-columns: 1fr; padding: 24px; }
  .audio-visual { display: none; }
}

/* Audio Section Alignment */
.audio-masterclass .section-head h2 span { color: var(--accent); }

.audio-visual-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.podcast-badge-v2 {
  text-align: center;
  color: var(--accent);
}

.podcast-badge-v2 svg {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.podcast-badge-v2 span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 0.8rem;
}

.audio-player-interface {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.player-row label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  opacity: 0.6;
}

.custom-player {
  width: 100%;
  filter: invert(100%) hue-rotate(90deg) brightness(1.2);
}

/* Mobile Tweaks */
@media (max-width: 1023px) {
  .audio-visual-box {
    margin-bottom: 30px;
    height: 200px;
  }
}
/* Premium Audio Card Design */
.premium-audio-card {
  background: #0d1410; /* Deep Dark Green/Black for Premium feel */
  border: 1px solid #274d2f;
  border-radius: 20px;
  padding: 32px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  max-width: 850px;
  margin: 0 auto;
}

.premium-tag {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.premium-audio-header h2 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #fff;
}

.premium-audio-header h2 span {
  color: #68d05f; /* Brand Green */
}

.premium-audio-header p {
  color: #b0b8b3; /* High contrast readable gray */
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.premium-player-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.player-item label {
  display: block;
  color: #4caf50;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.premium-player {
  width: 100%;
  height: 40px;
  filter: invert(100%) hue-rotate(90deg) brightness(1.2); /* Brightens player for dark background */
}

@media (max-width: 768px) {
  .premium-player-grid {
    grid-template-columns: 1fr;
  }
  .premium-audio-card {
    padding: 24px;
  }
}
/* === Repair styles: Choose Your Momentum / Video / Bonuses === */

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-cta-row .btn {
  min-width: 220px;
}

.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.price-copy {
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.55;
  min-height: 48px;
  max-width: 250px;
  font-size: 16px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: left;
}

.price-list li {
  position: relative;
  padding-left: 22px;
  color: #44514a;
  line-height: 1.55;
  margin-bottom: 10px;
  font-size: 15px;
}

.price-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.airy-list li {
  margin-bottom: 12px;
}

.price-card .price {
  margin-top: auto;
}

.price-card .btn + .btn {
  margin-top: 10px;
}

.badge-soft {
  background: #eef6ee;
  color: var(--green-deep);
  border: 1px solid #d8ead8;
}

.gift-card {
  background: linear-gradient(180deg, #fffdf8 0%, #f8f5ec 100%);
  border-color: #e9dec1;
}

.gift-badge {
  background: linear-gradient(180deg, #d7b15a 0%, #b88b2d 100%);
  color: #fff;
}

.video-section {
  background: #ffffff;
}

.video-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.video-wrap {
  background: #0d1410;
  border: 1px solid #24362a;
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #000;
}

.card-light {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(9,18,13,.07);
}

.video-notes h3,
.bonus-card h3,
.gift-copy h3,
.gift-note h4 {
  margin: 0 0 12px;
  color: var(--green-deep);
}

.video-notes h3 {
  font-size: 24px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #536159;
  line-height: 1.65;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.detail-list.compact li {
  margin-bottom: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-deep);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.bonuses {
  background: linear-gradient(180deg, #f7faf7 0%, #eef6ee 100%);
}

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

.bonus-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(9,18,13,.07);
}

.bonus-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.bonus-card p,
.gift-copy p,
.gift-note p {
  margin: 0;
  color: #56635c;
  line-height: 1.7;
}

.gift-perks {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 22px;
  align-items: start;
}

.gift-note {
  background: #f5f8f5;
  border: 1px solid #dce7dc;
  border-radius: 18px;
  padding: 20px;
}

.gift-note h4 {
  font-size: 20px;
}

.gift-note p {
  font-size: 15px;
}

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

  .video-shell,
  .gift-perks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta-row .btn {
    width: 100%;
    min-width: 0;
  }

  .pricing-grid-4,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .price-copy {
    min-height: 0;
  }

  .video-wrap,
  .card-light,
  .bonus-card {
    padding: 18px;
  }
}
@media (max-width: 760px) {
  .video-shell {
    grid-template-columns: 1fr;
  }

  .video-wrap {
    padding: 10px;
    border-radius: 16px;
    max-width: 560px;
    margin: 0 auto;
  }

  .video-wrap video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 240px;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
  }
}
body.checkout-open {
  overflow: hidden;
  touch-action: none;
}
/* 3+2 Pricing Grid Layout */
.pricing-grid-3-2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Second row has only 2 cards – center them */
.pricing-grid-3-2 .pricing-row:last-child {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}

/* Responsive: Tablet */
@media (max-width: 1100px) {
  .pricing-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid-3-2 .pricing-row:last-child {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: Mobile */
@media (max-width: 760px) {
  .pricing-row,
  .pricing-grid-3-2 .pricing-row:last-child {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
  }
  .step-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 40px;
    text-align: left;
  }
  /* Flip image and text on even cards using order, not direction */
  .step-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
  }
  .step-card:nth-child(even) img {
    order: 2;
  }
  .step-card img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .step-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
/* Mobile: prevent step card images from overflowing */
@media (max-width: 640px) {
  .step-card img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Exit-Intent Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exit-popup.show {
  opacity: 1;
  visibility: visible;
}
.exit-popup-content {
  background: #fff;
  max-width: 500px;
  width: 90%;
  padding: 32px;
  border-radius: 28px;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #999;
  transition: color 0.2s;
}
.exit-popup-close:hover {
  color: #333;
}
.exit-popup-header {
  margin-bottom: 16px;
}
.exit-popup-header svg {
  margin-bottom: 12px;
}
.exit-popup-header h3 {
  font-size: 24px;
  margin: 0;
  color: var(--green-deep);
}
.exit-popup-content p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.exit-popup-form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.exit-popup-form-group input {
  flex: 2;
  min-width: 180px;
  padding: 0 16px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
}
.exit-popup-form-group button {
  flex: 1;
  min-width: 140px;
}
.exit-popup-note {
  font-size: 12px;
  opacity: 0.7;
  margin: 8px 0 0;
}
@media (max-width: 560px) {
  .exit-popup-content {
    padding: 24px;
  }
  .exit-popup-form-group {
    flex-direction: column;
  }
  .exit-popup-form-group button {
    width: 100%;
  }
}
/* Add space between buttons on mobile */
@media (max-width: 767px) {
    #free-sample-trigger, .btn-primary {
        margin-bottom: 20px !important;
        /* REMOVED: display: inline-block; */
        /* REMOVED: width: 100%; (if you want them to keep their natural size) */
    }

    /* Optional: If you want to ensure the last button doesn't have a bottom margin */
    #free-sample-trigger:last-child, .btn-primary:last-child {
        margin-bottom: 0 !important;
    }
}

.sample-card-image {
  border-radius: 12px; /* Adjust this value for more or less rounding */
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Adds a nice subtle lift effect */
}
/* Notion Dashboard Demo Button */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: var(--green-soft);
  color: var(--green-deep);
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  margin-top: 15px;
  border: 1px solid transparent;
}

.btn-demo:hover {
  background-color: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.btn-demo svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Pricing list variant (smaller) */
.pricing-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
}
/* Compact Guarantee Section */
.section-guarantee {
  padding: 40px 0 !important; /* Reduced from 72px */
}

.guarantee-card {
  padding: 24px 30px !important; /* Reduced from 40px */
}

.guarantee-card h2 {
  margin: 10px 0 12px !important; /* Tighter spacing for the title */
}

.guarantee-card p {
  margin-bottom: 15px !important; /* Tighter spacing for the text */
  font-size: 1rem !important; /* Slightly smaller font for a cleaner look */
}

.flow-teaser {
    background-color: #0f0f0f; /* Slightly lighter than pure black */
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    border-top: 1px solid #222;
}

.teaser-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.teaser-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.teaser-title {
    font-family: 'Lexend', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
}

.teaser-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 40px;
}

.teaser-cta {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.teaser-cta:hover {
    background-color: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.teaser-visual img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.teaser-visual:hover img {
    filter: grayscale(0%);
}

@media (max-width: 992px) {
    .teaser-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .teaser-visual {
        order: -1; /* Image appears first on mobile */
    }
}

/* Responsive Fix for the Teaser */
@media (max-width: 992px) {
    .teaser-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .teaser-visual {
        order: -1; /* Puts the beautiful image first on mobile */
        margin-bottom: 30px;
    }
    .divider {
        margin: 0 auto 30px;
    }
}

/* --- Momentum Flow Album Section --- */

/* 1. Main Container: Added 80px top margin for visual space */
.album-preview-row {
  padding: 50px;
  margin-top: 80px; 
  margin-bottom: 32px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* 2. Grid Layout: Image on left, sized to 340px */
.album-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: center;
}

/* 3. Image Styling: Big, clean, and premium */
.album-visual {
  width: 100%;
}

.album-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--line);
  transition: transform 0.4s ease;
}

.album-img:hover {
  transform: scale(1.02);
}

/* 4. Text Content */
.album-text .kicker {
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.album-text h3 {
  margin: 0 0 16px 0;
  font-size: 1.85rem;
  line-height: 1.2;
}

.album-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* 5. High-Contrast CTA: "Listen to the Quality" */
.album-text .bright-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #000; /* Max contrast for visibility */
  border-bottom: 3px solid var(--green); /* Thick bright underline */
  padding-bottom: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.album-text .bright-link:hover {
  color: var(--green-deep);
  border-bottom-color: var(--green-deep);
  transform: translateX(8px);
}

/* 6. Responsive Adjustments */
@media (max-width: 992px) {
  .album-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .album-preview-row {
    padding: 30px 20px;
    margin-top: 60px;
  }

  .album-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .album-text .bright-link {
    justify-content: center;
  }
}a:focus, button:focus, .btn:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
/* CTA section – single column, centered (no image) */
.cta-content-single {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px 0 15px;
}
/* ===== Reviews Carousel ===== */
.reviews-section {
  padding: 60px 0 40px;
  background: transparent;
}

.reviews-carousel {
  position: relative;
  max-width: 780px;
  margin: 40px auto 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease-in-out;
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
}

.review-card {
  background: rgba(22, 30, 24, 0.9);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 20px;
  padding: 32px 28px 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.review-stars {
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 4px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #ddd;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  margin-top: 6px;
}

.author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.author-meta {
  font-size: 0.82rem;
  color: #aaa;
  margin-left: auto;
}

.review-disclosure {
  margin-top: 6px;
  font-size: 0.72rem;
  color: #999;
  opacity: 0.75;
  line-height: 1.4;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.dot.active {
  background: #4caf50;
  transform: scale(1.3);
}
.dot:hover {
  background: rgba(255,255,255,0.5);
}

/* Responsive fine‑tuning */
@media (max-width: 600px) {
  .review-card {
    padding: 24px 20px 20px;
  }
  .review-text {
    font-size: 0.95rem;
  }
}
/* ===== Arrow Buttons ===== */
.reviews-carousel {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(22, 30, 24, 0.75);
  border: 1px solid rgba(76, 175, 80, 0.35);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.carousel-arrow:hover {
  background: rgba(76, 175, 80, 0.25);
  border-color: #4caf50;
}
.carousel-arrow svg {
  width: 22px;
  height: 22px;
}
.carousel-prev {
  left: -10px;
}
.carousel-next {
  right: -10px;
}

@media (max-width: 650px) {
  .carousel-prev {
    left: -4px;
  }
  .carousel-next {
    right: -4px;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
    background: rgba(22, 30, 24, 0.9);
  }
}
/* Footer social icons */
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #79ce72; /* your footer link color */
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: #4caf50;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .footer-social {
    margin: 8px 0;
  }
}

/* ============================================================
   MOBILE NAV & LAYOUT FIX — applies to all pages
   No HTML changes required. Replaces broken display:none rule.
   ============================================================ */

/* 1. Fix: nav was display:none below 1100px with no fallback.
      Now shows as a horizontally scrollable pill strip. */
@media (max-width: 1100px) {
  .nav {
    display: flex !important;           /* override the display:none */
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;              /* Firefox */
    gap: 4px;
    padding: 2px 0;
    /* prevent flex shrinking of the nav itself */
    flex-shrink: 1;
    min-width: 0;
  }
  .nav::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  .nav a {
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #38433d;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
  }
  .nav a:hover {
    background: var(--green-soft);
    color: var(--green-deep);
    border-color: #c8dfc8;
  }

  /* nav-wrap: keep row layout, don't stack */
  .nav-wrap {
    flex-direction: row !important;
    flex-wrap: wrap;
    min-height: 64px;
    gap: 10px;
    align-items: center;
  }

  /* brand stays left, nav fills middle, cta goes to its own row or hides */
  .brand { flex-shrink: 0; }

  /* hide the header CTA button on smaller screens — page has CTAs everywhere */
  .nav-cta { display: none; }
}

/* 2. Fix: .btn { width:100% } at 760px breaks ALL buttons.
      Only .btn-block should be full-width. */
@media (max-width: 760px) {
  .btn {
    width: auto !important;     /* reset the too-broad rule */
  }
  .btn-block,
  .btn.btn-block {
    width: 100% !important;     /* only block-context buttons go full-width */
  }

  /* nav-cta in header: keep hidden on mobile */
  .nav-cta { display: none; }

  /* nav on small screens: full-width scrollable row */
  .nav {
    width: 100%;
    order: 3;           /* below brand on wrap */
    margin-top: 2px;
    padding-bottom: 4px;
  }
  .nav a {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* nav-wrap: allow nav to wrap to second line */
  .nav-wrap {
    min-height: 56px;
    padding: 8px 0;
  }
}

/* 3. Fix hero CTA row buttons stacking oddly */
@media (max-width: 760px) {
  .hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero-cta-row .btn {
    width: 100% !important;
    min-width: 0;
  }
}

/* End mobile patch */
