/* ---- base.css ---- */
/* ============================================================
   base.css — Design tokens, reset, typography
   Edit this file to change colours, fonts, spacing globally
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Brand colours */
  --navy:        #1a2e5a;
  --navy-dark:   #111f3e;
  --blue:        #1d4ed8;
  --blue-light:  #1e40af;
  --blue-bg:     #eff6ff;
  --amber:       #f59e0b;
  --amber-bg:    #fffbeb;
  --green:       #16a34a;
  --red:         #ef4444;

  /* Neutral greys */
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #6b7280;
  --gray-500:    #4b5563;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-800:    #1f2937;
  --gray-900:    #111827;

  /* Radii */
  --radius:      8px;
  --radius-lg:   12px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast: 0.15s;
  --transition-base: 0.2s;

  /* Spacing scale */
  --section-py:  72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
}

/* ── Typography helpers ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 15px;
  color: var(--gray-500);
}

/* ── Layout utilities ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Shared icon box (plan-icon, why-feat-icon) ── */
.icon-box {
  width: 36px;
  height: 36px;
  background: var(--blue-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg { width: 18px; height: 18px; color: var(--blue); }

/* ── Base card (plan-card, hiw-card, test-card, space-card, why-feat) ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}


/* ---- components.css ---- */
/* ============================================================
   components.css — Reusable UI elements
   Buttons, form inputs, cards, nav, logo, badges
   ============================================================ */

/* ── Nav ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.logo-icon   { width: 28px; height: 28px; }
.logo-ease   { color: var(--navy); }
.logo-my     { color: var(--blue-light); }
.logo-office { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-phone {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.nav-phone:hover {
  background: var(--navy-dark) !important;
}

/* ── Buttons ── */
.btn-plan {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn-plan-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-plan-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-plan-fill {
  background: var(--navy);
  color: var(--white);
}

.btn-plan-fill:hover {
  background: var(--navy-dark);
}

.btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
  background: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-browse:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
  margin-top: 4px;
}

.btn-submit:hover   { background: var(--navy-dark); }
.btn-submit:disabled {
  background: var(--gray-400);
  cursor: not-allowed;
}

.btn-cta-white {
  background: var(--white);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cta-white:hover { background: var(--gray-100); }

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ── Form ── */
.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.city-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: none;
  height: 70px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Plan card ── */
.plan-card {
  padding: 28px;
  position: relative;
  transition: box-shadow var(--transition-base);
}

.plan-card:hover     { box-shadow: var(--shadow-md); }
.plan-card.featured  { border: 2px solid var(--navy); }

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--gray-900);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-icon { margin-bottom: 14px; }

.plan-name  { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.plan-desc  { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.plan-price { font-size: 2.2rem; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 1rem; vertical-align: top; margin-top: 6px; }
.plan-per   { font-size: 13px; color: var(--gray-400); font-weight: 400; margin-bottom: 20px; }
.plans-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 16px; }

.plan-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--gray-600);
}

.plan-features li.off {
  color: var(--gray-300);
  text-decoration: line-through;
}

.feat-check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.feat-cross { color: var(--gray-300); flex-shrink: 0; margin-top: 1px; }

/* ── Space card ── */
.space-card {
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.space-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.space-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.space-card:hover .space-img-wrap img { transform: scale(1.04); }

.space-price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-800);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.space-body   { padding: 16px; }

.space-city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.space-city svg { width: 14px; height: 14px; color: var(--gray-400); flex-shrink: 0; }

.space-areas { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }

.space-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.space-link:hover { color: var(--navy); }

/* ── City card ── */
.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.city-card:hover {
  border-color: var(--navy);
  background: var(--blue-bg);
}

.city-card-left { display: flex; align-items: center; gap: 8px; }
.city-dot  { width: 8px; height: 8px; background: var(--blue-light); border-radius: 50%; flex-shrink: 0; }
.city-name { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.city-price { font-size: 12px; color: var(--gray-500); margin-top: 1px; }
.city-arrow { color: var(--gray-300); font-size: 16px; }
.city-card:hover .city-arrow { color: var(--navy); }

/* ── Brand pill ── */
.brand-pill {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 11px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.brand-pill:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--blue-bg);
}

/* ── Why feat card ── */
.why-feat {
  padding: 20px;
  transition: box-shadow var(--transition-base);
}

.why-feat:hover { box-shadow: var(--shadow-sm); }

.why-feat-icon { margin-bottom: 12px; }
.why-feat h3 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.why-feat p  { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

/* ── Testimonial card ── */
.test-card { padding: 24px; }

.test-stars  { color: var(--amber); font-size: 15px; margin-bottom: 12px; }
.test-text   { font-size: 14px; color: var(--gray-700); line-height: 1.65; margin-bottom: 18px; }
.test-author { border-top: 1px solid var(--gray-100); padding-top: 14px; }
.test-name   { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.test-role   { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.15s;
}

.faq-q:hover { background: var(--gray-50); }
.faq-q span  { font-size: 14px; font-weight: 500; color: var(--gray-800); padding-right: 16px; }

.faq-chevron {
  color: var(--gray-400);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-chevron { color: var(--navy); }

.faq-a {
  display: none;
  padding: 14px 20px 16px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}

.faq-item.open .faq-a { display: block; }

/* ── Compare table ── */
.compare-table-wrap {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table { width: 100%; border-collapse: collapse; }

.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.compare-table th:not(:first-child) { text-align: center; }
.th-emo { background: var(--blue-bg); }

.emo-label {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--gray-900);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
}

.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
}

.compare-table td:not(:first-child)  { text-align: center; }
.compare-table td.emo-col            { background: #f0f7ff; }
.compare-table tr:last-child td      { border-bottom: none; }
.compare-table tr:hover td           { background: var(--gray-50); }
.compare-table tr:hover td.emo-col   { background: #e0f0ff; }

.ct-check     { color: var(--green); font-size: 18px; }
.ct-cross     { color: var(--red); font-size: 16px; }
.ct-sometimes { font-size: 13px; color: var(--gray-600); }
.ct-bold      { font-weight: 700; color: var(--navy); }

/* ── How it works card ── */
.hiw-card {
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

.hiw-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hiw-icon { font-size: 22px; margin-bottom: 10px; }
.hiw-card h3 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.hiw-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ── Floating WhatsApp ── */
.float-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--transition-base);
}

.float-wa:hover { transform: scale(1.08); }


/* ---- sections.css ---- */
/* ============================================================
   sections.css — Per-section layout styles
   Each section's layout is self-contained here
   ============================================================ */

/* ── Hero ── */
.hero {
  background: var(--white);
  padding: 56px 24px 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: flex-start;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.hero-trust-badge svg { color: var(--blue-light); }

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}

.bullet-num {
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-ratings {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-rating-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
}

.stars { color: var(--amber); font-size: 14px; }
.hero-rating-item strong { color: var(--gray-800); }

/* Hero Form Card */
.hero-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.form-privacy {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 10px;
  min-height: 18px;
}

.form-privacy.success { color: var(--green); }
.form-privacy.error   { color: var(--red); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 24px;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item { text-align: center; }
.stat-val  { font-size: 2rem; font-weight: 800; color: var(--navy); display: block; }
.stat-lbl  { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.stat-stars { color: var(--amber); font-size: 18px; }

/* ── Brands ── */
.brands-section {
  padding: 48px 24px;
  background: var(--white);
}

.brands-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 8px;
}

.brands-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 28px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* ── Plans ── */
.plans-section {
  padding: var(--section-py) 24px;
  background: var(--gray-50);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Spaces ── */
.spaces-section {
  padding: var(--section-py) 24px;
  background: var(--white);
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.spaces-browse { text-align: center; margin-top: 8px; }

/* ── City Finder ── */
.city-section {
  padding: 64px 24px;
  background: var(--gray-50);
}

.city-search-wrap {
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}

.city-search {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  color: var(--gray-800);
}

.city-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ── Comparison / Pricing ── */
.pricing-section {
  padding: var(--section-py) 24px;
  background: var(--white);
}

/* ── How It Works ── */
.hiw-section {
  padding: var(--section-py) 24px;
  background: var(--gray-50);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.hiw-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

/* ── Why Us ── */
.why-section {
  padding: var(--section-py) 24px;
  background: var(--white);
}

.why-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  height: 340px;
}

.why-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Testimonials ── */
.test-section {
  padding: var(--section-py) 24px;
  background: var(--gray-50);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── FAQ ── */
.faq-section {
  padding: var(--section-py) 24px;
  background: var(--white);
}

.faq-inner { max-width: 680px; }

/* ── CTA ── */
.cta-section {
  background: var(--navy);
  padding: var(--section-py) 24px;
  text-align: center;
}

.cta-inner { max-width: 600px; }

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
  color: rgba(255,255,255,0.74);
  max-width: 300px;
}

.footer-phone {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-top: 14px;
}

.footer-phone a {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 9px;
  transition: color 0.15s;
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,0.72);
}


/* ---- responsive.css ---- */
/* ============================================================
   responsive.css — All media queries
   Edit breakpoints here without touching layout files
   ============================================================ */

/* ── Tablet (≤960px) ── */
@media (max-width: 960px) {
  .hero-inner           { grid-template-columns: 1fr; }
  .hero h1              { font-size: 2rem; }
  .stats-bar-inner      { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .brands-grid          { grid-template-columns: repeat(4, 1fr); }
  .plans-grid           { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .spaces-grid          { grid-template-columns: 1fr 1fr; }
  .cities-grid          { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid             { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid::before     { display: none; }
  .why-photos           { height: 260px; }
  .why-feats            { grid-template-columns: repeat(2, 1fr); }
  .test-grid            { grid-template-columns: 1fr; }
  .footer-top           { grid-template-columns: 1fr 1fr; }
  .nav-links .nav-hide  { display: none; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  :root { --section-py: 52px; }

  .hero                 { padding: 40px 16px 48px; }
  .hero h1              { font-size: 1.7rem; }
  .brands-grid          { grid-template-columns: repeat(3, 1fr); }
  .spaces-grid          { grid-template-columns: 1fr; }
  .cities-grid          { grid-template-columns: 1fr 1fr; }
  .hiw-grid             { grid-template-columns: 1fr 1fr; }
  .why-feats            { grid-template-columns: 1fr; }
  .why-photos           { grid-template-columns: 1fr; height: 200px; }
  .why-photos img:last-child { display: none; }
  .footer-top           { grid-template-columns: 1fr; gap: 28px; }
  .form-row             { grid-template-columns: 1fr; }
  .cta-section h2       { font-size: 1.6rem; }
}

/* ── Very small (≤380px) ── */
@media (max-width: 380px) {
  .cities-grid          { grid-template-columns: 1fr; }
  .brands-grid          { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid             { grid-template-columns: 1fr; }
}

