/**
 * Siyami Ramadan sales/landing page – yellow/gold theme
 */

/* Theme variables */
:root {
  --gradient-start: #a18422;
  --gradient-mid: #cfa754;
  --gradient-end: #f7c984;
  --dark: #4b381d;
  --soft: #fffcf0;
  --accent-rgb: 161, 132, 34;
}

* {
  box-sizing: border-box;
}

a:hover {
  text-decoration: none;
}

body {
  margin: 0;
  color: #333;
  line-height: 1.55;
  background: #fff;
  position: relative;
}

/* Sections */
.lp-section {
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.lp-section.alt {
  background: var(--soft);
}

.lp-section.dark {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  color: #fff;
}

.lp-section.dark h2 {
  color: #fff;
}

.lp-section.dark p {
  color: rgba(255, 255, 255, 0.95);
}

/* Typography */
h1 {
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--dark);
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--dark);
}

p {
  margin: 0 0 0.85rem;
}

/* CTAs */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.22);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.28);
}

.cta-secondary {
  background: #fff;
  color: var(--gradient-start);
  border: 2px solid var(--gradient-mid);
}

.cta-secondary:hover {
  background: rgba(var(--accent-rgb), 0.08);
  transform: translateY(-3px);
}

.cta-wrap {
  margin-top: 1.25rem;
}

/* Lists (benefit, who) */
.benefit-list,
.who-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.benefit-list li,
.who-list li {
  padding: 0.5rem 0 0.5rem 2.25rem;
  position: relative;
}

.benefit-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gradient-mid);
}

.who-list li::before {
  content: '\f138';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gradient-mid);
}

html[dir="rtl"] .who-section .who-section-content {
  text-align: right;
}

html[dir="rtl"] .who-section .who-list {
  text-align: right;
}

html[dir="rtl"] .who-list li {
  padding-left: 0;
  padding-right: 2.25rem;
}

html[dir="rtl"] .who-list li::before {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

html[dir="rtl"] .who-section .cta-wrap {
  justify-content: flex-end;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem 3.5rem;
  background: linear-gradient(160deg, var(--gradient-start) 0%, var(--gradient-mid) 45%, var(--gradient-end) 100%);
  color: #fff;
}

.hero .desktop-hero-img {
  display: none;
}

.hero .logo-hero {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.98;
}

.hero h1 {
  color: #fff;
}

.hero .sub {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
  line-height: 1.5;
}

.hero .cta-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-direction: row;
}

.hero .cta {
  white-space: nowrap;
}

.hero .cta-primary {
  background: #fff;
  color: var(--gradient-start);
}

.hero .cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

@media (max-width: 400px) {
  .hero .cta-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Breaker / divider */
.breaker {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.breaker-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.breaker::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}

.breaker-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.breaker-caption {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.5rem;
  padding: 0 1rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.25), transparent);
  margin: 0.5rem 0;
  border: 0;
}

/* Benefits section */
.benefits-section {
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.benefits-section .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(145deg, #fff 0%, rgba(255, 252, 240, 0.8) 100%);
  border-radius: 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 2px 10px rgba(var(--accent-rgb), 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.18);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.benefit-card .benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.22);
}

.benefit-card .benefit-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

.benefits-section .cta-wrap {
  text-align: center;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .benefit-card.benefits-card-full {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Packages */
.packages {
  display: grid;
  gap: 1.25rem;
  margin: 1.25rem 0;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

@media (max-width: 599px) {
  .packages {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.package {
  width: 100%;
  border: 2px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 18px;
  padding: 1.5rem;
  background: #fff;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.1);
}

.package .package-body {
  flex: 1;
  min-height: 0;
}

.package .cta {
  margin-top: auto;
  flex-shrink: 0;
}

.package:hover {
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.16);
  transform: translateY(-2px);
}

.package.recommended {
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.12);
}

.package.recommended:hover {
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.18);
}

.package.recommended .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.package h3 {
  margin-top: 0.25rem;
}

.package .price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gradient-start);
  margin: 0.5rem 0 0.85rem;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
}

.package ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  flex-shrink: 0;
  color: var(--gradient-mid);
  font-size: 0.85rem;
}

/* Trust section */
.trust-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.1rem;
  margin: 0.85rem 0;
  backdrop-filter: blur(8px);
}

.urgency {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-top: 0.85rem;
}

.trust-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .trust-row {
    grid-template-columns: 200px 1fr;
  }
}

.trust-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  display: block;
}

.dietitian-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.dietitian-credit .dietitian-name {
  font-weight: 600;
}

.dietitian-credit a.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.dietitian-credit a.instagram-link:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.dietitian-credit a.instagram-link i {
  font-size: 1.15rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
  color: #fff;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.final-cta .urgency {
  margin-bottom: 1.25rem;
}

/* Icon grid */
.icon-grid-wrap {
  width: 100%;
  background: var(--soft);
  padding: 1.5rem;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 520px) {
  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .icon-grid {
    justify-items: center;
  }

  .icon-grid-wrap {
    text-align: center;
  }
}

.icon-card {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
  width: 100%;
  cursor: pointer;
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.14);
}

.icon-card .icon-card-info {
  opacity: 0.7;
  position: absolute;
  top: 0;
  right: 0.5rem;
  border-radius: 50%;
  color: var(--gradient-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
}

.icon-card .icon-card-info i {
  font-size: 0.7rem;
}

.icon-card > i {
  font-size: 1.75rem;
  color: var(--gradient-mid);
  margin-bottom: 0.6rem;
  display: block;
  flex-shrink: 0;
}

.icon-card > span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  display: block;
  min-height: 2.6em;
  text-align: center;
}

/* Icon modal */
.icon-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.icon-modal-overlay.is-open {
  display: flex;
  opacity: 1;
}

.icon-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  max-width: 420px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.icon-modal-overlay.is-open .icon-modal {
  transform: scale(1);
}

.icon-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(247, 201, 132, 0.08) 100%);
}

.icon-modal-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 600;
}

.icon-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--gradient-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}

.icon-modal-close:hover {
  background: rgba(var(--accent-rgb), 0.3);
  transform: scale(1.05);
}

.icon-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 50vh;
}

.icon-modal-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
}

.icon-modal-panel {
  display: none;
}

.icon-modal-panel.is-active {
  display: block;
}

/* What is Siyami row */
.what-is-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 600px) {
  .what-is-row {
    grid-template-columns: 1fr 200px;
  }
}

.what-is-photo {
  order: -1;
}

@media (min-width: 600px) {
  .what-is-photo {
    order: 0;
  }
}

.round-photo {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.16);
  display: block;
  margin: 0 auto;
}

.what-is-row .desktop-only-img {
  display: none;
}

.who-section-img {
  display: none;
}

/* Video section */
.video-section {
  padding: 0 1.5rem clamp(2rem, 5vw, 3rem);
  max-width: 720px;
  margin: 0 auto;
}

.video-section.video-hero {
  padding-top: clamp(1.5rem, 4vw, 2rem);
}

.video-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.16);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-tap-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  z-index: 1;
  cursor: pointer;
  transition: opacity 0.3s, background 0.2s;
}
.video-tap-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}
.video-tap-overlay .video-tap-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  font-size: 1.75rem;
}
.video-tap-overlay .lang-text { display: none; }
.video-tap-overlay .lang-text.ar { display: inline; }
body.lang-en .video-tap-overlay .lang-text.ar { display: none; }
body.lang-en .video-tap-overlay .lang-text.en { display: inline; }
.video-tap-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .video-tap-overlay {
    background: rgba(0, 0, 0, 0.35);
  }
  .video-tap-overlay .video-tap-play-icon {
    width: 88px;
    height: 88px;
    font-size: 2.25rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .video-tap-overlay .lang-text {
    font-size: 1rem;
    font-weight: 500;
  }
}

.video-unmute-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
  padding: 1rem 1rem 1.25rem;
  pointer-events: none;
  z-index: 2;
}

.video-unmute-overlay .unmute-btn-wrap {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-unmute-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-size: 1.25rem;
}

.video-unmute-btn:hover {
  background: rgba(var(--accent-rgb), 0.9);
  transform: scale(1.05);
}

.video-unmute-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Mobile: section alignment */
@media (max-width: 768px) {
  .lp-section {
    text-align: center;
  }

  .lp-section .cta-wrap {
    justify-content: center;
    display: flex;
  }

  .benefit-list,
  .who-list {
    list-style: none;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    text-align: left;
  }

  .benefit-list li::before,
  .who-list li::before {
    left: 0;
  }

  html[dir="rtl"] .who-section .lp-section {
    text-align: right;
  }

  html[dir="rtl"] .who-section .who-list {
    text-align: right;
    margin-left: 0;
    margin-right: auto;
  }

  html[dir="rtl"] .who-section .cta-wrap {
    justify-content: flex-end;
  }

  html[dir="rtl"] .who-list li {
    padding-left: 0;
    padding-right: 2.25rem;
  }

  html[dir="rtl"] .who-list li::before {
    left: auto;
    right: 0;
    transform: scaleX(-1);
  }

  .packages {
    justify-items: center;
  }

  .package {
    max-width: 100%;
  }

  .trust-row {
    text-align: center;
  }

  .trust-row .trust-photo {
    margin: 0 auto;
  }
}

/* ========== Desktop (min-width: 769px) ========== */
@media (min-width: 769px) {
  body {
    min-height: 100vh;
    background: linear-gradient(180deg, #fffcf0 0%, #fff 20%, #fff 80%, #fdf8ed 100%);
    background-attachment: fixed;
  }

  .lp-section {
    max-width: 1100px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lp-section.alt {
    position: relative;
  }

  .lp-section.alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: var(--soft);
    z-index: -1;
  }

  .lp-section.dark {
    position: relative;
  }

  .lp-section.dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    z-index: -1;
  }

  .problem-video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 1rem;
    align-items: start;
  }

  .problem-video-row .divider {
    display: none;
  }

  .problem-video-row .lp-section.problem-section {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }

  .problem-video-row .video-section {
    max-width: none;
    padding: 0;
  }

  .problem-video-row .video-section.video-hero {
    padding: 0;
  }

  .benefits-section {
    max-width: 1100px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .benefits-section .section-title {
    margin-bottom: 2rem;
    font-size: 1.85rem;
  }

  .benefits-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .benefit-card {
    padding: 1.75rem 1.35rem;
    min-height: 140px;
    align-items: center;
    border-left: 4px solid var(--gradient-mid);
  }

  html[dir="rtl"] .benefit-card {
    border-left: none;
    border-right: 4px solid var(--gradient-mid);
  }

  .benefit-card .benefit-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .benefit-card .benefit-text {
    font-size: 1rem;
    line-height: 1.45;
  }

  .benefit-card.benefits-card-full {
    grid-column: 2 / 3;
    max-width: none;
    margin: 0;
  }

  .benefit-card:hover {
    box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.18);
    border-left-width: 6px;
  }

  html[dir="rtl"] .benefit-card:hover {
    border-left-width: 0;
    border-right-width: 6px;
  }

  .benefits-section .cta-wrap {
    margin-top: 2rem;
  }

  .icon-grid-wrap {
    padding: 2rem 2.5rem;
  }

  .icon-grid {
    max-width: 1100px;
    gap: 1.5rem;
  }

  .icon-card {
    padding: 1.75rem 1.25rem;
    min-height: 130px;
  }

  .icon-card i {
    font-size: 2rem;
  }

  .icon-card span {
    font-size: 1rem;
  }

  .video-section {
    max-width: 1100px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .video-wrap {
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.2);
  }

  .hero {
    padding: 3rem 2rem 4.5rem;
    position: relative;
  }

  .hero .lp-section {
    max-width: 1100px;
  }

  .hero .logo-hero {
    height: 64px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero .sub {
    font-size: 1.15rem;
    max-width: 560px;
  }

  .hero .cta {
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
  }

  .hero .desktop-hero-img {
    display: none;
  }

  .problem-video-row .video-section {
    min-width: 0;
    width: 100%;
  }

  .problem-video-row .video-wrap {
    min-height: 260px;
    width: 100%;
  }

  .lp-section.pricing-section > h2 {
    text-align: center;
  }

  .trust-row {
    gap: 2rem;
    align-items: start;
  }

  .trust-row .trust-photo {
    max-width: 240px;
    margin: 0;
    margin-top: 15px;
  }

  .trust-box {
    padding: 1.35rem;
  }

  .final-cta {
    padding: 4rem 2rem;
    position: relative;
  }

  .final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
    z-index: -1;
  }

  .final-cta h2 {
    font-size: 1.85rem;
  }

  .final-cta .cta {
    font-size: 1.15rem;
    padding: 1.1rem 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .who-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .who-section-img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.16);
    object-fit: cover;
  }

  .what-is-row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .what-is-row .desktop-only-img {
    display: block;
    order: 0;
    max-width: none;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.16);
    object-fit: cover;
  }

  .what-is-text {
    order: 1;
  }

  .packages {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }

  .package {
    padding: 2rem;
    min-height: 320px;
    border-radius: 20px;
    text-align: center;
  }

  .package .package-body {
    text-align: center;
  }

  .package h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .package .price {
    font-size: 1.85rem;
    text-align: center;
  }

  .package ul {
    font-size: 0.98rem;
  }

  .package .cta {
    align-self: center;
  }
}
