:root {
  --red: #c0392b;
  --red-dark: #962d22;
  --green: #1e7e34;
  --green-light: #27ae60;
  --green-bright: #2ecc71;
  --dark: #1a1a1a;
  --gray: #4a4a4a;
  --light-gray: #f5f5f0;
  --white: #ffffff;
  --orange: #e67e22;
  --gold: #f39c12;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.12);
  --shadow-deep: 0 28px 60px rgba(0, 0, 0, 0.24);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PT Serif', Georgia, serif;
  background:
    radial-gradient(
      circle at top,
      rgba(46, 204, 113, 0.06),
      transparent 18%
    ),
    linear-gradient(180deg, #fafaf7 0%, #f4f4ee 100%);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

.alert-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: white;
  text-align: center;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(192, 57, 43, 0.22);
}

.page-shell {
  max-width: 470px;
  margin: 0 auto;
  padding: 14px 12px 90px;
}

.section {
  padding: 16px 0 0;
}

.container {
  width: 100%;
}

.panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 7vw, 34px);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.14;
  letter-spacing: -0.3px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 24px;
}

.divider {
  width: 64px;
  height: 4px;
  background: var(--red);
  margin: 12px auto 22px;
  border-radius: 999px;
}

.divider.green {
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.hero {
  background: linear-gradient(
    145deg,
    #112b12 0%,
    #1d461f 48%,
    #0f2210 100%
  );
  border-radius: 28px;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 14%,
      rgba(243, 156, 18, 0.18),
      transparent 20%
    ),
    radial-gradient(
      circle at 18% 72%,
      rgba(192, 57, 43, 0.16),
      transparent 24%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 12px;
}

.hero-banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  margin-top: 12px;
  padding: 6px 8px 4px;
}

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.hero-trust-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 10px;
  text-align: center;
}

.hero-trust-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.hero-trust-card span {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.76);
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(46, 204, 113, 0.32);
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(46, 204, 113, 0.36);
}

.hero-note {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.hero-extra {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
  text-align: center;
}

.timer-section {
  margin-top: 12px;
  background: linear-gradient(135deg, #171717, #0e0e0e);
  padding: 16px;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.timer-section p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.timer-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tbox {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 12px 8px;
  border-radius: 16px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tbox .num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.tbox .lbl {
  font-size: 10px;
  opacity: 0.82;
  text-transform: uppercase;
  margin-top: 5px;
}

.card-block {
  padding: 22px 16px;
}

.fear-section .panel,
.stages-section .panel,
.solution-section .panel,
.ingredients-section .panel,
.testimonials-section .panel,
.faq-section .panel {
  padding: 22px 16px;
}

.expert-section .panel,
.stats-section .panel,
.order-section .panel,
.footer-cta.panel {
  padding: 0;
}

.fear-section {
  background: none;
}

.fear-grid {
  display: grid;
  gap: 12px;
}

.fear-card {
  background: linear-gradient(180deg, #fffefe, #fff7f7);
  border: 1px solid #f4d8d5;
  border-left: 4px solid var(--red);
  padding: 18px 16px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(192, 57, 43, 0.08);
}

.fear-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 12px;
}

.fear-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--red-dark);
  line-height: 1.35;
}

.fear-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.stats-section .panel {
  background: linear-gradient(145deg, #171717, #232323);
  color: white;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
}

.stats-grid > div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px 10px;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #ff8e81;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.expert-card {
  background: linear-gradient(145deg, #ffffff, #f8fbf8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(30, 126, 52, 0.12);
}

.expert-photo {
  background: linear-gradient(145deg, #1a3a1a, #2f6531);
  aspect-ratio: 59 / 43;
  overflow: hidden;
}

.expert-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-info {
  padding: 22px 18px 20px;
}

.expert-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 25px;
  color: var(--green);
  margin-bottom: 4px;
  text-align: center;
}

.expert-title {
  font-size: 12px;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.55;
}

.expert-quote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
  border-left: 4px solid var(--green-light);
  padding-left: 16px;
  margin-bottom: 18px;
}

.expert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  background: #e8f5e9;
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 999px;
}

.stages-list {
  display: grid;
  gap: 12px;
}

.stage-item {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid #ececec;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.stage-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.stage-1::before {
  background: #f39c12;
}
.stage-2::before {
  background: #e67e22;
}
.stage-3::before {
  background: #e74c3c;
}
.stage-4::before {
  background: #8e0000;
}

.stage-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  min-width: 42px;
  opacity: 0.16;
  color: var(--dark);
}

.stage-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.stage-1 .stage-content h3 {
  color: #f39c12;
}
.stage-2 .stage-content h3 {
  color: #e67e22;
}
.stage-3 .stage-content h3 {
  color: #e74c3c;
}
.stage-4 .stage-content h3 {
  color: #8e0000;
}

.stage-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.pain-block {
  margin-top: 16px;
  background: linear-gradient(145deg, #230303, #3a0a0a);
  color: white;
  padding: 26px 16px;
  text-align: center;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.pain-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.pain-block p {
  font-size: 15px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.pain-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.pain-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.26);
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.pain-list li::before {
  content: '✗ ';
  color: #ff8374;
}

.shock-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfbf8);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.shock-image {
  display: block;
  width: 100%;
  height: auto;
  background: #ddd;
}

.shock-copy {
  padding: 18px 16px 20px;
}

.shock-copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.22;
  color: var(--red-dark);
  margin-bottom: 10px;
}

.shock-copy p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.solution-section {
  background: none;
}

.product-showcase {
  display: grid;
  gap: 18px;
}

.product-img-wrap {
  text-align: center;
}

.product-frame {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 25 / 34;
  margin: 0 auto;
  border-radius: 22px;
  background: linear-gradient(160deg, #edf8ef, #d5ebd9);
  box-shadow: 0 22px 42px rgba(39, 174, 96, 0.2);
  border: 2px solid rgba(39, 174, 96, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.product-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-proof {
  text-align: center;
  margin-top: 14px;
  background: #e8f5e9;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
}

.product-details {
  background: linear-gradient(180deg, #ffffff, #fcfcfa);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--green);
  letter-spacing: -1px;
  margin-bottom: 6px;
  text-align: center;
}

.product-tagline {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 18px;
  font-style: italic;
  text-align: center;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list li .check {
  color: var(--green-light);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rating-wrap {
  max-width: 100%;
  margin: 18px auto 0;
  background: linear-gradient(180deg, #ffffff, #fbfbf8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
}

.rating-head {
  text-align: center;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.rating-bar-wrap {
  margin-bottom: 12px;
}

.rating-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.rating-bar {
  height: 10px;
  background: #e8f5e9;
  border-radius: 999px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  border-radius: 999px;
}

.ingredients-section {
  background: none;
}

.ingr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ingr-card {
  text-align: left;
  padding: 18px 14px;
  border: 1px solid #e2efe3;
  border-radius: 18px;
  background: linear-gradient(165deg, #f9fff9, white);
  box-shadow: var(--shadow-soft);
}

.ingr-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 12px;
}

.ingr-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.4;
}

.ingr-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.testimonials-grid {
  display: grid;
  gap: 12px;
}

.testi-card {
  background: linear-gradient(180deg, #fcfcf8, #ffffff);
  padding: 20px 18px;
  border-radius: 20px;
  position: relative;
  border: 1px solid rgba(39, 174, 96, 0.1);
  box-shadow: var(--shadow-soft);
}

.testi-photo {
  width: 100%;
  display: block;
  border-radius: 16px;
  margin: 0 0 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.testi-card::before {
  content: '"';
  font-size: 72px;
  color: var(--green-bright);
  opacity: 0.14;
  position: absolute;
  top: 4px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testi-stars {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.testi-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.testi-meta {
  font-size: 12px;
  color: var(--gray);
}

.danger-panel {
  background: linear-gradient(145deg, #2a0404, #4a0c0c);
  color: white;
  border-radius: 24px;
  padding: 24px 16px;
  box-shadow: var(--shadow-deep);
}

.danger-panel h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 12px;
  text-align: center;
}

.danger-panel p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  text-align: center;
}

.danger-accent {
  display: inline-block;
  margin-top: 14px;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #ffd3ce;
  letter-spacing: 0.3px;
}

.process-card {
  background: linear-gradient(180deg, #ffffff, #fbfbf8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 22px 16px;
  box-shadow: var(--shadow-card);
}

.process-grid {
  display: grid;
  gap: 12px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff, #f8faf8);
  border: 1px solid rgba(30, 126, 52, 0.1);
  border-radius: 18px;
  padding: 16px 14px;
}

.process-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(39, 174, 96, 0.24);
}

.process-step-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 5px;
  color: var(--dark);
}

.process-step-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

.process-highlight {
  color: var(--red-dark);
  font-weight: 900;
}

.order-section .panel {
  background: linear-gradient(145deg, #102712, #1e4b21);
  color: white;
  border-radius: 26px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.order-top {
  padding: 24px 16px 0;
  text-align: center;
}

.order-top h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.order-top p {
  font-size: 14px;
  opacity: 0.74;
  line-height: 1.7;
}

.order-box {
  margin: 18px 14px 14px;
  background: white;
  border-radius: 22px;
  padding: 24px 16px;
  color: var(--dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--green-bright),
    var(--green)
  );
}

.urgency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.urgency-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.stock-bar-wrap {
  margin-bottom: 20px;
}

.stock-bar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--red);
  text-align: left;
}

.stock-bar {
  height: 12px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.stock-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--red), #e74c3c);
  border-radius: 999px;
  animation: stock-anim 3s ease-in-out infinite;
}

@keyframes stock-anim {
  0% {
    width: 78%;
  }
  50% {
    width: 82%;
  }
  100% {
    width: 78%;
  }
}

.free-label {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.order-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 8px;
}

.order-box .ticket-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 18px;
}

.ticket-num span {
  color: var(--green);
  font-weight: 800;
}

.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 7px;
  color: var(--dark);
}

.form-group input {
  width: 100%;
  padding: 15px 16px;
  border: 2px solid #e2e2e2;
  border-radius: 16px;
  font-size: 15px;
  font-family: 'PT Serif', serif;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.12);
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(39, 174, 96, 0.32);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(39, 174, 96, 0.36);
}

.submit-btn:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
  box-shadow: 0 12px 30px rgba(39, 174, 96, 0.22);
}

.form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status--error {
  background: rgba(214, 48, 49, 0.08);
  color: #a82424;
  border: 1px solid rgba(214, 48, 49, 0.2);
}

.form-status--success {
  background: rgba(39, 174, 96, 0.1);
  color: #176b35;
  border: 1px solid rgba(39, 174, 96, 0.22);
}

.form-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(74, 74, 74, 0.78);
  line-height: 1.6;
}

.guarantee-block {
  background: white;
  border: 2px solid rgba(46, 204, 113, 0.3);
  border-radius: 22px;
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 14px;
  color: var(--dark);
  box-shadow: var(--shadow-soft);
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 18px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.guarantee-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

.faq-item {
  background: white;
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-q {
  padding: 18px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 12px;
}

.faq-q:hover {
  color: var(--green);
}

.faq-q .arrow {
  transition: transform 0.3s;
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.faq-a {
  padding: 0 16px;
  font-size: 14px;
  color: var(--gray);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 16px 18px;
}

.faq-item.open .arrow {
  transform: rotate(45deg);
}

.footer-cta {
  margin-top: 16px;
  background: linear-gradient(145deg, var(--red-dark), var(--red));
  color: white;
  text-align: center;
  padding: 26px 16px;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.footer-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1.18;
}

.footer-cta p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-cta .hero-cta-btn {
  font-size: 16px;
  padding: 18px 22px;
}

footer {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px 14px 0;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: linear-gradient(135deg, #27ae60, #1e7e34);
  color: white;
  padding: 16px 18px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
  display: none;
  border-radius: 18px;
}

.sticky-cta:hover {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

@media (min-width: 601px) {
  .page-shell {
    padding-left: 18px;
    padding-right: 18px;
  }
}