/* ============================================================
   ORAGON PISO WIFI — LANDING PAGE STYLESHEET
   Brand: Black (#0a0a0a) + Orange (#FF6A00)
   Mobile-first, production-ready
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --clr-orange:       #FF6A00;
  --clr-orange-light: #FF8C38;
  --clr-orange-dark:  #D95500;
  --clr-orange-glow:  rgba(255, 106, 0, 0.25);
  --clr-orange-glow-soft: rgba(255, 106, 0, 0.10);

  /* Neutrals */
  --clr-black:        #0a0a0a;
  --clr-black-2:      #111111;
  --clr-black-3:      #181818;
  --clr-black-4:      #222222;
  --clr-card:         #161616;
  --clr-border:       rgba(255,255,255,0.08);
  --clr-border-orange: rgba(255,106,0,0.3);

  --clr-white:        #ffffff;
  --clr-off-white:    #f5f5f5;
  --clr-text:         #e8e8e8;
  --clr-text-muted:   #999999;
  --clr-text-dim:     #666666;

  /* Typography */
  --font-display:     'Bebas Neue', sans-serif;
  --font-body:        'DM Sans', sans-serif;
  --font-mono:        'Space Mono', monospace;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.25rem;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-orange: 0 8px 32px rgba(255,106,0,0.3);
  --shadow-glow: 0 0 60px rgba(255,106,0,0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Header height */
  --header-h: 68px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-black);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.text-accent { color: var(--clr-orange); }
.center { text-align: center; }

/* ============================================================
   TYPOGRAPHY — Section Headers
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--space-lg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: normal;
  word-break: keep-all;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}

.btn-primary {
  background: var(--clr-orange);
  color: #fff;
  border-color: var(--clr-orange);
  box-shadow: 0 4px 20px rgba(255,106,0,0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--clr-orange-light);
  border-color: var(--clr-orange-light);
  box-shadow: 0 6px 28px rgba(255,106,0,0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-border);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-black);
  border-color: var(--clr-white);
  font-weight: 700;
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
  box-shadow: 0 6px 28px rgba(255,106,0,0.5);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-white:hover, .btn-ghost-white:focus-visible {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}

.btn-nav {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-xl { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* Focus visible for accessibility */
.btn:focus-visible {
  outline: 3px solid var(--clr-orange);
  outline-offset: 3px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   IMAGE FALLBACK PLACEHOLDER
   ============================================================ */
.img-fallback {
  background: var(--clr-black-4) !important;
  border: 2px dashed var(--clr-border-orange) !important;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-fallback::after {
  content: "📸 Add Your Photo Here";
  color: var(--clr-text-dim);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}
.img-fallback img { display: none; }

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
  max-width: 100vw;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  flex-shrink: 0;
}
.logo-icon { color: var(--clr-orange); font-style: normal; }
.logo-accent { color: var(--clr-orange); }

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
}
.main-nav a:hover { color: var(--clr-orange); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.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 Dropdown */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--clr-black-3);
  border-top: 1px solid var(--clr-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 400px; }
.mobile-link {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.mobile-link:hover { color: var(--clr-orange); background: var(--clr-black-4); }
.mobile-cta {
  margin: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--clr-black);
}

/* Subtle grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Atmospheric glows */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, transparent 70%);
  bottom: 0;
  left: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,106,0,0.1);
  border: 1px solid var(--clr-border-orange);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--clr-orange-light);
  letter-spacing: 0.05em;
  width: fit-content;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--clr-white);
}
.headline-accent {
  color: var(--clr-orange);
  display: inline-block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--clr-white); }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-ctas .btn {
  width: 100%;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.trust-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  background: var(--clr-black-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  color: var(--clr-text-muted);
}

/* Hero visual / image */
.hero-visual { width: 100%; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  aspect-ratio: 4/3;
  min-height: 240px;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.03); }

.hero-img-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--clr-orange);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-orange);
}
.img-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}
.img-badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--clr-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInDelay 1s 1.5s forwards;
}
@keyframes fadeInDelay {
  to { opacity: 1; }
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-orange), transparent);
  animation: scrollPulse 1.8s infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--clr-black-3);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.5rem 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 80px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--clr-orange);
  line-height: 1;
  letter-spacing: 0.02em;
}
.proof-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-align: center;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--clr-border);
  display: none;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}
.pain-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color var(--transition-base);
}
.pain-card:hover { border-color: var(--clr-border-orange); }
.pain-icon { font-size: 1.5rem; flex-shrink: 0; }
.pain-card p { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.6; }
.pain-card p em { color: var(--clr-white); font-style: italic; }

.pain-solution {
  text-align: center;
  background: rgba(255,106,0,0.06);
  border: 1px solid var(--clr-border-orange);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.pain-solution p {
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.pain-solution strong { color: var(--clr-orange); }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black-2);
}

.product-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.product-card:hover {
  border-color: var(--clr-border-orange);
  box-shadow: 0 8px 40px rgba(255,106,0,0.12);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-orange-light));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.product-card:hover::before { opacity: 1; }

.product-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--clr-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
}

.product-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-img-col { position: relative; }
.product-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-black-4);
  aspect-ratio: 4/3;
  border: 1px solid var(--clr-border);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-img-wrap:hover .product-img { transform: scale(1.04); }

.product-income-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,106,0,0.1);
  border: 1px solid var(--clr-border-orange);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}
.income-icon { font-size: 1.5rem; }
.product-income-badge div { display: flex; flex-direction: column; gap: 0.1rem; }
.product-income-badge strong { font-size: 1.1rem; color: var(--clr-orange); font-weight: 700; }
.product-income-badge span { font-size: 0.75rem; color: var(--clr-text-muted); }

.product-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.25rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.product-desc {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.product-desc strong { color: var(--clr-white); }

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.product-benefits li {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.product-ideal {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  background: var(--clr-black-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.product-ideal strong { color: var(--clr-white); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.testimonial-card:hover {
  border-color: var(--clr-border-orange);
  transform: translateY(-2px);
}

.review-stars { font-size: 0.9rem; letter-spacing: 0.05em; }
.review-text {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--clr-border);
  padding-top: 1rem;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--clr-white); }
.reviewer-source { font-size: 0.75rem; color: var(--clr-text-muted); margin-top: 0.15rem; }

.fb-cta { text-align: center; }
.fb-cta p { color: var(--clr-text-muted); margin-bottom: 1rem; font-size: 0.95rem; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black-3);
  position: relative;
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,106,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.why-card:hover {
  border-color: var(--clr-border-orange);
  transform: translateY(-2px);
}
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black);
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-lg);
}

.process-step {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  max-width: 100%;
  width: 100%;
  position: relative;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--clr-orange);
  margin-bottom: 0.5rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; }

.process-connector {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.connector-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--clr-orange), transparent);
}

.process-cta { text-align: center; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black-2);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  width: 100%;
  box-sizing: border-box;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.gallery-large { aspect-ratio: 16/9; }

.gallery-cta { text-align: center; }
.gallery-cta p { color: var(--clr-text-muted); margin-bottom: 1rem; font-size: 0.95rem; }

/* ============================================================
   IS THIS RIGHT FOR YOU?
   ============================================================ */
.right-for-you-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black-3);
}
.rfy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.rfy-col {
  background: var(--clr-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}
.rfy-yes { border: 1px solid rgba(0, 200, 100, 0.2); }
.rfy-no  { border: 1px solid var(--clr-border); }

.rfy-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.rfy-icon { font-size: 1.75rem; }
.rfy-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--clr-white);
}

.rfy-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rfy-list li {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.rfy-yes .rfy-list li::before {
  content: '→';
  position: absolute;
  left: -4px;
  color: #00c864;
}
.rfy-no .rfy-list li::before {
  content: '→';
  position: absolute;
  left: -4px;
  color: var(--clr-text-dim);
}

.rfy-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}
.rfy-note strong { color: var(--clr-orange); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black);
}
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--clr-orange); }
.faq-question span:first-child { flex: 1; }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--clr-orange);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-black);
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,106,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(255,106,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
}
.final-cta-section .section-eyebrow.light {
  color: rgba(255,106,0,0.7);
}
.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.final-cta-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: var(--space-md);
  width: 100%;
}
.final-cta-buttons .btn {
  width: 100%;
  justify-content: center;
}
.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0 0.5rem;
}
.final-cta-trust span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-black-3);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clr-black-4);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-text-muted);
  transition: all var(--transition-fast);
}
.footer-socials a:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: rgba(255,106,0,0.1);
}
.footer-links h4, .footer-contact h4 {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--clr-orange); }
.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}
.footer-contact a {
  color: var(--clr-orange-light);
  transition: color var(--transition-fast);
}
.footer-contact a:hover { color: var(--clr-orange); }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}
.footer-tagline-small { font-size: 0.78rem; }

/* ============================================================
   FLOATING MESSENGER BUTTON
   ============================================================ */
.floating-messenger {
  position: fixed;
  bottom: 80px;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--clr-orange);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 0.8rem;
  box-shadow: 0 4px 20px rgba(255,106,0,0.5);
  transition: all var(--transition-base);
  overflow: hidden;
}
.floating-messenger:hover, .floating-messenger:focus-visible {
  padding-right: 1.25rem;
  box-shadow: 0 6px 30px rgba(255,106,0,0.65);
  transform: scale(1.05);
}
.floating-label {
  display: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.floating-messenger:hover .floating-label,
.floating-messenger:focus-visible .floating-label {
  display: block;
}

/* ============================================================
   STICKY CTA BAR (MOBILE)
   ============================================================ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--clr-black-3);
  border-top: 1px solid var(--clr-border);
  padding: 0.75rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta-bar.visible { transform: translateY(0); }

/* ============================================================
   MOBILE SPACING OVERRIDES (<640px)
   ============================================================ */
@media (max-width: 639px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  /* Nuclear option: nothing escapes the viewport horizontally */
  *,
  *::before,
  *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Global safety net — clip any element wider than viewport */
  section, footer, header, main {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Hero inner padding tighter on small screens */
  .hero-inner {
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
    gap: var(--space-md);
  }

  /* Pain section grid single col with tighter gap */
  .pain-grid { gap: 0.75rem; }

  /* Tighter rfy columns */
  .rfy-col { padding: 1.25rem; }

  /* Process steps fill width */
  .process-steps { gap: 0.5rem; }

  /* Product card alt: keep img below text on mobile */
  .product-card-alt .product-inner { flex-direction: column; }

  /* Proof bar: tighten font for very small screens */
  .proof-num { font-size: 1.5rem; }
  .proof-label { font-size: 0.65rem; }

  /* Trust pills wrap cleanly */
  .hero-trust { gap: 0.4rem; }
  .trust-pill { font-size: 0.72rem; padding: 0.3rem 0.65rem; }

  /* Section title scales down more aggressively */
  .section-title { font-size: clamp(1.8rem, 6vw, 3.5rem); }

  /* Final CTA inner padding */
  .final-cta-inner { padding: var(--space-lg) 0; }
  .final-cta-headline { font-size: clamp(2rem, 7vw, 5rem); }

  /* Footer padding tighter */
  .site-footer { padding-top: var(--space-lg); }
}

/* ============================================================
   RESPONSIVE — TABLET (640px+)
   ============================================================ */
@media (min-width: 640px) {
  :root { --container-pad: 2rem; }

  .btn { white-space: nowrap; line-height: 1; }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-divider { display: block; }

  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-ctas .btn { width: auto; }
  .final-cta-buttons { flex-direction: row; justify-content: center; align-items: center; width: auto; }
  .final-cta-buttons .btn { width: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { aspect-ratio: 1; }
  .gallery-item.gallery-large { grid-column: span 2; aspect-ratio: 16/9; }

  .rfy-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — DESKTOP (900px+)
   ============================================================ */
@media (min-width: 900px) {
  :root { --container-pad: 2.5rem; }

  /* Header */
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }

  /* Hero */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
  }
  .hero-content { flex: 1; }
  .hero-visual { flex: 1; }

  /* Products */
  .product-inner { flex-direction: row; gap: var(--space-lg); }
  .product-card-alt .product-inner { flex-direction: row-reverse; }
  .product-img-col { flex: 1; }
  .product-info-col { flex: 1; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* Why Us */
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery — 3 columns at desktop */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.gallery-large { grid-column: span 2; aspect-ratio: 16/9; }

  /* Process — horizontal */
  .process-steps {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
  }
  .process-connector {
    flex-direction: row;
    align-items: center;
    padding: 0 0.5rem;
  }
  .connector-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--clr-orange), transparent);
  }
  .process-step { max-width: 220px; }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }

  /* Floating messenger placement */
  .floating-messenger { bottom: 2rem; right: 2rem; }
  .sticky-cta-bar { display: none; }
}

/* ============================================================
   RESPONSIVE — LARGE DESKTOP (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  :root { --container-pad: 3rem; }
  .process-step { max-width: 260px; }
}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .floating-messenger, .sticky-cta-bar, .site-header { display: none; }
  .hero { min-height: auto; }
}

/* ============================================================
   LOGO IMAGE STYLES
   ============================================================ */
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.logo-img-footer {
  height: 56px;
}

/* ============================================================
   FB RATING SUMMARY
   ============================================================ */
.fb-rating-summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(24, 119, 242, 0.08);
  border: 1px solid rgba(24, 119, 242, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.fb-rating-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #1877F2;
  line-height: 1;
  flex-shrink: 0;
}

.fb-rating-label {
  font-size: 1rem;
  color: var(--clr-text);
  font-weight: 500;
  line-height: 1.4;
}

.fb-rating-label span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 400;
}
