:root {
  --navy: #0f1f35;
  --blue: #1a5fa8;
  --sky: #3b9edd;
  --mint: #34c98e;
  --warm: #f5f0e8;
  --cream: #fdfaf5;
  --text: #1a1a2e;
  --muted: #6b7280;
  --gold: #e8a020;
  --red-soft: #e85050;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; gap: 0;
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(253,250,245,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700;
  color: var(--navy); flex-shrink: 0;
}
.nav-logo span { color: var(--sky); }
.nav-links {
  display: flex; gap: 32px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
/* LANG TOGGLE â€” inside nav, pinned right */
.lang-toggle {
  margin-left: auto; display: flex; gap: 3px;
  background: rgba(15,31,53,0.07); border-radius: 100px; padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 5px 14px; border-radius: 100px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; background: transparent; color: var(--muted);
}
.lang-btn.active { background: var(--navy); color: white; }
/* HAMBURGER */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; background: none; border: none; margin-left: 12px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 998;
  background: rgba(253,250,245,0.98); backdrop-filter: blur(16px);
  padding: 16px 24px 28px; flex-direction: column; gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text); font-size: 17px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: block;
}
.mobile-menu a:last-child { border-bottom: none; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #e8f4fd 0%, #f5f0e8 40%, #e8f9f2 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
}
.hero-orb-1 { width: 600px; height: 600px; background: #bfe4f8; top: -200px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: #c8f5e0; bottom: -100px; left: -100px; }
.hero-orb-3 { width: 300px; height: 300px; background: #fde8c0; top: 50%; left: 30%; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 860px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border-radius: 100px; padding: 8px 20px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08); margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700; line-height: 1.0;
  color: var(--navy); margin-bottom: 16px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em { font-style: italic; color: var(--sky); }
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px); color: var(--muted);
  font-weight: 300; line-height: 1.6; margin-bottom: 48px;
  max-width: 620px; margin-left: auto; margin-right: auto;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  padding: 16px 36px; background: var(--navy); color: white;
  border-radius: 100px; border: none; font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 500; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,31,53,0.25); }
.btn-secondary {
  padding: 16px 36px; background: transparent; color: var(--navy);
  border-radius: 100px; border: 2px solid rgba(15,31,53,0.2);
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-2px); }

/* HERO STATS */
.hero-stats {
  display: flex; gap: 48px; justify-content: center; margin-top: 80px;
  animation: fadeUp 0.6s 0.4s ease both; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Fraunces', serif; font-size: 42px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* SCROLL INDICATOR */
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 12px; animation: bounce 2s infinite;
  z-index: 1;
}
.scroll-hint svg { width: 20px; height: 20px; }

/* SECTIONS COMMON */
section { padding: 100px 40px; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.1; color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px; color: var(--muted); font-weight: 300;
  line-height: 1.6; max-width: 600px;
}
.container { max-width: 1100px; margin: 0 auto; }

/* PROBLEM SECTION */
.problem-section { background: var(--navy); color: white; }
.problem-section .section-label { color: var(--gold); }
.problem-section .section-title { color: white; }
.problem-section .section-sub { color: rgba(255,255,255,0.6); }
.apps-chaos {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px;
  justify-content: center;
}
.chaos-app {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 16px 24px;
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.chaos-app:hover { background: rgba(255,255,255,0.14); transform: scale(1.05); }
.chaos-app .app-icon { font-size: 22px; }
.chaos-arrow {
  text-align: center; margin: 48px 0 24px;
  font-size: 40px; animation: bounce 2s infinite;
}
.problem-quote {
  background: rgba(255,255,255,0.06); border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0; padding: 24px 32px;
  max-width: 680px; margin: 0 auto;
  font-family: 'Fraunces', serif; font-size: 22px; font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.5; text-align: center;
}

/* STORY / TIMELINE */
.story-section { background: var(--warm); }
.timeline {
  position: relative; margin-top: 64px;
  max-width: 860px; margin-left: auto; margin-right: auto;
}
.timeline::before {
  content: ''; position: absolute; left: 80px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--sky), var(--mint));
}
.timeline-item {
  display: flex; gap: 40px; margin-bottom: 48px; opacity: 0;
  transform: translateX(-30px); transition: all 0.6s ease;
  position: relative;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-time {
  width: 80px; flex-shrink: 0; text-align: right;
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600;
  color: var(--sky); padding-top: 18px; position: relative;
}
.timeline-time::after {
  content: ''; position: absolute; right: -49px; top: 24px;
  width: 16px; height: 16px; border-radius: 50%;
  background: white; border: 3px solid var(--sky);
  z-index: 1;
}
.timeline-card {
  flex: 1; background: white; border-radius: 20px;
  padding: 24px 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.timeline-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.timeline-icon { font-size: 28px; }
.timeline-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); }
.before-after {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px;
}
.before-box, .after-box {
  border-radius: 12px; padding: 14px 16px; font-size: 14px; line-height: 1.5;
}
.before-box {
  background: #fff5f5; border: 1px solid #fecaca; color: #7f1d1d;
}
.after-box {
  background: #f0fdf4; border: 1px solid #bbf7d0; color: #14532d;
}
.before-box strong, .after-box strong {
  display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 6px; opacity: 0.7;
}

/* MOCK PHONE */
.demo-section { background: white; overflow: hidden; }
.demo-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto;
}
.phone-mockup {
  position: relative; display: flex; justify-content: center;
}
.phone-frame {
  width: 280px; height: 560px; background: var(--navy);
  border-radius: 44px; padding: 14px;
  box-shadow: 0 40px 80px rgba(15,31,53,0.35), inset 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.phone-notch {
  width: 100px; height: 28px; background: var(--navy);
  border-radius: 0 0 20px 20px; position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%); z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%; background: #f8faff;
  border-radius: 34px; overflow: hidden; position: relative;
}
.phone-screen-inner {
  padding: 44px 16px 16px; height: 100%;
  display: flex; flex-direction: column; gap: 10px;
}
.p-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.p-greeting { font-size: 11px; color: var(--muted); }
.p-greeting strong { display: block; font-size: 15px; color: var(--navy); font-family: 'Fraunces', serif; }
.p-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--mint));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: white; font-weight: 700;
}
.p-card {
  background: white; border-radius: 14px; padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.p-card-title { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.p-notification {
  display: flex; align-items: center; gap: 8px;
  background: #f0fdf4; border-radius: 10px; padding: 10px 12px;
  border-left: 3px solid var(--mint);
}
.p-notification-icon { font-size: 16px; }
.p-notification-text { font-size: 11px; color: var(--navy); line-height: 1.4; }
.p-notification-text strong { display: block; font-size: 12px; }
.p-items { display: flex; flex-direction: column; gap: 6px; }
.p-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; padding: 4px 0; border-bottom: 1px solid #f3f4f6;
}
.p-item-name { color: var(--text); }
.p-item-price { font-weight: 600; color: var(--mint); }
.p-weather {
  display: flex; justify-content: space-between; align-items: center;
}
.p-weather-main { display: flex; align-items: center; gap: 8px; }
.p-weather-temp { font-family: 'Fraunces', serif; font-size: 28px; color: var(--navy); }
.p-weather-desc { font-size: 11px; color: var(--muted); }
.p-weather-detail { font-size: 11px; color: var(--muted); text-align: right; }

/* SCREEN SWITCHER */
.screen-tabs {
  display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap;
}
.screen-tab {
  padding: 8px 18px; border-radius: 100px; border: 2px solid #e5e7eb;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.2s; background: white; color: var(--muted);
}
.screen-tab.active { border-color: var(--navy); background: var(--navy); color: white; }
.demo-content { display: none; }
.demo-content.active { display: block; }
.demo-content h3 {
  font-family: 'Fraunces', serif; font-size: 32px; color: var(--navy);
  margin-bottom: 12px; font-weight: 700;
}
.demo-content p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text);
}
.feature-list li::before {
  content: 'âœ“'; width: 20px; height: 20px; border-radius: 50%;
  background: #f0fdf4; color: var(--mint); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* MODULES */
.modules-section {
  background: var(--warm);
  font-family: 'DM Sans', sans-serif;
}
.modules-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-top: 48px;
}
.module-card {
  background: white; border-radius: 20px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s;
  opacity: 0; transform: translateY(20px);
}
.module-card.visible { opacity: 1; transform: translateY(0); }
.module-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.module-emoji { font-size: 32px; margin-bottom: 12px; }
.module-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}
.module-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.module-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  background: #eff6ff;
  color: var(--blue);
}

/* PITCH / INVESTOR */
.pitch-section { background: white; }
.pitch-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.pitch-card {
  border-radius: 20px; padding: 32px; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px); transition: all 0.5s;
}
.pitch-card.visible { opacity: 1; transform: translateY(0); }
.pitch-card-market { background: var(--navy); color: white; }
.pitch-card-tech { background: #eff6ff; }
.pitch-card-security { background: #f0fdf4; }
.pitch-card-business { background: #fffbeb; }
.pitch-card h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700;
  margin-bottom: 12px;
}
.pitch-card p { font-size: 14px; line-height: 1.7; opacity: 0.8; }
.pitch-big-stat {
  font-family: 'Fraunces', serif; font-size: 56px; font-weight: 700;
  line-height: 1; margin-bottom: 8px; color: var(--gold);
}
.pitch-card-market p { color: rgba(255,255,255,0.7); }

/* SECURITY */
.security-section { background: #0a1628; color: white; }
.security-section .section-label { color: var(--mint); }
.security-section .section-title { color: white; }
.security-section .section-sub { color: rgba(255,255,255,0.5); }
.security-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px;
}
.security-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px; transition: all 0.3s;
}
.security-item:hover { background: rgba(255,255,255,0.08); border-color: var(--mint); }
.security-item .icon { font-size: 28px; margin-bottom: 12px; }
.security-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.security-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
  text-align: center; color: white;
}
.cta-section .section-title { color: white; max-width: 600px; margin: 0 auto 20px; }
.cta-section .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 48px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  padding: 16px 36px; background: white; color: var(--navy);
  border-radius: 100px; font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.25s; text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-outline-white {
  padding: 16px 36px; background: transparent; color: white;
  border-radius: 100px; border: 2px solid rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.btn-outline-white:hover { border-color: white; transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--navy); color: rgba(255,255,255,0.4);
  padding: 40px; text-align: center; font-size: 14px;
}
footer strong { color: white; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}
.phone-mockup { animation: floatPhone 4s ease-in-out infinite; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* TABLET MOCKUP */
.tablet-section { background: var(--warm); }
.tablet-frame {
  width: 100%; max-width: 700px; height: 460px;
  background: var(--navy); border-radius: 24px; padding: 16px;
  box-shadow: 0 40px 80px rgba(15,31,53,0.25), inset 0 0 0 1px rgba(255,255,255,0.1);
  margin: 48px auto 0;
}
.tablet-screen {
  width: 100%; height: 100%; background: #f8faff;
  border-radius: 14px; overflow: hidden;
  display: grid; grid-template-columns: 220px 1fr;
}
.tablet-sidebar {
  background: var(--navy); padding: 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.t-logo {
  font-family: 'Fraunces', serif; font-size: 18px; color: white; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.t-logo span { color: var(--sky); }
.t-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 10px; cursor: pointer;
  font-size: 13px; color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.t-nav-item:hover, .t-nav-item.active {
  background: rgba(255,255,255,0.1); color: white;
}
.t-nav-item.active { background: var(--sky); }
.t-nav-icon { font-size: 16px; }
.tablet-main { padding: 20px; overflow: auto; }
.t-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.t-title { font-family: 'Fraunces', serif; font-size: 20px; color: var(--navy); font-weight: 700; }
.t-date { font-size: 13px; color: var(--muted); }
.t-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.t-card {
  background: white; border-radius: 14px; padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.t-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.t-card-title { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.t-card-icon { font-size: 18px; }
.t-weather-big { font-family: 'Fraunces', serif; font-size: 36px; color: var(--navy); }
.t-weather-sub { font-size: 12px; color: var(--muted); }
.t-task { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid #f3f4f6; }
.t-task-check { width: 16px; height: 16px; border-radius: 4px; border: 2px solid #e5e7eb; flex-shrink: 0; }
.t-task-check.done { background: var(--mint); border-color: var(--mint); }
.t-task-text { font-size: 12px; color: var(--text); }
.t-task-text.done { text-decoration: line-through; color: var(--muted); }
.t-alert {
  background: #fffbeb; border-left: 3px solid var(--gold);
  border-radius: 8px; padding: 10px 12px; font-size: 12px; color: var(--text);
  line-height: 1.4; margin-top: 6px;
}
.t-family { display: flex; gap: 8px; margin-top: 6px; }
.t-member {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.t-member-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: white; font-weight: 700;
}
.t-member-name { font-size: 10px; color: var(--muted); }

/* HR */
.divider { height: 1px; background: rgba(0,0,0,0.06); margin: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  /* NAV */
  nav { padding: 0 20px; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }

  /* HERO */
  .hero { padding: 90px 20px 60px; }
  .hero-title { font-size: clamp(38px, 11vw, 60px); }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta a { width: 100%; max-width: 300px; text-align: center; }
  .hero-stats { gap: 28px; margin-top: 48px; }
  .hero-stat-num { font-size: 34px; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 200px; height: 200px; }

  /* SECTIONS */
  section { padding: 64px 20px; }
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .section-sub { font-size: 15px; }

  /* PROBLEM */
  .apps-chaos { gap: 8px; }
  .chaos-app { padding: 10px 14px; font-size: 13px; }
  .problem-quote { font-size: 17px; padding: 20px 24px; }

  /* TIMELINE */
  .timeline::before { display: none; }
  .timeline-item {
    flex-direction: column; gap: 6px; margin-bottom: 24px;
  }
  .timeline-time {
    width: auto; font-size: 13px; font-weight: 700;
    color: var(--sky); padding-top: 0; text-align: left;
    display: flex; align-items: center; gap: 8px;
  }
  .timeline-time::after { display: none; }
  .timeline-time::before {
    content: ''; display: inline-block;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--sky); flex-shrink: 0;
  }
  .timeline-card { padding: 16px 14px; }
  .timeline-card h3 { font-size: 14px; }
  .before-after { grid-template-columns: 1fr; gap: 8px; }
  .before-box, .after-box { font-size: 13px; }

  /* TABLET MOCKUP */
  .tablet-frame {
    border-radius: 16px; padding: 10px;
    max-width: 100%; overflow-x: hidden;
  }
  .tablet-screen { grid-template-columns: 1fr; min-height: 520px; }
  .tablet-sidebar { display: none; }
  .tablet-main { padding: 14px; overflow-y: auto; }
  .t-cards { grid-template-columns: 1fr; gap: 10px; }
  .t-title { font-size: 15px; }
  .t-weather-big { font-size: 26px; }
  .t-page-header { margin-bottom: 10px; }
  .t-page-title { font-size: 15px; }
  .t-task-input { font-size: 14px; padding: 10px 12px; }
  .t-task-add-btn { font-size: 13px; padding: 10px 12px; white-space: nowrap; }
  .t-login { padding: 16px; gap: 16px; }
  .t-user-avatar { width: 44px; height: 44px; font-size: 17px; }
  .t-users { gap: 12px; }
  /* Sidebar replaced by top user bar on mobile */
  .tablet-mobile-topbar {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--navy); padding: 10px 14px; border-radius: 10px 10px 0 0;
  }
  .t-mobile-nav {
    display: flex; gap: 6px; overflow-x: auto; padding-bottom: 2px;
    background: var(--navy); padding: 8px 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .t-mobile-nav-btn {
    background: rgba(255,255,255,0.08); border: none; border-radius: 8px;
    padding: 6px 12px; color: rgba(255,255,255,0.7); font-size: 12px;
    font-weight: 500; cursor: pointer; white-space: nowrap;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s; flex-shrink: 0;
  }
  .t-mobile-nav-btn.active { background: var(--sky); color: white; }

  /* DEMO */
  .demo-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .phone-mockup { justify-content: center; animation: none; }
  .phone-frame { width: 240px; height: 480px; }
  .screen-tabs { gap: 6px; }
  .screen-tab { padding: 7px 14px; font-size: 12px; }
  .demo-content h3 { font-size: 24px; }
  .demo-content p { font-size: 14px; }

  /* MODULES */
  .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .module-card { padding: 18px 14px; }
  .module-emoji { font-size: 24px; }
  .module-name { font-size: 13px; }
  .module-desc { font-size: 12px; }

  /* SECURITY */
  .security-grid { grid-template-columns: 1fr; gap: 14px; }

  /* PITCH */
  .pitch-grid { grid-template-columns: 1fr; gap: 16px; }
  .pitch-big-stat { font-size: 44px; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons a { width: 100%; max-width: 300px; text-align: center; }
}

@media (max-width: 400px) {
  .modules-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODULE MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.module-card { cursor: pointer; }
.module-card:hover .module-emoji { transform: scale(1.15); transition: transform 0.2s; }

.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,20,40,0.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
  font-family: 'DM Sans', sans-serif;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px 20px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.modal-header-icon { font-size: 36px; }
.modal-header-text h2 { font-family: 'Fraunces', serif; font-size: 24px; color: var(--navy); }
.modal-header-text p { font-size: 13px; color: var(--muted); margin-top: 2px; }
.modal-close {
  margin-left: auto; background: #f4f5f7; border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 18px; cursor: pointer; color: var(--muted);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s;
}
.modal-close:hover { background: #e8e9ec; }
.modal-body { padding: 24px 28px; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.modal-phone-wrap {
  display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start;
}
.modal-phone-frame {
  width: 200px; background: var(--navy); border-radius: 32px; padding: 10px;
  box-shadow: 0 20px 48px rgba(15,31,53,0.3); flex-shrink: 0;
}
.modal-phone-screen {
  background: #f8faff; border-radius: 24px; overflow: hidden;
  min-height: 360px; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px;
}
.modal-phone-status {
  display: flex; justify-content: space-between; font-size: 9px;
  color: var(--muted); margin-bottom: 4px;
}
.modal-features { display: flex; flex-direction: column; gap: 10px; }
.modal-feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f8faff; border-radius: 12px; padding: 12px 14px;
}
.modal-feature-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.modal-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.modal-feature p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
/* mini phone card styles */
.mp-card {
  background: white; border-radius: 10px; padding: 10px 11px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07); font-size: 11px;
}
.mp-card-title { font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.mp-row { display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; border-bottom: 1px solid #f3f4f6; }
.mp-row:last-child { border-bottom: none; }
.mp-label { color: var(--text); }
.mp-val { font-weight: 600; color: var(--mint); font-size: 10px; }
.mp-val.warn { color: #e85050; }
.mp-notification {
  display: flex; gap: 7px; align-items: center;
  background: #f0fdf4; border-left: 2px solid var(--mint);
  border-radius: 7px; padding: 7px 9px;
}
.mp-notif-icon { font-size: 13px; }
.mp-notif-title { font-weight: 600; font-size: 10px; color: var(--navy); }
.mp-notif-sub { font-size: 9px; color: var(--muted); }
.mp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.mp-greeting { font-size: 9px; color: var(--muted); }
.mp-greeting strong { display: block; font-size: 12px; color: var(--navy); font-family: 'Fraunces', serif; }
.mp-avatar { width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--mint));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; font-weight: 700; }
.mp-tag { display: inline-block; padding: 2px 7px; border-radius: 100px;
  font-size: 9px; font-weight: 600; margin-top: 4px; }
.mp-tag-blue { background: #eff6ff; color: var(--blue); }
.mp-tag-green { background: #f0fdf4; color: #16a34a; }
.mp-tag-warn { background: #fffbeb; color: #92400e; }
.mp-bar-wrap { background: #f3f4f6; border-radius: 100px; height: 5px; margin-top: 5px; }
.mp-bar { height: 5px; border-radius: 100px; background: var(--mint); }

@media (max-width: 600px) {
  .modal-phone-wrap { grid-template-columns: 1fr; }
  .modal-phone-frame { display: none; }
  .modal-box { border-radius: 16px; }
  .modal-header { padding: 18px 20px 14px; }
  .modal-body { padding: 18px 20px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TABLET INTERACTIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tablet-frame { cursor: default; }
.t-nav-item { cursor: pointer; }
.t-page { display: none; }
.t-page.active { display: block; }

/* Login screen */
.t-login {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; padding: 24px; gap: 20px;
}
.t-login-title { font-family: 'Fraunces', serif; font-size: 20px; color: var(--navy); text-align: center; }
.t-login-sub { font-size: 12px; color: var(--muted); text-align: center; }
.t-users { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.t-user-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; border: none; background: none; transition: transform 0.2s;
}
.t-user-btn:hover { transform: scale(1.08); }
.t-user-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white; font-weight: 700;
  border: 3px solid transparent; transition: border-color 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.t-user-btn:hover .t-user-avatar { border-color: white; }
.t-user-name { font-size: 11px; color: var(--muted); font-weight: 500; }
.t-fingerprint-hint {
  font-size: 11px; color: var(--muted); text-align: center;
  display: flex; align-items: center; gap: 6px;
}

/* Active user badge */
.t-active-user {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border-radius: 100px;
  padding: 4px 12px 4px 4px; cursor: pointer;
  transition: background 0.2s; border: none; color: white;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
}
.t-active-user:hover { background: rgba(255,255,255,0.2); }
.t-active-user-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: white; font-weight: 700;
}

/* Tablet pages */
.t-page-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.t-page-title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); font-weight: 700; }

/* Tasks page */
.t-task-input-row {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.t-task-input {
  flex: 1; border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 8px 12px; font-family: 'DM Sans', sans-serif; font-size: 12px;
  outline: none; transition: border-color 0.2s; background: white;
}
.t-task-input:focus { border-color: var(--sky); }
.t-task-add-btn {
  background: var(--navy); color: white; border: none; border-radius: 10px;
  padding: 8px 14px; font-size: 12px; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: background 0.2s;
}
.t-task-add-btn:hover { background: var(--blue); }
.t-tasks-list { display: flex; flex-direction: column; gap: 5px; max-height: 220px; overflow-y: auto; }
.t-task-item {
  display: flex; align-items: center; gap: 8px; padding: 7px 10px;
  background: white; border-radius: 9px; border: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.t-task-item.done { opacity: 0.55; }
.t-task-cb {
  width: 16px; height: 16px; border-radius: 4px; border: 2px solid #d1d5db;
  cursor: pointer; flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; transition: all 0.15s;
}
.t-task-cb.checked { background: var(--mint); border-color: var(--mint); }
.t-task-cb.checked::after { content: 'âœ“'; font-size: 10px; color: white; font-weight: 700; }
.t-task-label { font-size: 12px; color: var(--text); flex: 1; }
.t-task-item.done .t-task-label { text-decoration: line-through; color: var(--muted); }
.t-task-owner {
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 8px; color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-task-del { border: none; background: none; color: #d1d5db; cursor: pointer;
  font-size: 14px; padding: 0 2px; transition: color 0.15s; }
.t-task-del:hover { color: #e85050; }

/* Shopping page */
.t-shop-input-row { display: flex; gap: 8px; margin-bottom: 12px; }
.t-shop-items { display: flex; flex-direction: column; gap: 5px; max-height: 200px; overflow-y: auto; }
.t-shop-item {
  display: flex; align-items: center; gap: 8px; padding: 7px 10px;
  background: white; border-radius: 9px; border: 1px solid #f0f0f0;
}
.t-shop-item.bought { opacity: 0.5; }
.t-shop-item.bought .t-task-label { text-decoration: line-through; }
.t-price-hint {
  font-size: 10px; color: var(--mint); font-weight: 600;
  background: #f0fdf4; border-radius: 6px; padding: 2px 7px; flex-shrink: 0;
}

/* User switch animation */
@keyframes userSwitch {
  0% { opacity: 1; }
  30% { opacity: 0; transform: scale(0.97); }
  70% { opacity: 0; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}
.user-switching .tablet-main { animation: userSwitch 0.6s ease both; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-section { background: white; }
.faq-grid {
  max-width: 780px; margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid #f0f0f0;
  opacity: 0; transform: translateY(16px); transition: all 0.5s ease;
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'DM Sans', sans-serif;
}
.faq-question-text {
  font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: #f4f5f7; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted); flex-shrink: 0;
  transition: all 0.25s; font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--navy); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 15px; color: var(--muted); line-height: 1.75;
}
.faq-answer p + p { margin-top: 10px; }
@media (max-width: 768px) {
  .faq-question-text { font-size: 15px; }
  .faq-answer p { font-size: 14px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BEYOND APPS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.beyond-section { background: var(--navy); padding-top: 0; }

/* Updated problem section â€” remove bottom padding so beyond flows in */
.problem-section { padding-bottom: 0; }

.beyond-divider {
  text-align: center; padding: 40px 0 64px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.beyond-divider-line {
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), var(--gold));
}
.beyond-divider-text {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700;
  color: white; max-width: 600px; line-height: 1.3; text-align: center;
}
.beyond-divider-text em { color: var(--gold); font-style: italic; }

.beyond-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 64px;
}
.beyond-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 28px 24px;
  transition: all 0.3s;
  opacity: 0; transform: translateY(20px);
}
.beyond-card.visible { opacity: 1; transform: translateY(0); }
.beyond-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.beyond-card-icon { font-size: 32px; margin-bottom: 14px; }
.beyond-card-title {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700;
  color: white; margin-bottom: 8px; line-height: 1.25;
}
.beyond-card-text {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65;
}

/* Stats row */
.beyond-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; margin-bottom: 64px;
}
.beyond-stat {
  background: rgba(255,255,255,0.03);
  padding: 28px 20px; text-align: center;
  transition: background 0.2s;
}
.beyond-stat:hover { background: rgba(255,255,255,0.07); }
.beyond-stat-num {
  font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.beyond-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.4;
}

/* Custom module CTA */
.beyond-custom {
  background: linear-gradient(135deg, rgba(59,158,221,0.15), rgba(52,201,142,0.12));
  border: 1px solid rgba(59,158,221,0.25);
  border-radius: 20px; padding: 36px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  margin-bottom: 64px;
}
.beyond-custom-text h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700;
  color: white; margin-bottom: 8px;
}
.beyond-custom-text p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 480px; }
.beyond-custom-badge {
  display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
.beyond-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
  white-space: nowrap; text-align: center;
}
.beyond-badge.highlight { background: var(--sky); border-color: var(--sky); color: white; }

@media (max-width: 768px) {
  .beyond-grid { grid-template-columns: 1fr; gap: 14px; }
  .beyond-stats { grid-template-columns: repeat(2, 1fr); }
  .beyond-custom { flex-direction: column; padding: 24px; }
  .beyond-custom-badge { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .beyond-divider-text { font-size: 22px; }
}
@media (max-width: 400px) {
  .beyond-stats { grid-template-columns: 1fr 1fr; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INTERACTIVE HOUSE SCENE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.house-section {
  background: linear-gradient(180deg, #e8f4fd 0%, #d4edf9 40%, #c8e8d4 100%);
  padding: 80px 40px; overflow: hidden; position: relative;
}
.house-section .section-label { color: var(--blue); }
.house-section .section-title { color: var(--navy); }
.house-section .section-sub { color: var(--muted); margin: 0 auto 48px; }

.house-scene-wrap {
  max-width: 900px; margin: 0 auto; position: relative;
}
.house-scene {
  width: 100%; aspect-ratio: 16/9; position: relative;
  user-select: none;
}
.house-hint {
  text-align: center; font-size: 13px; color: var(--muted);
  margin-top: 16px; display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
/* Hotspot buttons */
.hs {
  position: absolute; cursor: pointer;
  background: none; border: none; padding: 0;
  width: 36px; height: 36px;
  transition: transform 0.18s;
  z-index: 10;
}
.hs:hover { transform: scale(1.18); }
.hs:hover .hs-label { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: none; }
.hs-dot {
  position: absolute; inset: 6px; border-radius: 50%;
  background: var(--hs-color, #3b9edd);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.18s;
  border: 2.5px solid white;
}
.hs:hover .hs-dot { transform: scale(1.15); }
.hs-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--hs-color, #3b9edd); opacity: 0;
  transition: all 0.2s; pointer-events: none;
}
.hs-pulse {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(59,158,221,0.35);
  animation: hsPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hsPulse {
  0%,100% { transform: scale(1);   opacity: 0.7; }
  50%      { transform: scale(1.7); opacity: 0; }
}
/* Tooltip label */
.hs-label {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15,31,53,0.88); color: white;
  font-size: 11px; font-weight: 600; white-space: nowrap;
  padding: 4px 8px; border-radius: 6px;
  opacity: 0; transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}
.hs-label::after {
  content: '';
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(15,31,53,0.88);
}
/* House popup */
.house-popup {
  display: none; position: absolute; z-index: 100;
  background: white; border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  min-width: 200px; max-width: 240px;
  animation: popIn 0.25s cubic-bezier(0.34,1.56,0.64,1) both;
  pointer-events: none;
}
.house-popup.open { display: block; pointer-events: auto; }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.house-popup-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.house-popup-icon { font-size: 22px; }
.house-popup-title { font-weight: 700; font-size: 14px; color: var(--navy); }
.house-popup-rows { display: flex; flex-direction: column; gap: 5px; }
.house-popup-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; padding: 4px 0; border-bottom: 1px solid #f3f4f6;
}
.house-popup-row:last-child { border-bottom: none; }
.house-popup-label { color: var(--muted); }
.house-popup-val { font-weight: 600; color: var(--navy); }
.house-popup-val.ok { color: var(--mint); }
.house-popup-val.warn { color: #e85050; }
.house-popup-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 16px; color: var(--muted);
  cursor: pointer; line-height: 1;
}

/* person/child walking animation */
/* car bob â€” subtle only */
@keyframes carBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-3px); }
}
.car-anim { animation: carBob 3s ease-in-out infinite; transform-origin: center bottom; }

/* cloud drift */
@keyframes cloudDrift {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(18px); }
}
.cloud-1 { animation: cloudDrift 8s ease-in-out infinite; }
.cloud-2 { animation: cloudDrift 11s ease-in-out infinite reverse; }

/* phone glow */
@keyframes phoneGlow {
  0%,100% { opacity: 0.7; }
  50%     { opacity: 1; }
}
.phone-glow { animation: phoneGlow 2s ease-in-out infinite; }

@media (max-width: 768px) {
  .house-section { padding: 60px 16px; }
  .house-popup { min-width: 170px; max-width: 200px; font-size: 11px; }
  .house-popup-title { font-size: 13px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TABLET LANDSCAPE MODAL (mobile only)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tablet-landscape-btn {
  display: none; margin: 16px auto 0;
  background: var(--navy); color: white; border: none;
  border-radius: 100px; padding: 12px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  align-items: center; gap: 8px;
}
.tablet-landscape-btn:hover { background: var(--blue); }

.tablet-landscape-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,20,40,0.95);
}
.tablet-landscape-overlay.open { display: flex; }

.tl-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
}
.tl-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px; background: var(--navy); flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tl-logo { font-family: 'Fraunces', serif; font-size: 16px; color: white; font-weight: 700; }
.tl-logo span { color: var(--sky); }
.tl-user-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 100px;
  padding: 4px 12px 4px 4px; color: white; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 12px;
  transition: background 0.2s;
}
.tl-user-btn:hover { background: rgba(255,255,255,0.2); }
.tl-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; font-weight: 700;
}
.tl-close {
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  width: 32px; height: 32px; color: white; font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.tl-close:hover { background: rgba(255,255,255,0.25); }

.tl-nav {
  display: flex; gap: 4px; padding: 8px 16px;
  background: rgba(255,255,255,0.04); overflow-x: auto; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tl-nav-btn {
  background: rgba(255,255,255,0.07); border: none; border-radius: 8px;
  padding: 7px 14px; color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500;
  cursor: pointer; white-space: nowrap; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; flex-shrink: 0;
}
.tl-nav-btn.active { background: var(--sky); color: white; }

.tl-content {
  flex: 1; overflow-y: auto; padding: 16px;
  background: #f8faff;
}

/* pages inside landscape */
.tl-page { display: none; }
.tl-page.active { display: block; }

.tl-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.tl-card {
  background: white; border-radius: 14px; padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.tl-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.tl-card-title { font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); }
.tl-card-icon { font-size: 18px; }

.tl-login {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-height: 200px; gap: 16px;
}
.tl-login-title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); }
.tl-users { display: flex; gap: 20px; justify-content: center; }
.tl-user-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; border: none; background: none;
  transition: transform 0.2s;
}
.tl-user-item:hover { transform: scale(1.08); }
.tl-user-item-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tl-user-item-name { font-size: 11px; color: var(--muted); }

@media (max-width: 768px) {
  .tablet-landscape-btn { display: flex; }
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-section {
  background: var(--cream);
  padding: 100px 0 80px;
  border-top: 1px solid rgba(15,31,53,0.07);
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.how-step {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 36px 28px 28px;
  box-shadow: 0 4px 24px rgba(15,31,53,0.07);
  border: 1px solid rgba(15,31,53,0.06);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,31,53,0.12);
}
.how-step-number {
  position: absolute;
  top: -18px; left: 28px;
  width: 36px; height: 36px;
  background: var(--mint);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(52,201,142,0.4);
}
.how-step-icon {
  font-size: 36px;
  margin-bottom: 12px;
  margin-top: 6px;
}
.how-step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.how-step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.how-step-example {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.how-example-tag {
  background: rgba(52,201,142,0.1);
  color: #1a7a52;
  border: 1px solid rgba(52,201,142,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}
.how-step-arrow {
  font-size: 28px;
  color: var(--mint);
  padding: 0 12px;
  margin-top: 80px;
  flex-shrink: 0;
  opacity: 0.6;
}
.how-cta {
  text-align: center;
  margin-top: 52px;
}

/* ACCENT CTA BUTTON */
.btn-cta-accent {
  background: linear-gradient(135deg, var(--mint) 0%, #1a9e6a 100%) !important;
  color: white !important;
  font-size: 17px !important;
  padding: 18px 44px !important;
  border-radius: 100px !important;
  box-shadow: 0 8px 32px rgba(52,201,142,0.45) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s !important;
  display: inline-block;
}
.btn-cta-accent:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 44px rgba(52,201,142,0.55) !important;
}

/* SECTION TITLE KONTRAST */
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mint);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* HOW SECTION MOBILE */
@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    gap: 40px;
  }
  .how-step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .how-section { padding: 72px 0 60px; }
}

