/* ═══════════════════════════════════════
   AZUR PRIME — OWNER LANDING PAGE
   CSS Stylesheet

   Sections:
   01. CSS Variables & Reset
   02. Language Toggle & Lang Bar
   03. Navigation
   04. Hero
   05. Trust Bar
   06. Section Base Styles
   07. Problem / Solution
   08. How It Works (Steps)
   09. About / Ferhat
   10. Services
   11. Earnings Table
   12. Superhost / Airbnb
   13. Reviews
   14. Owner Portal
   15. FAQ
   16. CTA Final
   17. Footer
   18. Social Sidebar
   19. Hamburger
   20. Mobile Menu & Overlay
   21. Mobile WA FAB & Safe Area & Touch
   22. Owner Portal Mockup
   23. Utility & Misc
   24. Responsive — 1024px & 960px & 600px
   25. Responsive — 768px (embedded in Earnings & Potential Box)
   26. Responsive — 480px
   27. Responsive — 390px
═══════════════════════════════════════ */

/* ── 01. CSS VARIABLES & RESET ── */
:root {
  --navy:      #0B2035;
  --navy-mid:  #143352;
  --blue:      #2E8BC0;
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --white:     #FFFFFF;
  --off:       #F6F8FB;
  --muted:     #6B7A8D;
  --border:    #DDE4EE;
  --text:      #1A2636;
  --green-wa:  #25D366;
  --r: 14px;
  --shadow:    0 4px 28px rgba(11,32,53,0.10);
  --shadow-lg: 0 16px 64px rgba(11,32,53,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── 02. LANGUAGE TOGGLE & LANG BAR ── */
.lang-bar {
  background: var(--navy);
  padding: 9px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  padding: 3px 14px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .2s;
}
.lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.lang-btn:hover:not(.active) { color: white; border-color: rgba(255,255,255,.5); }

/* Language logic */
[data-de], [data-en] { display: none; }
body.de [data-de] { display: block; }
body.en [data-en] { display: block; }
[data-de-inline], [data-en-inline] { display: none; }
body.de [data-de-inline] { display: inline; }
body.en [data-en-inline] { display: inline; }

/* ── 03. NAVIGATION ── */
nav {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 190;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

nav.scrolled {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,32,53,0.08);
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links-group {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-link:hover { color: white; }

nav.scrolled .nav-link {
  color: var(--muted);
}
nav.scrolled .nav-link:hover {
  color: var(--navy);
}
.nav-cta {
  background: var(--green-wa);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }
.nav-cta svg { width: 17px; height: 17px; fill: white; flex-shrink: 0; }

/* ── 04. HERO ── */
.hero {
  background: linear-gradient(135deg, rgba(11,32,53,0.88) 0%, rgba(20,51,82,0.78) 50%, rgba(11,32,53,0.85) 100%), url('../images/hero-villa.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 140px 40px 90px;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(46,139,192,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-lt);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  margin-top: 0;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.hero-typing-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 28px;
  color: white;
  min-height: 1.12em;
}
.hero-typing-line .typed-word {
  color: var(--gold);
  border-right: 3px solid var(--gold);
  padding-right: 4px;
  animation: blink .7s step-end infinite;
}
@keyframes blink { 50% { border-color: transparent; } }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 44px;
  font-weight: 400;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }
.btn-wa svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: white; }
.hero-note {
  margin-top: 18px;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

/* ── 05. TRUST BAR ── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.trust-stat {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  /* Standard: sichtbar für Googlebot */
  opacity: 1;
  transform: none;
}

/* Nur wenn JS geladen: Animation aktivieren */
.js-loaded .trust-stat {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.js-loaded .trust-stat.vis { opacity: 1; transform: none; }
.trust-stat:last-child { border-right: none; }
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-num .gold { color: var(--gold); }
.trust-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── 06. SECTION BASE STYLES ── */
section { padding: 96px 40px; }
.inner { max-width: 1100px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-gold { color: var(--gold); }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
h2.section-title.white { color: white; }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}
.section-sub.white { color: rgba(255,255,255,0.65); }

/* Fade-in animations */
/* Standard: sichtbar für Googlebot (kein JS) */
.fade {
  opacity: 1;
  transform: none;
}

/* Nur wenn JS geladen: Animation aktivieren */
.js-loaded .fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.js-loaded .fade.vis {
  opacity: 1;
  transform: none;
}
.fade-delay-1 { transition-delay: .1s; }
.fade-delay-2 { transition-delay: .2s; }
.fade-delay-3 { transition-delay: .3s; }

/* ── 07. PROBLEM / SOLUTION ── */
.problem { background: var(--off); }
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pain-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: box-shadow .2s, border-color .2s;
}
.pain-chip:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.pain-chip .icon { font-size: 20px; flex-shrink: 0; }
.solution-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%);
  pointer-events: none;
}
.solution-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  position: relative;
}
.solution-card p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}
.check-dot {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

/* ── 08. HOW IT WORKS (STEPS) ── */
.how { background: white; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
}
.steps-row::after {
  display: none;
}
.step-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 28px 32px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 22px;
  position: relative; z-index: 1;
}
.step-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── 09. ABOUT / FERHAT ── */
.about { background: var(--navy); padding: 96px 40px; }
.about-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow);
  line-height: 1.4;
}
.about-photo-badge .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.about-content { color: white; }
.about-content .eyebrow { color: var(--gold-lt); }
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
  color: white;
}
.about-content .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.about-content p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 16px;
}
.usp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.usp-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

/* ── 10. SERVICES ── */
.services { background: var(--off); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  transition: box-shadow .25s, transform .25s;
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #EFF6FF 0%, white 70%);
  position: relative;
}
.featured-tag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.svc-icon { font-size: 34px; margin-bottom: 16px; }
.svc-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── 11. EARNINGS TABLE ── */
.earnings { background: white; }
.table-wrap {
  margin-top: 52px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .table-wrap {
    border-radius: 12px;
  }
  table {
    min-width: 600px;
  }
  .table-wrap::after {
    content: '← scrollen →';
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    padding: 8px;
    background: var(--off);
  }
  th {
    padding: 14px 16px;
    font-size: 11px;
  }
  td {
    padding: 14px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}
table { width: 100%; border-collapse: collapse; }
thead { background: var(--navy); }
th {
  padding: 18px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--off); }
.td-bold { font-weight: 700; color: var(--navy); }
.td-green { font-weight: 700; color: #1a8c47; }
.table-note { margin-top: 14px; font-size: 13px; color: var(--muted); font-style: italic; }

/* ── 12. SUPERHOST / AIRBNB ── */
.superhost { background: var(--off); }
.superhost-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.airbnb-proof-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(11,32,53,0.12);
  border: 1px solid #EBEBEB;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.airbnb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}
.airbnb-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.airbnb-logo-text svg { width: 26px; height: 26px; }
.superhost-pill {
  background: #FFF3CD;
  border: 1px solid #F5C842;
  color: #8B6914;
  padding: 6px 16px;
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.ab-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.ab-stat {
  background: #F7F7F7;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.ab-stat .n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #222222;
  line-height: 1;
  margin-bottom: 6px;
}
.ab-stat .l {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #717171;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid #EBEBEB;
}
.stars { color: #FF5A5F; font-size: 18px; letter-spacing: 1px; }
.stars-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
}
.airbnb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border: 1.5px solid #DDDDDD;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.airbnb-link:hover {
  border-color: #222222;
  background: #F7F7F7;
}
.airbnb-link svg { width: 16px; height: 16px; }

/* ── 13. REVIEWS ── */
.reviews { background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.review-meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  gap: 2px;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.review-location {
  font-size: 12px;
  color: var(--muted);
}
.review-author { display: none; }
.review-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #F5A623; font-size: 15px; margin-bottom: 14px; }
.review-text {
  font-size: 14px; line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
}
.review-author { font-size: 13px; font-weight: 700; color: var(--navy); }
.review-author span { font-weight: 400; color: var(--muted); }

/* ── 14. OWNER PORTAL ── */
.portal {
  background: var(--navy);
  padding: 96px 40px;
}
.portal .eyebrow { color: var(--gold-lt); }
.portal h2.section-title { color: white; }
.portal .section-sub { color: rgba(255,255,255,0.7); }
.portal .pf-text strong { color: white; }
.portal .pf-text span { color: rgba(255,255,255,0.65); }
.portal-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.portal-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}
.pf {
  display: flex; align-items: flex-start; gap: 16px;
}
.pf-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.pf-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.pf-text span { font-size: 14px; color: var(--muted); }

.mockup {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mockup-bar {
  background: var(--navy);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 7px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-body { padding: 22px; }
.mockup-title-row {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.mockup-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.mockup-row:last-child { border-bottom: none; }
.mockup-row .lbl { color: var(--muted); }
.mockup-row .val { font-weight: 700; color: var(--navy); }
.mockup-row .val.g { color: #1a8c47; }

/* ── 15. FAQ ── */
.faq { background: white; }
.faq-wrap {
  max-width: 740px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left;
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background .2s;
}
.faq-q:hover { background: var(--off); }
.faq-arrow { font-size: 22px; color: var(--muted); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  font-size: 15px; color: var(--muted); line-height: 1.75;
  padding: 0 28px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 28px 22px; }

/* ── 16. CTA FINAL ── */
.cta-final {
  background: var(--navy);
  padding: 110px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  position: relative;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-final .btn-wa {
  font-size: 18px;
  padding: 18px 44px;
  position: relative;
}
.cta-note {
  margin-top: 20px;
  color: rgba(255,255,255,.35);
  font-size: 13px;
  position: relative;
}

/* ── 17. FOOTER ── */
footer {
  background: #060E18;
  padding: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social-btn:hover {
  color: white;
  background: rgba(255,255,255,0.15);
}
.footer-social-btn.wa:hover { background: #25D366; border-color: #25D366; color: white; }
.footer-social-btn.ig:hover { background: #E1306C; border-color: #E1306C; color: white; }
.footer-social-btn.airbnb:hover { background: #FF5A5F; border-color: #FF5A5F; color: white; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── 18. SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(11,32,53,0.75);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 2px solid rgba(255,255,255,0.08);
}

.social-sidebar a:first-child {
  border-radius: 8px 0 0 0;
}

.social-sidebar a:last-child {
  border-radius: 0 0 0 8px;
}

.social-sidebar a:hover {
  width: 52px;
  color: white;
}

.social-sidebar a.wa:hover {
  background: #25D366;
  border-left-color: #25D366;
}

.social-sidebar a.ig:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-left-color: #fd1d1d;
}

.social-sidebar svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── 19. HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--navy); }

/* ── 20. MOBILE MENU & OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 101px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 280;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  border-bottom: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a,
.mobile-menu a.mobile-menu-legal {
  font-family: 'Cormorant Garamond', serif !important;
  text-decoration: none !important;
  width: 100% !important;
  padding: 14px 32px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  transition: background 0.15s !important;
  display: block !important;
}
.mobile-menu a:not(.mobile-menu-legal):not(.menu-wa) {
  font-size: 22px !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: white !important;
}
.mobile-menu a:not(.mobile-menu-legal):not(.menu-wa):hover {
  background: rgba(255,255,255,0.05);
  color: var(--gold-lt);
}
.mobile-menu a.mobile-menu-legal {
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: rgba(255,255,255,0.5) !important;
  border-bottom: none !important;
}
.mobile-menu a.menu-wa {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: white !important;
  border-bottom: none !important;
}
.mobile-menu .menu-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-wa);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  margin: 16px 24px 4px;
  width: calc(100% - 48px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  border-bottom: none !important;
}
.mobile-menu .menu-wa:hover {
  background: #20c45d;
  color: white;
}
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 270;
}
.mobile-overlay.open { display: block; }

/* ── 21. MOBILE WA FAB & SAFE AREA & TOUCH ── */
.mobile-wa-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  background: var(--green-wa);
  color: white;
  width: auto;
  max-width: calc(100% - 32px);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.mobile-wa-fab svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* Safe area insets */
.mobile-wa-fab {
  bottom: calc(24px + env(safe-area-inset-bottom));
}
.lang-bar {
  padding-top: max(8px, env(safe-area-inset-top));
}

/* Touch feedback */
.btn-wa:active,
.nav-cta:active,
.mobile-wa-fab:active {
  transform: scale(0.97);
  opacity: 0.9;
}
.faq-q:active {
  background: var(--off);
}

/* ── 22. OWNER PORTAL MOCKUP ── */
.portal-mockup-device {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 390px;
  width: 100%;
  height: 700px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.portal-top-bar {
  background: #1a0533;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-top-bar .back-btn {
  background: var(--gold);
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 16px;
}
.portal-top-bar .portal-title {
  color: white;
  font-size: 15px;
  font-weight: 600;
}
.portal-tabs-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.portal-tab-panel {
  display: none;
  height: 100%;
  overflow-y: auto;
}
.portal-tab-panel.active {
  display: block;
}
.portal-content {
  padding: 20px;
  background: #f5f5f5;
  min-height: 100%;
}
.portal-greeting {
  background: white;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}
.portal-greeting-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.portal-greeting-text p {
  font-size: 13px;
  color: #717171;
}
.portal-apt-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.portal-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.portal-kpi-card {
  background: #EBF4FF;
  border-radius: 12px;
  padding: 16px;
}
.portal-kpi-card .kpi-value {
  font-size: 26px;
  font-weight: 700;
  color: #1a6bb5;
  line-height: 1;
  margin-bottom: 6px;
}
.portal-kpi-card .kpi-label {
  font-size: 12px;
  color: #1a6bb5;
}
.portal-revenue-card {
  background: white;
  border-radius: 14px;
  padding: 18px;
}
.portal-revenue-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.revenue-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #717171;
  margin-bottom: 16px;
}
.revenue-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.revenue-row:last-child { margin-bottom: 0; }
.revenue-row .rev-label { font-size: 13px; color: #1a1a1a; min-width: 160px; }
.revenue-row .rev-amount { font-size: 14px; font-weight: 600; color: #1a1a1a; white-space: nowrap; }
.revenue-row .rev-amount.payout { color: #008a05; }
.rev-bar-wrap { flex: 1; height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.rev-bar { height: 100%; border-radius: 4px; background: #1a6bb5; }
.rev-bar.green { background: #008a05; }
.revenue-divider { border: none; border-top: 1px solid #eee; margin: 12px 0; }
.portal-calendar {
  background: white;
  border-radius: 14px;
  padding: 18px;
}
.cal-header { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.cal-weekday { text-align: center; font-size: 11px; font-weight: 600; color: #717171; padding: 4px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day { min-height: 36px; font-size: 12px; color: #1a1a1a; padding: 4px 2px; position: relative; text-align: center; }
.cal-day.empty { color: transparent; }
.cal-day.other-month { color: #ccc; }
.cal-booking {
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 4px;
  font-size: 9px;
  font-weight: 600;
  color: white;
  overflow: hidden;
}
.cal-booking.airbnb { background: #e91e8c; }
.cal-booking.owner { background: #7c3aed; }
.cal-legend { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid #eee; }
.cal-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #717171; }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 2px; }
.portal-statement {
  background: white;
  border-radius: 14px;
  padding: 18px;
}
.portal-statement h5 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.statement-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.statement-row:last-child { border-bottom: none; }
.statement-row .s-label { color: #717171; }
.statement-row .s-value { font-weight: 700; color: #1a1a1a; }
.statement-row .s-value.green { color: #008a05; }
.statement-row .s-value.red { color: #e91e8c; }
.statement-total {
  background: #f0f7ff;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.statement-total .t-label { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.statement-total .t-value { font-size: 20px; font-weight: 800; color: #008a05; }
.statements-header {
  background: white;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
}
.statements-header h4 { font-size: 20px; font-weight: 700; color: #1a1a1a; }
.statements-filter { font-size: 14px; color: #1a6bb5; padding: 4px 0 12px; cursor: pointer; }
.statements-table { background: white; border-radius: 14px; overflow: hidden; }
.statements-col-header {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.statement-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  gap: 8px;
}
.statement-item:last-child { border-bottom: none; }
.stmt-property {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.4;
}
.stmt-pdf-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff0f0;
  border: 1px solid #fdd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex-shrink: 0;
}
.stmt-period { font-size: 13px; color: #1a1a1a; }
.stmt-download { font-size: 13px; font-weight: 600; color: #1a6bb5; text-decoration: underline; white-space: nowrap; }
.portal-bottom-nav {
  flex-shrink: 0;
  background: white;
  border-top: 1px solid #eee;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 0;
}
.portal-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  color: #717171;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.portal-nav-btn.active { color: #1a6bb5; }
.portal-nav-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.portal-url-bar {
  flex-shrink: 0;
  background: #f5f5f5;
  border-top: 1px solid #eee;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #717171;
}

/* ── 23. UTILITY & MISC ── */
.potential-box {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.potential-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  pointer-events: none;
}
.potential-box-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
.potential-icon {
  font-size: 40px;
  flex-shrink: 0;
}
.potential-text { flex: 1; }
.potential-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}
.potential-text p {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.potential-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.potential-cta:hover { opacity: .9; transform: translateY(-2px); }

@media (max-width: 768px) {
  .potential-box { padding: 28px 24px; }
  .potential-box-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .potential-cta { width: 100%; justify-content: center; }
}

.hero-claim {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 28px;
  margin-top: -4px;
}
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--off);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
}
.svc-card.featured .svc-icon {
  background: rgba(46,139,192,0.1);
  color: var(--blue);
}
.pf-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-lt);
}
.pain-chip .chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.usp-tag svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

/* ── 24. RESPONSIVE — 1024px & 960px & 600px ── */
@media (max-width: 1024px) {
  nav { padding: 0 20px; top: 37px; height: 64px; }
  .nav-logo img { height: 38px; }

  .nav-links-group { display: none !important; }
  .nav-right .nav-link { display: none !important; }
  .nav-right .nav-cta { display: none !important; }
  .hamburger { display: flex !important; margin-left: auto; }

  .social-sidebar { display: none !important; }
  .mobile-wa-fab { display: flex; }
}

@media (max-width: 960px) {
  section { padding: 56px 20px; }
  .about { padding: 56px 20px; }
  .cta-final { padding: 64px 20px; }
  .hero { padding: 120px 20px 64px; }
  .hero-eyebrow { margin-top: 16px; }
  .trust-bar { padding: 0 20px; }
  .problem-layout,
  .about-layout,
  .superhost-layout,
  .portal-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .about-photo { max-width: 100%; aspect-ratio: 1 / 1; }
  .about-photo-badge { right: 10px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 40px 24px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .trust-bar-inner { flex-direction: column; }
  .trust-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .trust-stat:last-child { border-bottom: none; }
  .lang-bar { padding: 8px 20px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .ab-stats { grid-template-columns: 1fr 1fr; }
}

/* ── 25. RESPONSIVE — 480px ── */
@media (max-width: 480px) {

  /* Hero */
  .hero { padding: 110px 16px 56px; min-height: 560px; }
  .hero h1 { font-size: 36px; line-height: 1.15; }
  .hero-typing-line { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 14px; margin-top: 24px; }

  /* Trust Bar */
  .trust-num { font-size: 36px; }
  .trust-lbl { font-size: 11px; }

  /* Nav */
  nav { padding: 0 16px; height: 64px; }
  .nav-logo img { height: 36px; }

  /* Lang Bar */
  .lang-bar { padding: 8px 16px; }

  /* Sections */
  section { padding: 48px 16px; }
  .about { padding: 48px 16px; }

  /* Typography */
  h2.section-title { font-size: 28px; }
  .section-sub { font-size: 15px; }

  /* About / Ferhat */
  .about-photo { max-width: 340px; margin: 0 auto; }
  .about-photo-badge {
    right: 8px;
    bottom: -14px;
    padding: 12px 16px;
  }
  .about-photo-badge .big { font-size: 22px; }
  .about-content .quote { font-size: 18px; }
  .usp-tags { gap: 8px; }
  .usp-tag { font-size: 12px; padding: 6px 12px; }

  /* Steps */
  .step-card { padding: 28px 20px 24px; }
  .step-num { width: 48px; height: 48px; font-size: 20px; }

  /* Services */
  .svc-card { padding: 28px 20px; }

  /* Pain chips */
  .pain-chip { font-size: 13px; padding: 12px 14px; }
  .pain-grid { grid-template-columns: 1fr; }

  /* Solution card */
  .solution-card { padding: 32px 24px; }
  .solution-card h3 { font-size: 22px; }

  /* Earnings table */
  th { padding: 14px 12px; font-size: 11px; }
  td { padding: 14px 12px; font-size: 13px; }

  /* Airbnb card */
  .airbnb-proof-card { padding: 24px; }
  .ab-stat .n { font-size: 28px; }
  .ab-stats { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 22px; }

  /* Portal mockup */
  .mockup-body { padding: 16px; }
  .mockup-row { font-size: 13px; padding: 12px 0; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 18px 20px; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; }

  /* CTA Final */
  .cta-final h2 { font-size: 28px; }
  .cta-final p { font-size: 16px; }
  .btn-wa { font-size: 15px; padding: 14px 24px; }

  /* Hero CTA Buttons */
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .btn-wa, .btn-outline {
    justify-content: center;
    width: 100%;
  }

  /* Mobile FAB */
  .mobile-wa-fab {
    font-size: 14px;
    padding: 12px 22px;
    width: calc(100% - 32px);
    justify-content: center;
  }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 32px 20px 24px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 16px 20px; }
}

/* ── 26. RESPONSIVE — 390px ── */
@media (max-width: 390px) {
  .mobile-wa-fab {
    font-size: 13px;
    padding: 13px 20px;
  }
}
