:root {
  --te-bg: #F7F9FC;
  --te-surface: #FFFFFF;
  --te-surface-alt: #EEF2F6;
  --te-tone-accent: #0E8388;
  --te-tone-hover: #2E4F4F;
  --te-ink-main: #1B262C;
  --te-ink-sub: #4A5568;
  --te-border-color: #E2E8F0;
  --te-pill-bg: #E0F2FE;
  --te-pill-text: #0369A1;
  --te-badge-bg: #2C7A7B;
  --te-shadow: 0 10px 25px -5px rgba(14, 131, 136, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --te-shadow-deep: 0 20px 30px -10px rgba(14, 131, 136, 0.2);
  --te-radius: 16px;
  --te-radius-sm: 8px;
  --te-radius-pill: 999px;
  --te-max-width: 1180px;
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Poppins', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body.te-page-body {
  margin: 0;
  padding: 0;
  background-color: var(--te-bg);
  color: var(--te-ink-main);
  font-family: var(--font-text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.te-main-holder {
  flex: 1;
}

/* HEADER */
.te-header-bar {
  background-color: var(--te-tone-hover);
  color: #FFFFFF;
  position: relative;
  z-index: 20;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.te-header-inner {
  max-width: var(--te-max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.te-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.te-header-deco {
  display: none;
}

@media (min-width: 768px) {
  .te-header-deco {
    display: block;
  }
}

/* CONTAINER */
.te-stage-container {
  max-width: var(--te-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* PRODUCT SECTION (Preset B: Content 55% / Image 45%) */
.te-product-stage {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--te-bg) 100%);
}

.te-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.te-product-stage .te-stage-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .te-product-stage .te-stage-container {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .te-info-side {
    width: 55%;
  }

  .te-view-side {
    width: 45%;
    position: sticky;
    top: 2rem;
  }
}

/* LEFT CONTENT */
.te-heading-primary {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--te-tone-hover);
  line-height: 1.15;
  margin: 0 0 0.5rem 0;
}

@media (min-width: 768px) {
  .te-heading-primary {
    font-size: 3.25rem;
  }
}

.te-subhead-lead {
  font-size: 1.15rem;
  color: var(--te-tone-accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.te-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.te-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--te-pill-bg);
  color: var(--te-pill-text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--te-radius-pill);
}

.te-desc-paragraph {
  color: var(--te-ink-sub);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.te-icon-row {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.te-icon-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--te-ink-main);
}

.te-icon-item svg {
  color: var(--te-tone-accent);
}

/* GUARANTEE (icon-left) */
.te-guarantee-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--te-surface);
  border: 1px solid var(--te-border-color);
  padding: 1rem 1.25rem;
  border-radius: var(--te-radius);
  margin-bottom: 2rem;
  box-shadow: var(--te-shadow);
}

.te-guarantee-icon {
  width: 36px;
  height: 36px;
  color: var(--te-tone-accent);
  flex-shrink: 0;
}

.te-guarantee-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--te-ink-main);
}

.te-guarantee-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--te-ink-sub);
  line-height: 1.3;
}

/* CTA & PRICE BLOCK */
.te-buy-zone {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--te-surface);
  padding: 1.5rem;
  border-radius: var(--te-radius);
  border: 1px solid var(--te-border-color);
  box-shadow: var(--te-shadow);
}

@media (min-width: 576px) {
  .te-buy-zone {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.te-price-badge {
  background-color: var(--te-badge-bg);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--te-radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.te-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.te-price-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
}

.te-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--te-tone-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 1.75rem;
  border-radius: var(--te-radius);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--te-shadow-deep);
}

.te-action-link:hover {
  background-color: var(--te-tone-hover);
  transform: translateY(-2px);
}

/* RIGHT IMAGE SIDE */
.te-view-side {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.te-picture-holder {
  width: 100%;
  max-width: 450px;
  display: block;
  background-color: var(--te-surface);
  padding: 2rem;
  border-radius: var(--te-radius);
  box-shadow: var(--te-shadow-deep);
  border: 1px solid var(--te-border-color);
}

.te-product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* FEATURES SECTION (Preset B: 2-column grid, 64px icon circles) */
.te-features-stage {
  padding: 4rem 0;
  background-color: var(--te-surface);
  border-top: 1px solid var(--te-border-color);
  border-bottom: 1px solid var(--te-border-color);
}

.te-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.te-heading-secondary {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--te-tone-hover);
  margin: 0 0 0.5rem;
}

.te-section-sub {
  color: var(--te-ink-sub);
  font-size: 1rem;
}

.te-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .te-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.te-feature-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background-color: var(--te-bg);
  padding: 1.5rem;
  border-radius: var(--te-radius);
  border: 1px solid var(--te-border-color);
}

.te-icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background-color: var(--te-tone-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 131, 136, 0.25);
}

.te-feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  color: var(--te-ink-main);
}

.te-feature-text {
  margin: 0;
  font-size: 0.925rem;
  color: var(--te-ink-sub);
  line-height: 1.5;
}

/* TESTIMONIALS SECTION (Preset B: Horizontal cards with big quotes decoration) */
.te-reviews-stage {
  padding: 4rem 0;
  background-color: var(--te-surface-alt);
}

.te-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .te-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.te-quote-card {
  position: relative;
  background-color: var(--te-surface);
  padding: 2rem;
  border-radius: var(--te-radius);
  box-shadow: var(--te-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--te-border-color);
  overflow: hidden;
}

.te-quote-deco {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: var(--te-tone-accent);
  opacity: 0.12;
  pointer-events: none;
}

.te-quote-content {
  position: relative;
  z-index: 2;
}

.te-rating-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.te-quote-text {
  font-style: italic;
  color: var(--te-ink-main);
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.te-author-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.te-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--te-tone-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.te-author-info {
  display: flex;
  flex-direction: column;
}

.te-author-name {
  font-size: 0.95rem;
  color: var(--te-ink-main);
  line-height: 1.2;
}

.te-author-city {
  font-size: 0.8rem;
  color: var(--te-ink-sub);
}

/* FOOTER */
.te-footer-bar {
  background-color: var(--te-tone-hover);
  color: #FFFFFF;
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 20;
}

.te-footer-inner {
  max-width: var(--te-max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .te-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.te-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.te-footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.te-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .te-footer-links {
    align-items: flex-end;
  }
}

.te-footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.te-footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}