/* ============================================================
   ClearStep — Shared Stylesheet
   clearstep.diy
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:           #FDFAF5;
  --bg-alt:       #F4F0E8;
  --primary:      #4A7C6F;
  --primary-dark: #2D5247;
  --primary-mid:  #3A6358;
  --primary-light:#C8DDD9;
  --primary-pale: #EAF3F1;
  --accent:       #E89A3C;
  --accent-dark:  #C5801E;
  --accent-pale:  #FDF3E3;
  --text:         #1A2E29;
  --text-mid:     #4B6059;
  --text-muted:   #7A9590;
  --white:        #FFFFFF;
  --border:       #DDE8E5;
  --success:      #6AAF8E;
  --error:        #E24B4A;
  --shadow-sm:    0 2px 8px rgba(45,82,71,0.07);
  --shadow-md:    0 6px 24px rgba(45,82,71,0.11);
  --shadow-lg:    0 16px 48px rgba(45,82,71,0.14);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    24px;
  --radius-pill:  100px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.nav-logo-text { font-size: 20px; font-weight: 700; color: var(--primary-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 15px; font-weight: 500; cursor: pointer; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 9px 22px; border-radius: var(--radius-pill);
  font-weight: 600 !important; font-size: 14px !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

/* ── INNER PAGE NAV ─────────────────────────────────────────── */
.page-nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.page-nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.page-nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.page-nav-logo-text { font-size: 20px; font-weight: 700; color: var(--primary-dark); }
.page-nav-actions { display: flex; align-items: center; gap: 14px; }
.page-nav-back {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s; text-decoration: none;
}
.page-nav-back:hover { color: var(--primary); }
.page-inner { min-height: calc(100vh - 68px); background: var(--bg); }

/* ── HAMBURGER & MOBILE MENU ────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; border-radius: var(--radius-sm); transition: background 0.2s;
}
.hamburger:hover { background: var(--bg-alt); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--primary-dark); border-radius: 2px; transition: all 0.25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: relative; top: 0; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(45,82,71,0.08); z-index: 199;
  flex-direction: column; padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-item {
  display: block; padding: 16px 24px; font-size: 16px; font-weight: 500;
  color: var(--text-mid); cursor: pointer; border: none;
  background: transparent; text-align: left; transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.mobile-menu-item:hover { background: var(--bg); color: var(--primary); }
.mobile-menu-cta {
  margin: 10px 16px 12px; padding: 14px 24px;
  background: var(--accent); color: white !important;
  border-radius: var(--radius-pill); text-align: center; font-weight: 600;
}
.mobile-menu-cta:hover { background: var(--accent-dark) !important; color: white !important; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border: none; text-decoration: none;
  font-family: inherit;
}
.btn-primary   { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent    { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,154,60,0.35); }
.btn-outline   { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-pale); transform: translateY(-1px); }
.btn-white     { background: var(--white); color: var(--primary-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost     { background: transparent; color: var(--text-muted); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger    { background: #FEE2E2; color: #991B1B; border: none; }
.btn-danger:hover { background: #FECACA; }
.btn-lg        { padding: 17px 36px; font-size: 17px; }
.btn-sm        { padding: 9px 18px; font-size: 14px; }
.btn-block     { width: 100%; justify-content: center; }
.btn:disabled  { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ── SHARED SECTION STYLES ──────────────────────────────────── */
.section { padding: 90px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--primary); margin-bottom: 14px; }
.section-title { font-size: 40px; font-weight: 800; letter-spacing: -1px; color: var(--primary-dark); line-height: 1.15; margin-bottom: 16px; }
.section-sub   { font-size: 17px; color: var(--text-mid); max-width: 540px; line-height: 1.7; margin-bottom: 56px; }
.text-center   { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 90px 32px 80px; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-pale); color: var(--primary);
  font-size: 13px; font-weight: 600; padding: 6px 14px;
  border-radius: var(--radius-pill); margin-bottom: 24px;
  letter-spacing: 0.3px; text-transform: uppercase;
}
.hero h1 { font-size: 54px; font-weight: 800; line-height: 1.1; color: var(--primary-dark); letter-spacing: -1.5px; margin-bottom: 22px; }
.hero h1 .highlight { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-social-proof { display: flex; align-items: center; gap: 10px; margin-top: 32px; }
.proof-avatars { display: flex; }
.proof-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid var(--bg); margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 13.5px; color: var(--text-mid); }
.proof-text strong { color: var(--text); }

/* ── PHONE MOCKUP ───────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-frame { width: 260px; background: var(--primary-dark); border-radius: 40px; padding: 12px; box-shadow: var(--shadow-lg); max-height: 520px; overflow: hidden; }
.phone-screen { background: var(--bg); border-radius: 28px; overflow: hidden; }
.phone-header { background: var(--primary); padding: 14px 14px 10px; color: white; }
.phone-header-label { font-size: 10px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.phone-header-title { font-size: 14px; font-weight: 700; }
.phone-room-img { background: linear-gradient(135deg,#8BA89E,#6B8F83); height: 90px; display: flex; align-items: center; justify-content: center; font-size: 34px; }
.phone-steps { padding: 10px; }
.phone-steps-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.phone-step { display: flex; gap: 8px; margin-bottom: 7px; background: var(--white); border-radius: 8px; padding: 8px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--primary-light); }
.phone-step.done { border-left-color: var(--success); opacity: 0.6; }
.phone-step-num { width: 18px; height: 18px; border-radius: 50%; background: var(--primary); color: white; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-step.done .phone-step-num { background: var(--success); }
.phone-step-text { font-size: 10px; color: var(--text); line-height: 1.4; }
.phone-insight { margin: 0 10px 10px; background: var(--accent-pale); border-radius: 8px; padding: 8px; border-left: 3px solid var(--accent); }
.phone-insight-label { font-size: 9px; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.phone-insight-text { font-size: 9px; color: var(--text-mid); line-height: 1.4; }
.floating-card { position: absolute; background: white; border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; }
.floating-card-1 { top: 30px; right: -40px; color: var(--primary-dark); display: flex; align-items: center; gap: 8px; }
.floating-card-2 { bottom: 70px; left: -50px; color: var(--text); display: flex; flex-direction: column; gap: 2px; }
.floating-card-2 span { font-size: 11px; font-weight: 400; color: var(--text-muted); }
.floating-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); display: inline-block; }

/* ── STEPS GRID ─────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.step-card h3 { font-size: 19px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* ── WHY SECTION ────────────────────────────────────────────── */
.why-section { background: var(--primary-dark); padding: 90px 32px; }
.why-section .section-label { color: var(--primary-light); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.65); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.why-points { display: flex; flex-direction: column; gap: 26px; }
.why-point { display: flex; gap: 16px; }
.why-icon-wrap { width: 46px; height: 46px; border-radius: var(--radius-sm); background: rgba(200,221,217,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-point h4 { font-size: 17px; font-weight: 700; color: white; margin-bottom: 5px; }
.why-point p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 26px 22px; }
.stat-card .stat-num { font-size: 40px; font-weight: 800; color: var(--accent); letter-spacing: -1px; line-height: 1; margin-bottom: 8px; }
.stat-card .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.stat-card.full { grid-column: 1 / -1; }

/* ── EXAMPLE OUTPUT ─────────────────────────────────────────── */
.example-section { padding: 90px 32px; background: var(--bg-alt); }
.example-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.example-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 48px; text-align: left; }
.example-card-header { background: var(--primary); padding: 18px 26px; display: flex; align-items: center; justify-content: space-between; }
.example-card-header h3 { color: white; font-size: 16px; font-weight: 700; }
.example-card-header span { background: rgba(255,255,255,0.2); color: white; font-size: 12px; padding: 4px 12px; border-radius: var(--radius-pill); }
.example-img-placeholder { background: linear-gradient(135deg,#C5D5D0,#A8BEB8); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 56px; border-bottom: 1px solid var(--border); }
.example-steps-area { padding: 26px; }
.example-steps-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.example-step { display: flex; gap: 14px; margin-bottom: 14px; padding: 16px 18px; background: var(--bg); border-radius: var(--radius); border-left: 4px solid var(--primary-light); transition: border-color 0.2s; }
.example-step:hover { border-left-color: var(--primary); }
.ex-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--primary); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ex-step-text strong { display: block; font-size: 15px; color: var(--primary-dark); margin-bottom: 4px; }
.ex-step-text span { font-size: 13.5px; color: var(--text-mid); line-height: 1.5; }
.example-insight { margin-top: 6px; padding: 16px 18px; background: var(--accent-pale); border-radius: var(--radius); border-left: 4px solid var(--accent); display: flex; gap: 12px; }
.example-insight-icon { font-size: 20px; }
.example-insight-body strong { display: block; font-size: 12px; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.example-insight-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* ── EMAIL CAPTURE ──────────────────────────────────────────── */
.email-section { padding: 80px 32px; background: var(--primary-pale); }
.email-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.email-download-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-pale); color: var(--accent-dark); font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 20px; border: 1px solid rgba(232,154,60,0.3); }
.email-inner h2 { font-size: 34px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.8px; margin-bottom: 12px; }
.email-inner p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.email-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.email-input { flex: 1; padding: 14px 20px; border: 2px solid var(--border); border-radius: var(--radius-pill); font-size: 15px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; font-family: inherit; }
.email-input:focus { border-color: var(--primary); }
.email-small { font-size: 12.5px; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.testimonial-stars { font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--text); }
.author-tag { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-section { padding: 90px 32px; background: var(--bg-alt); }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; max-width: 1100px; margin: 52px auto 0; align-items: start; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 22px; border: 2px solid var(--border); position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.03); box-shadow: var(--shadow-md); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card.lifetime { border-color: var(--accent); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.pricing-card.lifetime .pricing-badge { background: var(--accent); }
.pricing-tier { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-tier { color: var(--primary); }
.pricing-card.lifetime .pricing-tier { color: var(--accent-dark); }
.price-amount { font-size: 38px; font-weight: 800; color: var(--primary-dark); letter-spacing: -1.5px; line-height: 1; }
.price-period { font-size: 14px; color: var(--text-muted); margin-left: 2px; }
.pricing-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.5; margin: 10px 0 22px; min-height: 44px; }
.pricing-features { list-style: none; margin-bottom: 26px; }
.pricing-features li { font-size: 13.5px; color: var(--text-mid); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--bg-alt); }
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-features li.gold .check { color: var(--accent); }
.pricing-btn { width: 100%; justify-content: center; padding: 12px 18px; font-size: 14.5px; }
.pricing-note { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 30px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.pricing-note strong { color: var(--primary); }
.pricing-second-home-note { font-size: 12px; color: var(--primary); font-weight: 600; text-align: center; padding: 8px 12px; background: var(--primary-pale); border-radius: var(--radius-sm); margin-bottom: 12px; line-height: 1.4; }
.pricing-one-home-note { font-size: 12px; color: var(--text-muted); text-align: center; padding: 6px 0; margin-bottom: 10px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 90px 32px; max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q { font-size: 16px; font-weight: 700; color: var(--primary-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-q:hover { color: var(--primary); }
.faq-toggle { font-size: 20px; font-weight: 400; color: var(--primary); transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; line-height: 1; }
.faq-toggle.open { transform: rotate(45deg); }
.faq-a { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.25s ease; margin-top: 0; }
.faq-a.open { max-height: 400px; margin-top: 12px; }

/* ── CTA BAND ─────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 32px; text-align: center; }
.cta-band h2 { font-size: 38px; font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 14px; line-height: 1.15; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-note { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--primary-dark); padding: 48px 32px 30px; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-logo { font-size: 20px; font-weight: 800; color: white; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-logo-mark { width: 30px; height: 30px; background: rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.footer-tagline { font-size: 13.5px; line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; font-size: 13px; display: flex; justify-content: space-between; align-items: center; }

/* ── CHECKOUT / EMAIL CAPTURE PAGES ─────────────────────────── */
.email-capture-page { max-width: 560px; margin: 0 auto; padding: 80px 32px; text-align: center; }
.page-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; margin-bottom: 24px; transition: color 0.2s; text-decoration: none; }
.page-back-link:hover { color: var(--primary); }
.ec-icon { font-size: 56px; margin-bottom: 20px; }
.ec-title { font-size: 32px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.8px; margin-bottom: 10px; }
.ec-sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.ec-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border); text-align: left; }
.ec-label { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.ec-input {
  width: 100%; padding: 15px 20px; border: 2px solid var(--border);
  border-radius: var(--radius-pill); font-size: 16px; color: var(--text);
  background: var(--bg); outline: none; transition: border-color 0.2s;
  margin-bottom: 16px; font-family: inherit;
}
.ec-input:focus { border-color: var(--primary); background: var(--white); }
.ec-input.error { border-color: var(--error); }
.ec-why { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.ec-why strong { color: var(--text-mid); }
.ec-trust { display: flex; justify-content: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.ec-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.scan-pricing-reminder { background: var(--bg); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 22px; display: flex; justify-content: space-between; align-items: center; }
.scan-pricing-reminder .left span { display: block; font-size: 12px; color: var(--text-muted); }
.scan-pricing-reminder .left strong { font-size: 15px; color: var(--text); }
.scan-pricing-reminder .right { font-size: 24px; font-weight: 800; color: var(--primary); }

/* ── SCAN PAGE ───────────────────────────────────────────────── */
.scan-page { max-width: 680px; margin: 0 auto; padding: 56px 32px 80px; }
.scan-header { text-align: center; margin-bottom: 44px; }
.scan-header h1 { font-size: 34px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.8px; margin-bottom: 10px; }
.scan-header p { font-size: 16px; color: var(--text-mid); line-height: 1.6; }
.scan-card { background: var(--white); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.scan-step-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 14px; }
.room-types { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.room-chip { padding: 8px 16px; border-radius: var(--radius-pill); border: 2px solid var(--border); background: var(--white); font-size: 14px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.room-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.room-chip.active { border-color: var(--primary); background: var(--primary); color: white; }
.photo-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 24px; }
.photo-slot { border: 2.5px dashed var(--primary-light); border-radius: var(--radius); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: all 0.2s; background: var(--primary-pale); position: relative; }
.photo-slot:hover { border-color: var(--primary); background: #E0EDE9; }
.photo-slot.filled { border-style: solid; border-color: var(--primary); background: var(--white); }
.photo-slot .slot-icon { font-size: 28px; }
.photo-slot .slot-label { font-size: 12px; font-weight: 600; color: var(--primary); }
.photo-slot .slot-sub { font-size: 11px; color: var(--text-muted); }
.photo-slot .slot-delete { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; background: #FEE2E2; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #991B1B; font-weight: 700; cursor: pointer; }
.photo-slot.optional { opacity: 0.7; }
.same-room-note { display: flex; gap: 10px; background: var(--primary-pale); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 28px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.same-room-note-icon { font-size: 18px; flex-shrink: 0; }
.upload-tip { display: flex; gap: 10px; background: var(--accent-pale); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 28px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.scan-divider { border: none; border-top: 1px solid var(--border); margin: 26px 0; }
.scan-trust { display: flex; justify-content: center; gap: 22px; margin-top: 18px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }

/* ── RESULTS PAGE ────────────────────────────────────────────── */
.results-page { max-width: 680px; margin: 0 auto; padding: 50px 32px 80px; }
.results-header { text-align: center; margin-bottom: 32px; }
.results-room-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-pale); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.results-header h1 { font-size: 32px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.8px; margin-bottom: 10px; }
.results-header p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.results-steps-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 18px; }
.results-steps-header { padding: 16px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.results-steps-header h3 { font-size: 15px; font-weight: 700; color: var(--primary-dark); }
.results-progress { font-size: 13px; color: var(--text-muted); }
.results-step { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; gap: 14px; transition: background 0.2s; cursor: pointer; align-items: flex-start; }
.results-step:last-child { border-bottom: none; }
.results-step:hover { background: var(--bg); }
.results-step.completed { opacity: 0.5; }
.results-step.completed .rs-text strong { text-decoration: line-through; }
.rs-num { width: 26px; height: 26px; border-radius: 50%; background: var(--primary); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; transition: all 0.2s; }
.results-step.completed .rs-num { background: var(--success); }
.rs-text strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; }
.rs-text span { font-size: 13.5px; color: var(--text-mid); line-height: 1.55; }
.rs-time { margin-top: 7px; display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); }
.results-insight { background: var(--accent-pale); border-radius: var(--radius-lg); padding: 22px; border-left: 4px solid var(--accent); margin-bottom: 22px; display: flex; gap: 12px; }
.ri-icon { font-size: 26px; flex-shrink: 0; }
.ri-body strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent-dark); margin-bottom: 5px; }
.ri-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.results-link-banner { background: var(--primary-pale); border: 1px solid var(--primary-light); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 12px; }
.rlb-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.rlb-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 3px; }
.rlb-body span { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.upsell-card { background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid)); border-radius: var(--radius-lg); padding: 26px; color: white; text-align: center; }
.upsell-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.upsell-card p { font-size: 14px; opacity: 0.8; margin-bottom: 18px; line-height: 1.6; }

/* ── DASHBOARD ───────────────────────────────────────────────── */
.dashboard-layout { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 68px); }
.dash-sidebar { background: var(--white); border-right: 1px solid var(--border); padding: 26px 18px; position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto; }
.dash-sidebar-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; padding: 0 8px; }
.dash-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.15s; margin-bottom: 3px; text-decoration: none; }
.dash-nav-item.active { background: var(--primary-pale); color: var(--primary); font-weight: 600; }
.dash-nav-item:hover:not(.active) { background: var(--bg); }
.dash-nav-item .nav-icon { font-size: 17px; }
.dash-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.dash-plan-badge { background: var(--primary-pale); border-radius: var(--radius-sm); padding: 14px; }
.dpb-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.dpb-plan { font-size: 15px; font-weight: 700; color: var(--primary); margin: 2px 0; }
.dpb-renews { font-size: 12px; color: var(--text-muted); }
.dash-main { padding: 34px 38px; background: var(--bg); overflow-y: auto; }
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.dash-greeting { font-size: 24px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.5px; margin-bottom: 4px; }
.dash-sub { font-size: 14px; color: var(--text-muted); }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 30px; }
.dash-stat { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.dash-stat-icon { font-size: 22px; margin-bottom: 8px; }
.dash-stat-num { font-size: 28px; font-weight: 800; color: var(--primary-dark); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.dash-stat-label { font-size: 12.5px; color: var(--text-muted); }
.dash-section-title { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 30px; }
.room-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; text-decoration: none; display: block; }
.room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.room-card-img { height: 80px; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.room-card-body { padding: 13px; }
.room-card-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.room-card-meta { font-size: 12px; color: var(--text-muted); }
.room-progress-bar { height: 5px; background: var(--bg-alt); border-radius: 3px; margin-top: 8px; overflow: hidden; }
.room-progress-fill { height: 100%; background: var(--primary); border-radius: 3px; }
.room-progress-fill.complete { background: var(--success); }
.room-card.add-new { border: 2px dashed var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; min-height: 140px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.room-card.add-new:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.recent-scans { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.scan-row { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--border); transition: background 0.15s; cursor: pointer; }
.scan-row:last-child { border-bottom: none; }
.scan-row:hover { background: var(--bg); }
.scan-row-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.scan-row-main { flex: 1; }
.scan-row-main strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.scan-row-main span { font-size: 12.5px; color: var(--text-muted); }
.scan-row-badge { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-pill); }
.badge-done   { background: #E8F5EF; color: #3A8A5D; }
.badge-inprog { background: var(--accent-pale); color: var(--accent-dark); }
.badge-new    { background: var(--primary-pale); color: var(--primary); }

/* ── AUTH PAGES (login / signup) ─────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--bg); }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); width: 100%; max-width: 440px; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; justify-content: center; text-decoration: none; }
.auth-logo-mark { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.auth-logo-text { font-size: 22px; font-weight: 800; color: var(--primary-dark); }
.auth-title { font-size: 26px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.5px; margin-bottom: 6px; text-align: center; }
.auth-sub { font-size: 15px; color: var(--text-mid); text-align: center; margin-bottom: 30px; line-height: 1.6; }
.auth-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.auth-input {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 15px; color: var(--text);
  background: var(--bg); outline: none; transition: border-color 0.2s;
  margin-bottom: 16px; font-family: inherit;
}
.auth-input:focus { border-color: var(--primary); background: var(--white); }
.auth-input.error { border-color: var(--error); }
.auth-error { background: #FEE2E2; border: 1px solid #FECACA; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; color: #991B1B; margin-bottom: 16px; display: none; }
.auth-error.show { display: block; }
.auth-success { background: #E8F5EF; border: 1px solid #A8D5BB; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; color: #2D6A4A; margin-bottom: 16px; display: none; }
.auth-success.show { display: block; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider-line { flex: 1; height: 1px; background: var(--border); }
.auth-divider-text { font-size: 13px; color: var(--text-muted); }
.auth-link { color: var(--primary); font-weight: 600; text-decoration: none; }
.auth-link:hover { text-decoration: underline; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-muted); }
.auth-forgot { display: block; text-align: right; font-size: 13px; color: var(--primary); text-decoration: none; margin-top: -8px; margin-bottom: 18px; font-weight: 600; }
.auth-forgot:hover { text-decoration: underline; }

/* ── ALERT / NOTICE BANNERS ──────────────────────────────────── */
.notice { border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.notice-success { background: #E8F5EF; border: 1px solid #A8D5BB; color: #2D6A4A; }
.notice-warning { background: #FEF3E2; border: 1px solid #F5C842; color: #7A5000; }
.notice-error   { background: #FEE2E2; border: 1px solid #FECACA; color: #991B1B; }
.notice-info    { background: var(--primary-pale); border: 1px solid var(--primary-light); color: var(--primary-dark); }

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 500; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); max-width: 560px; width: 100%; overflow: hidden; box-shadow: var(--shadow-lg); }
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); }
.modal-close { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-alt); border: none; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.modal-close:hover { background: var(--border); }
.modal-body { padding: 24px; }
.modal-actions { display: flex; gap: 10px; }

/* ── PRIVACY / TERMS PAGES ───────────────────────────────────── */
.privacy-page { max-width: 760px; margin: 0 auto; padding: 60px 32px 80px; }
.privacy-page h1 { font-size: 36px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.8px; margin-bottom: 8px; }
.privacy-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.privacy-page h2 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin: 32px 0 12px; }
.privacy-page p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.privacy-highlight { background: var(--primary-pale); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 20px 0; }
.privacy-highlight p { margin: 0; font-size: 15px; color: var(--primary-dark); font-weight: 500; line-height: 1.65; }

/* ── LOADING SPINNER ─────────────────────────────────────────── */
.spinner-overlay { position: fixed; inset: 0; background: rgba(253,250,245,0.85); z-index: 999; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.spinner-overlay.show { display: flex; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--primary-light); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-text { font-size: 15px; font-weight: 600; color: var(--primary-dark); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 16px; height: 58px; }
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .page-nav { padding: 0 16px; height: 58px; }
  .page-nav-logo-text { font-size: 17px; }
  .page-inner { min-height: calc(100vh - 58px); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 40px; text-align: center; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { width: 100%; }
  .phone-frame { width: 200px; max-height: 340px; }
  .floating-card-1 { top: 10px; right: -10px; font-size: 11px; padding: 8px 10px; }
  .floating-card-2 { bottom: 20px; left: -10px; font-size: 11px; padding: 8px 10px; }
  .section { padding: 56px 20px; }
  .section-title { font-size: 28px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-section { padding: 56px 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .example-section { padding: 56px 20px; }
  .email-section { padding: 56px 20px; }
  .email-inner h2 { font-size: 24px; }
  .email-form { flex-direction: column; }
  .email-form .btn { width: 100%; justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .pricing-section { padding: 56px 20px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { transform: none; }
  .faq-section { padding: 56px 20px; }
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 26px; }
  footer { padding: 40px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .scan-page { padding: 32px 16px 60px; }
  .scan-card { padding: 24px 18px; }
  .scan-trust { flex-wrap: wrap; gap: 12px; }
  .email-capture-page { padding: 48px 20px 60px; }
  .ec-title { font-size: 24px; }
  .ec-card { padding: 24px 18px; }
  .auth-card { padding: 32px 24px; }
  .results-page { padding: 32px 16px 60px; }
  .results-header h1 { font-size: 26px; }
  .dash-main { padding: 20px 16px; }
  .dash-greeting { font-size: 20px; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .privacy-page { padding: 40px 20px 60px; }
  .privacy-page h1 { font-size: 26px; }
  .modal { margin: 0 16px; }
  .modal-actions { flex-direction: column; }
  .modal-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 375px) {
  .hero h1 { font-size: 30px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .scan-card { padding: 18px 14px; }
  .ec-card { padding: 20px 14px; }
}
