/* Color Variables */
:root {
  --primary: #A8D8EA;
  --dark-bg: #1B3A5C;
  --neutral-light: #EBEBEB;
  --white: #FFFFFF;
  --cta-hover: #FF6B2C;
  --body-text: #1A1A1A;
  --muted-text: #333333;
  --border-light: #E1E1E1;
  --border-dark: #D5D5D5;
  --dark-baja-blue: #0D3B66;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 { line-height: 1.2; }
h1 { font-size: 34px; font-weight: 900; }
h2 { font-size: 28px; font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }
p { font-size: 17px; font-weight: 400; }
.label { font-size: 15px; font-weight: 500; }
.caption { font-size: 14px; font-weight: 400; color: var(--muted-text); }

/* Language Toggle */
.lang-toggle {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background-color: #F5F5F5;
  overflow: hidden;
}
.lang-btn {
  width: 36px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--muted-text);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-btn.active {
  background-color: var(--dark-bg);
  color: var(--white);
  border-radius: 999px;
}

/* Button */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background-color: var(--dark-bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 150ms ease;
  box-shadow: none;
  background-image: none;
}
.cta-button:hover,
.cta-button:active {
  background-color: var(--cta-hover);
  color: var(--white);
}
.cta-button--compact {
  width: auto;
  padding: 0 12px;
  height: 32px;
  font-size: 13px;
  border-radius: 6px;
}
.cta-button--orange {
  background-color: var(--cta-hover);
  color: var(--white);
}
.cta-button--orange:hover,
.cta-button--orange:active {
  background-color: var(--white);
  color: var(--dark-bg);
}
.cta-button--dark {
  background-color: var(--white);
  color: var(--dark-bg);
}
.cta-button--dark:hover,
.cta-button--dark:active {
  background-color: var(--cta-hover);
  color: var(--white);
}

.friction-reducer {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted-text);
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
}
.bg-dark .friction-reducer {
  color: rgba(255, 255, 255, 0.75);
}
.bg-primary .friction-reducer {
  color: var(--dark-baja-blue);
}

.cta-trust-pill-wrapper { text-align: center; width: 100%; margin-top: 8px; }
.cta-trust-pill { display: inline-flex; align-items: center; gap: 6px; background-color: #FFFFFF; border: 1px solid #E2E2E2; border-radius: 9999px; padding: 8px 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.cta-trust-check { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; color: #22A855; }
.cta-trust-text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 11.5px; color: #1A1A1A; white-space: nowrap; letter-spacing: -0.2px; }

/* Layout Utilities */
.container { max-width: 414px; margin: 0 auto; }
.section-padding { padding: 48px 24px; }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--neutral-light); }
.bg-dark { background-color: var(--dark-bg); color: var(--white); }
.bg-primary { background-color: var(--primary); }
.text-center { text-align: center; }
.text-muted { color: var(--muted-text); }

/* Borders */
.border-bottom-white { border-bottom: 1px solid #E8E8E8; }
.border-top-ice { border-top: 4px solid var(--primary); }
.border-top-dark { border-top: 4px solid var(--dark-bg); }

/* Sections */
/* Sec 1: Nav */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}
.nav-section {
  height: 52px;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.nav-row-2 {
  padding-bottom: 12px;
}
.cta-button--row2 {
  width: auto;
  padding: 0 24px;
  height: 44px;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  border-radius: 6px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-bg);
}

/* Sec 2: Hero */
.hero-section { padding: 20px 24px 32px 24px; }
.hero-trust-block { text-align: center; margin-bottom: 20px; }
@media (min-width: 768px) { .hero-trust-block { text-align: left; } }
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 9999px;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-trust-stars { color: #F5A623; font-size: 15px; letter-spacing: 1px; }
.hero-trust-text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; color: #333333; white-space: nowrap; }
.hero-trust-sub { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px; color: #666666; margin-top: 6px; }
.hero-section h1 { margin-bottom: 16px; }
.hero-section .sub-headline { margin-bottom: 32px; }
.hero-sp-strip { display: flex; flex-direction: row; align-items: center; gap: 12px; background: #FFE234; border-radius: 10px; padding: 6px 12px; margin-top: 12px; width: 100%; box-sizing: border-box; box-shadow: 0 2px 6px rgba(0,0,0,0.10); }
#angelina-avatar { width: 40px; height: 40px; border-radius: 9999px; border: 2px solid rgba(0,0,0,0.15); background-color: #C8A882; flex-shrink: 0; overflow: hidden; display: inline-block; }
.hero-sp-quote { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px; color: #1A1A1A; line-height: 1.3; text-align: left; }
.hero-sp-attr { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 11px; color: #333333; margin-top: 2px; text-align: left; }

/* Sec 3: Image */
.hero-image-section { padding: 0; }
.placeholder-image {
  width: 100%;
  object-fit: cover;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 20px;
}
.hero-image-section .placeholder-image { height: 280px; }

/* Cards */
.card {
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.card-stack { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.card-stack-12 { gap: 12px; }

/* Testimonial Card */
.testimonial-card { position: relative; }
.testim-top-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testim-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #D5D5D5;
  object-fit: cover;
}
.testim-name { font-size: 15px; font-weight: 700; color: var(--body-text); }
.testim-borough { font-size: 13px; font-weight: 400; color: var(--muted-text); }
.testimonial-card .stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 8px;
  text-align: left;
}
.testimonial-card .outcome {
  font-size: 17px;
  font-weight: 700;
  color: var(--body-text);
  margin-bottom: 8px;
}
.testimonial-card .quote {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-text);
  margin-bottom: 12px;
  text-align: left;
}

/* Bundle Card */
.bundle-card { padding: 16px; display: flex; align-items: center; gap: 16px; }
.bundle-card .icon { font-size: 24px; }
.bundle-card-content h3 { font-size: 17px; margin-bottom: 4px; }
.bundle-card-content p { font-size: 15px; }

/* Social Proof Bar */
.social-proof-bar { padding: 40px 24px; }

/* Pain / Problem */
.pain-section h2 { margin-bottom: 16px; }
.pain-section p { margin-bottom: 32px; }

/* Value Prop Image */
.value-image-section { padding: 32px 24px; }
.value-image-section .placeholder-image { height: 260px; }

/* Benefits */
.benefit-list { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.benefit-item { border-bottom: 1px solid var(--border-dark); padding-bottom: 24px; }
.benefit-item:last-child { border-bottom: none; padding-bottom: 0; }
.benefit-label { color: var(--dark-baja-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.benefit-item h3 { margin-bottom: 8px; }

/* Differentiator Card */
.diff-card h3 { font-size: 18px; margin-bottom: 8px; }

/* Step Card */
.step-card { position: relative; }
.step-number { font-size: 32px; font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }

/* FAQ */
.faq-list { margin: 32px 0; }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 16px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 700; cursor: pointer; }
.faq-answer { padding-top: 16px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Price Stack */
.price-stack-section h2 { margin-bottom: 32px; }
.value-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.value-item { display: flex; justify-content: space-between; font-size: 17px; }
.value-item .val { color: var(--primary); }
.price-divider { border-top: 1px solid rgba(255, 255, 255, 0.2); margin: 24px 0; }
.total-value { font-size: 17px; text-decoration: line-through; color: rgba(255, 255, 255, 0.7); margin-bottom: 8px; }
.price-reveal { font-size: 32px; font-weight: 900; color: var(--primary); margin-bottom: 32px; }
.price-reference { font-size: 17px; font-weight: 700; color: var(--body-text); text-align: center; margin-bottom: 16px; }

/* Closing CTA */
.closing-section h2 { color: var(--dark-bg); margin-bottom: 32px; }
.closing-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; text-align: left; }
.closing-list-item { font-size: 17px; font-weight: 700; color: var(--dark-bg); display: flex; align-items: center; gap: 8px; }

/* Footer */
.footer-section { padding: 24px; }
.footer-logo { font-size: 15px; font-weight: 500; margin-bottom: 16px; }
.footer-links { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.footer-link-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}
.modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.modal-content {
  background: #111;
  max-width: 800px;
  width: 100%;
  margin-top: 40px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-body {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}
.modal-body h2 { font-size: 24px; margin-bottom: 24px; color: white; }
.modal-body h3 { font-size: 18px; margin: 24px 0 12px; color: white; }
.modal-body p { margin-bottom: 16px; }

.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

/* Checkout Drawer Panel */
.checkout-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 300ms ease;
}
.checkout-overlay.visible {
  display: block;
  opacity: 1;
}

.checkout-panel {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 9999;
  overflow-y: auto;
  padding: 28px 24px;
  transition: right 300ms ease-out;
}
@media (max-width: 480px) {
  .checkout-panel {
    width: 100vw;
    right: -100vw;
  }
}
.checkout-panel.open {
  right: 0;
}

.panel-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 16px;
  margin-bottom: 10px;
}
.panel-logo { height: 32px; }
.panel-close-btn {
  font-size: 22px;
  color: #999999;
  cursor: pointer;
  background: none;
  border: none;
}

.panel-headline { font-size: 22px; font-weight: 700; color: #1B3A5C; margin-bottom: 4px; line-height: 1.2; text-align: left; }
.panel-subline { font-size: 14px; font-weight: 400; color: #666666; margin-bottom: 20px; text-align: left; }

.panel-product-image { width: 100%; border-radius: 10px; margin-bottom: 20px; }

.panel-included-title { font-size: 14px; font-weight: 600; color: #1B3A5C; margin-bottom: 8px; text-align: left; }
.panel-checklist { margin-bottom: 20px; list-style: none; padding: 0; }
.panel-checklist-item { font-size: 13px; font-weight: 400; line-height: 2; display: flex; align-items: center; gap: 8px; color: #1B3A5C; }
.panel-check { color: #22A855; font-weight: 700; }

.order-summary-box { background: #F8F9FB; border: 1px solid #E2E2E2; border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: #333; }
.summary-divider { border-top: 1px solid #E2E2E2; margin: 12px 0; }
.summary-total { font-weight: 700; font-size: 15px; color: #1B3A5C; margin-bottom: 0; }

.summary-value-row { font-size: 13px; color: #999999; }
.summary-line-through { text-decoration: line-through; color: #999999; }

.summary-savings-pill {
  background: #F0FAF4;
  border: 1px solid #22A855;
  border-radius: 6px;
  padding: 6px 12px;
  margin: 6px 0;
  text-align: center;
  color: #22A855;
  font-weight: 600;
  font-size: 13px;
  display: block;
}

.summary-row-bold { font-weight: 700; font-size: 16px; color: #1B3A5C; }


.payment-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.form-input { border: 1px solid #CCCCCC; border-radius: 8px; padding: 13px; font-size: 14px; width: 100%; font-family: inherit; }
.form-input:focus { outline: none; border-color: #1B3A5C; }
.input-note { font-size: 11px; color: #999999; margin-top: -8px; margin-bottom: 2px; text-align: left; }
.form-row { display: flex; gap: 10px; }

.panel-cta-btn {
  background: #FF6B2C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  padding: 17px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background 200ms;
  font-family: inherit;
}
.panel-cta-btn:hover { background: #E55A1C; }

.secure-note { font-size: 12px; color: #999999; text-align: center; margin-top: 6px; }
.card-icons { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.card-icon { height: 22px; opacity: 0.7; }

.panel-social-proof { margin-top: 20px; }

.panel-footer { font-size: 11px; color: #999999; text-align: center; margin-top: 24px; padding-bottom: 40px; }
.panel-footer-links { margin-top: 8px; }
.panel-footer-link { color: inherit; text-decoration: underline; background: none; border: none; cursor: pointer; font-size: 11px; padding: 0 4px; }

.panel-trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00D1FF;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 7px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,209,255,0.3);
}


/* Guarantee Section */
.bg-soft-green { background-color: #F0FAF4; }
.border-top-green { border-top: 3px solid #22A855; }
.border-bottom-green { border-bottom: 3px solid #22A855; }

.guarantee-box {
  background: #FFFFFF;
  border: 1px solid #22A855;
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(34,168,85,0.10);
}

.guarantee-breakdown {
  max-width: 420px;
  margin: 16px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guarantee-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.guarantee-row .check {
  color: #22A855;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.guarantee-row span {
  font-size: 14px;
  font-weight: 600;
  color: #1B3A5C;
  line-height: 1.4;
}

@media (min-width: 768px) {
  body {
    background-color: #1B3A5C;
  }

  .container {
    max-width: 480px;
    margin: 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0 0 40px rgba(0,0,0,0.25);
  }
}

/* Footer Disclaimer - All Devices */
.footer-divider {
  display: block;
  height: 1px;
  background-color: #DDDDDD;
  width: 80%;
  margin: 20px auto 16px auto;
}

.footer-disclaimer {
  display: block;
  font-size: 11px;
  color: #888888;
  text-align: center;
  padding: 0 20px 30px 20px;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

