/** Shopify CDN: Minification failed

Line 349:0 Unexpected "}"

**/
/* ============================================
   GlowLift Theme — Main Stylesheet
   Mobile-first, CSS custom properties
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --color-bg:          #FAF8F5;
  --color-gold:        #C9A96E;
  --color-gold-dark:   #B8935A;
  --color-text:        #1A1A1A;
  --color-text-muted:  #6B6B6B;
  --color-sage:        #E8F4F0;
  --color-white:       #FFFFFF;
  --color-dark:        #1A1A1A;
  --color-dark-card:   #242424;
  --color-border:      #E8E3DB;

  --font-heading:      'Playfair Display', Georgia, serif;
  --font-body:         'Inter', system-ui, sans-serif;

  --radius-btn:        8px;
  --radius-card:       12px;
  --shadow-card:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover:      0 6px 24px rgba(0,0,0,0.14);

  --container-max:     1200px;
  --container-pad:     1.25rem;

  --transition:        0.22s ease;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

/* ----- Accessibility ----- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem; left: 1rem;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  z-index: 9999;
  width: auto; height: auto;
  clip: auto;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-pad { padding: 4rem 0; }
.section-pad-lg { padding: 5.5rem 0; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }

p { font-size: 1rem; color: var(--color-text-muted); line-height: 1.75; }

.text-center { text-align: center; }
.text-white  { color: var(--color-white) !important; }
.text-gold   { color: var(--color-gold); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover, .btn:focus-visible {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.4);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover { background: #333; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ----- Trust Badges ----- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.trust-badge .badge-icon { font-size: 1rem; }

/* ----- Stars ----- */
.stars { color: #F4B942; letter-spacing: 2px; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.rating-row strong { color: var(--color-text); }

/* ----- Verified Badge ----- */
.verified-badge {
  display: inline-block;
  background: var(--color-sage);
  color: #2A7A5A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ----- Section Heading Block ----- */
.section-heading {
  margin-bottom: 2.5rem;
}
.section-heading h2 { margin-bottom: 0.6rem; }
.section-heading p  { max-width: 620px; font-size: 1.05rem; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin: 0 auto; }

/* ============================================
   SECTION 1 — Announcement Bar
   ============================================ */
.announcement-bar {
  background: var(--color-gold);
  color: var(--color-white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 200;
}

/* ============================================
   SECTION 2 — Header / Navigation
   ============================================ */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
}

.header-logo span { color: var(--color-gold); }

.header-nav {
  display: none;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.header-nav a:hover {
  color: var(--color-text);
  background: var(--color-bg);
}

.header-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 0.75rem var(--container-pad);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.mobile-nav a:hover { background: var(--color-bg); }

.mobile-nav .btn {
  margin: 1rem var(--container-pad) 0.5rem;
  align-self: flex-start;
}

/* Desktop nav */
@media (max-width: 767px) {
  .header-logo { font-size: 1rem; }
  .header-nav a { font-size: 0.75rem; }
  .header-inner { gap: 0.5rem; }
}
  .header-nav { display: block; }
  .header-cta { display: inline-flex; }
  .hamburger  { display: none; }
  .mobile-nav { display: none !important; }
  .cart-icon-btn { display: flex; }
}

/* ============================================
   SECTION 3 — Hero Banner
   ============================================ */
.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 768px) {
  .hero-bg {
    object-position: right center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.52) 55%,
    rgba(0,0,0,0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 14rem;
  }
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

.hero-content .hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

@media (min-width: 768px) {
  .hero-section { min-height: 640px; }
}
@media (min-width: 1200px) {
  .hero-section { min-height: 700px; }
}

/* ============================================
   SECTION 4 — Pain Point
   ============================================ */
.pain-point-section { background: var(--color-white); }

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-section.image-right .split-image { order: -1; }

.split-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.split-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.split-text h2 { margin-bottom: 1rem; }

.split-text p { margin-bottom: 1rem; }

.quote-callout {
  border-left: 3px solid var(--color-gold);
  padding: 0.85rem 1.25rem;
  margin-top: 1.5rem;
  background: var(--color-bg);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.quote-callout em {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text);
  display: block;
  margin-bottom: 0.3rem;
}

.quote-callout .quote-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .split-section.image-right .split-image { order: 0; }
  .split-image img { height: 460px; }
}

/* ============================================
   SECTION 5 — Product Introduction
   ============================================ */
.product-intro-section { background: var(--color-bg); }

.product-intro-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.product-intro-hero h2 { margin-bottom: 0.5rem; }
.product-intro-hero p { font-size: 1.05rem; max-width: 540px; margin: 0 auto 2rem; }

.product-hero-image {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.product-hero-image img {
  width: 100%;
  height: auto;
}

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

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.9rem; }

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

/* ============================================
   SECTION 6 — How It Works
   ============================================ */
.how-it-works-section { background: var(--color-white); }

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

.step-card { text-align: center; }

.step-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-card);
}

.step-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.step-card h3 { margin-bottom: 0.5rem; }

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .step-image img { height: 280px; }
}

/* ============================================
   SECTION 7 — Before & After
   ============================================ */
.before-after-section { background: var(--color-bg); }

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

.ba-pair { }

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ba-image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ba-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ba-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0,0,0,0.6);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.ba-label.after { background: var(--color-gold); }

.ba-info { padding: 0 0.25rem; }
.ba-info .customer-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.ba-info .customer-quote {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.ba-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-image-wrap img { height: 260px; }
}

/* ============================================
   SECTION 8 — Product Features Deep Dive
   ============================================ */
.product-features-section { background: var(--color-white); }

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.features-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.7 4.3l-7.4 7.4-3-3 1.4-1.4 1.6 1.6 6-6z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.feat-check { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   SECTION 9 — Reviews
   ============================================ */
.reviews-section { background: var(--color-bg); }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-summary .big-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.reviews-summary .stars { font-size: 1.25rem; }
.reviews-summary .review-count { font-size: 0.875rem; color: var(--color-text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  min-width: 280px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.reviewer-name { font-weight: 700; font-size: 0.875rem; }
.review-card .stars { font-size: 0.875rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-style: italic;
}

@media (min-width: 480px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); overflow-x: visible; }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   SECTION 10 — Comparison Table
   ============================================ */
.comparison-section { background: var(--color-white); }

.comparison-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table thead th {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius-card) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius-card) 0 0;
}

.comparison-table thead th.col-glowlift {
  background: var(--color-gold);
}

.comparison-table tbody tr:nth-child(even) td {
  background: var(--color-bg);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
}

.comparison-table .col-glowlift {
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(201,169,110,0.06);
}

.check-yes { color: #2A7A5A; font-size: 1rem; }
.check-no  { color: #C0392B; font-size: 1rem; }

/* ============================================
   SECTION 11 — Offer / CTA Block
   ============================================ */
.offer-cta-section {
  background: var(--color-dark);
  color: var(--color-white);
}

.offer-cta-section h2 { color: var(--color-white); }
.offer-cta-section .section-heading p { color: rgba(255,255,255,0.65); }

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.price-original {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.urgency-line {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.offer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.offer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   SECTION 12 — FAQ
   ============================================ */
.faq-section { background: var(--color-bg); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

details.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; }

details.faq-item summary:hover { background: var(--color-bg); }

details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

/* ============================================
   SECTION 13 — Footer
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-brand .footer-tagline {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.footer-trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-trust-icons span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-col ul li + li { margin-top: 0.6rem; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  max-width: 680px;
  line-height: 1.5;
  width: 100%;
}

@media (min-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

/* ============================================
   Lazy Load Fade-in
   ============================================ */
.lazy-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lazy-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive — Global Adjustments
   ============================================ */
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: 0.8rem 1.5rem; font-size: 0.85rem; }
  .btn-lg { padding: 0.85rem 1.75rem; font-size: 0.9rem; }
  .section-pad { padding: 3rem 0; }
}
/* ─── MOBILE HERO FIXES ─── */
@media (max-width: 768px) {

  /* 1. הקטנת כותרת H1 במובייל */
  .hero-section h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  /* 2. הקטנת תת-כותרת במובייל */
  .hero-section .hero-sub {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }

  /* 3. Trust badges – עמודה אנכית, מיושר שמאל, מרווח מהכפתור */
  .hero-section .hero-trust {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-top: 20px !important;
  }

  /* 4. כל badge בשורה נפרדת */
  .hero-section .hero-trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
  }

  /* 5. הסתרת האמוג'י (המשאית, המנעול, הכוכבים) */
  .hero-section .hero-trust-item span[aria-hidden="true"] {
    display: none !important;
  }
}
/* ─── MOBILE HERO – SPLIT LAYOUT ─── */
@media (max-width: 768px) {

  /* הסקשן יהיה גבוה יותר ויציג תמונה + טקסט נפרדים */
  .hero-section {
    min-height: auto !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
  }

  /* התמונה תופסת 45% מהגובה בלבד */
  .hero-section .hero-bg {
    position: relative !important;
    width: 100% !important;
    height: 45vh !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* ה-overlay מוסר במובייל */
  .hero-section .hero-overlay {
    display: none !important;
  }

  /* הטקסט יורד מתחת לתמונה על רקע כהה */
  .hero-section .container {
    position: relative !important;
    background: #1A1A1A !important;
    padding: 24px 20px !important;
    width: 100% !important;
  }

  /* טקסטים לבנים על הרקע הכהה */
  .hero-section h1,
  .hero-section .hero-sub,
  .hero-section .hero-trust-item span {
    color: #FFFFFF !important;
  }
}

