/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a2e3b; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── VARIABLES ────────────────────────────────────── */
:root {
  --dark:        #1a4f7a;
  --light:       #3a9fd5;
  --light2:      #5ab8e8;
  --dark-text:   #0d2d45;
  --gray:        #5a7a8a;
  --light-gray:  #f0f6fa;
  --border:      #d4e8f5;
  --white:       #ffffff;
  --gradient:    linear-gradient(135deg, #1a4f7a 0%, #3a9fd5 100%);
  --gradient-r:  linear-gradient(135deg, #3a9fd5 0%, #1a4f7a 100%);
  --shadow-sm:   0 2px 8px rgba(26,79,122,.10);
  --shadow-md:   0 6px 24px rgba(26,79,122,.14);
  --shadow-lg:   0 20px 60px rgba(26,79,122,.16);
  --radius:      18px;
  --radius-sm:   10px;
}

/* ─── UTILITIES ────────────────────────────────────── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section      { padding: 100px 0; }
.section-muted { background: var(--light-gray); }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(58,159,213,.12);
  color: var(--light);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.2;
  color: var(--dark-text); margin-bottom: 16px;
}
.section-sub  { font-size: 1.05rem; color: var(--gray); max-width: 580px; line-height: 1.75; }
.text-center  { text-align: center; }
.mx-auto      { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: .97rem;
  cursor: pointer; border: none; transition: all .25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 6px 24px rgba(26,79,122,.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,79,122,.40); }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: rgba(26,79,122,.06); }
.btn-white { background: var(--white); color: var(--dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: rgba(255,255,255,.15); color: white;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

/* ─── REVEAL ANIMATION ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }

/* ─── HEADER / NAV ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center;
  padding: 0 28px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo img { height: 36px; width: auto; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--gray);
  transition: color .2s; text-decoration: none;
}
.nav-links a:hover { color: var(--dark); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn-nav {
  padding: 9px 20px; border-radius: 100px; font-size: .88rem;
  font-weight: 600; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif; transition: all .22s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-nav-ghost {
  background: transparent; color: var(--dark-text);
}
.btn-nav-ghost:hover { background: var(--light-gray); }
.btn-nav-primary {
  background: var(--gradient); color: white;
  box-shadow: 0 4px 16px rgba(26,79,122,.25);
}
.btn-nav-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,79,122,.35); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--dark-text);
  border-radius: 2px; transition: all .3s; display: block;
}
.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; flex-direction: column; gap: 0;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md); z-index: 999;
  padding: 12px 28px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 0; font-size: .97rem; font-weight: 500;
  color: var(--dark-text); border-bottom: 1px solid var(--border);
  text-decoration: none; transition: color .2s;
}
.mobile-menu a:hover { color: var(--light); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 96px;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(58,159,213,.12), transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,159,213,.12); border: 1px solid rgba(58,159,213,.28);
  color: var(--dark); border-radius: 100px;
  font-size: .82rem; font-weight: 600; padding: 7px 16px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  color: var(--dark-text); margin-bottom: 0;
}
.hero h1 .highlight {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: var(--gray);
  line-height: 1.75; margin: 20px auto 36px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-highlights {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 20px;
  margin-top: 32px;
}
.hero-hl-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: var(--gray);
}
.hero-hl-item svg { color: var(--light); flex-shrink: 0; }

/* ─── FEATURES GRID ────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 56px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(58,159,213,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 16px;
  transition: background .3s;
}
.feature-card:hover .feature-icon { background: rgba(58,159,213,.22); }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 8px; }
.feature-desc  { font-size: .875rem; color: var(--gray); line-height: 1.65; }

/* ─── FOR ADMINS ───────────────────────────────────── */
.admins-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.admins-badge {
  display: inline-block;
  background: rgba(26,79,122,.1); color: var(--dark);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.admins-features-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 28px;
}
.admin-feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--dark-text); line-height: 1.5;
}
.admin-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(58,159,213,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.admin-check svg { width: 11px; height: 11px; color: var(--light); }

/* ─── CAROUSEL ─────────────────────────────────────── */
.carousel-wrap {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.carousel-wrap::after {
  content: '';
  position: absolute; bottom: -16px; right: -16px; z-index: -1;
  width: 100%; height: 100%;
  border-radius: var(--radius);
  background: rgba(58,159,213,.1);
}
.carousel-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.carousel-slides { 
  position: relative; 
  min-height: 400px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide {
  position: absolute; 
  inset: 0;
  padding: 0;
  opacity: 0; 
  pointer-events: none;
  transition: opacity .5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 100%;
}

/* slide mockup elements */
.slide-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.slide-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.slide-title { font-weight: 700; font-size: .95rem; color: var(--dark-text); }
.slide-sub   { font-size: .75rem; color: var(--gray); }

.slide-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.slide-stat {
  background: var(--light-gray); border-radius: var(--radius-sm);
  padding: 10px 8px; text-align: center;
}
.slide-stat-num { font-size: 1.2rem; font-weight: 800; color: var(--dark); }
.slide-stat-lbl { font-size: .7rem; color: var(--gray); margin-top: 2px; }

.slide-progress { margin-bottom: 14px; }
.progress-lbl {
  display: flex; justify-content: space-between;
  font-size: .75rem; color: var(--gray); margin-bottom: 5px;
}
.progress-bar { height: 7px; background: var(--border); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 100px; background: var(--gradient); }

.slide-list { display: flex; flex-direction: column; gap: 7px; }
.slide-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--light-gray); border-radius: var(--radius-sm);
  padding: 8px 12px; font-size: .82rem;
}
.slide-row-left { display: flex; align-items: center; gap: 8px; color: var(--dark-text); font-weight: 500; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green  { background: #10b981; }
.dot-blue   { background: var(--light); }
.dot-orange { background: #f59e0b; }
.dot-red    { background: #ef4444; }
.slide-badge {
  font-size: .72rem; font-weight: 700; padding: 3px 8px;
  border-radius: 100px;
}
.badge-green  { background: rgba(16,185,129,.12); color: #059669; }
.badge-blue   { background: rgba(58,159,213,.12);  color: var(--dark); }
.badge-orange { background: rgba(245,158,11,.12);  color: #b45309; }

.carousel-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  background: rgba(240,246,250,.7);
}
.carousel-caption { font-size: .82rem; font-weight: 600; color: var(--dark-text); }
.carousel-controls { display: flex; align-items: center; gap: 10px; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(90,122,138,.25);
  border: none; cursor: pointer; padding: 0; transition: background .25s;
}
.carousel-dot.active { background: var(--light); }
.carousel-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: all .2s; flex-shrink: 0;
}
.carousel-btn:hover { background: var(--light-gray); color: var(--dark); }
.carousel-btn svg { width: 14px; height: 14px; }

/* ─── FOR RESIDENTS ────────────────────────────────── */
.residents-section { background: var(--dark); }
.residents-badge {
  display: inline-block;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.residents-title { color: white; }
.residents-sub   { color: rgba(255,255,255,.7); margin: 0 auto; }

.residents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.resident-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 26px 24px;
  backdrop-filter: blur(6px);
  transition: all .3s;
}
.resident-card:hover { background: rgba(255,255,255,.10); transform: translateY(-4px); }
.resident-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.resident-title { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.resident-desc  { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ─── PRICING ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 56px;
  align-items: start;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all .3s;
  background: var(--white);
  position: relative;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--light);
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f4fb 100%);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: white;
  font-size: .72rem; font-weight: 700;
  padding: 5px 18px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap;
}
.pricing-tier   { font-size: .82rem; font-weight: 700; color: var(--light); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-name   { font-size: 1.25rem; font-weight: 800; color: var(--dark-text); margin-bottom: 4px; }
.pricing-desc   { font-size: .875rem; color: var(--gray); margin-bottom: 20px; line-height: 1.6; }
.pricing-price  { font-size: 2.8rem; font-weight: 900; color: var(--dark-text); line-height: 1; }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price-text { font-size: 1.6rem; font-weight: 900; color: var(--dark-text); padding-top: 8px; display: block; }
.pricing-period { font-size: .85rem; color: var(--gray); margin-top: 4px; margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--dark-text); line-height: 1.5; }
.pf-check       { color: #10b981; font-size: .9rem; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.pf-check-blue  { color: var(--light); }

/* ─── CTA ──────────────────────────────────────────── */
.cta-block {
  background: var(--gradient);
  border-radius: 28px;
  padding: 60px 48px;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,79,122,.25);
}
.cta-block::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%; background: rgba(255,255,255,.07);
  pointer-events: none;
}
.cta-block::after {
  content: ''; position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%; background: rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900; color: white;
  margin-bottom: 14px; line-height: 1.2;
}
.cta-inner p {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  line-height: 1.7; margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT + FAQ ────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 800px; margin: 0 auto;
  margin-top: 48px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card.support { border-color: rgba(16,185,129,.3); }
.contact-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.contact-icon-comercial { background: rgba(26,79,122,.10); }
.contact-icon-support   { background: rgba(16,185,129,.10); }
.contact-card-title { font-size: 1.05rem; font-weight: 700; color: var(--dark-text); margin-bottom: 8px; }
.contact-card-desc  { font-size: .88rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.btn-contact {
  display: block; width: 100%;
  padding: 12px 20px; border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 600;
  text-align: center; text-decoration: none;
  transition: all .25s;
}
.btn-contact-primary { background: var(--gradient); color: white; box-shadow: 0 4px 14px rgba(26,79,122,.25); }
.btn-contact-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,79,122,.35); }
.btn-contact-support { background: #10b981; color: white; box-shadow: 0 4px 14px rgba(16,185,129,.25); }
.btn-contact-support:hover { background: #059669; transform: translateY(-1px); }

.faq-wrap { max-width: 760px; margin: 64px auto 0; }
.faq-title {
  text-align: center; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--dark-text); margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 600; color: var(--dark-text);
  text-align: left; gap: 16px; transition: color .2s;
}
.faq-question:hover { color: var(--light); }
.faq-icon { font-size: 1.2rem; color: var(--light); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .9rem; color: var(--gray); line-height: 1.75;
  padding: 0 24px;
}
.faq-answer a { color: var(--light); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }
.faq-item.open .faq-answer { max-height: 220px; padding: 0 24px 20px; }

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--dark-text);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px;
}
.footer-brand p {
  font-size: .87rem; color: rgba(255,255,255,.48);
  line-height: 1.7; margin-top: 14px; max-width: 280px;
}
.footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-col-title {
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.38);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: .87rem; color: rgba(255,255,255,.55);
  margin-bottom: 10px; transition: color .2s; text-decoration: none;
}
.footer-col a:hover { color: var(--light2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.32); }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .admins-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .admins-features-list { grid-template-columns: 1fr; }
  .cta-block { padding: 44px 28px; }
  .hero-highlights { gap: 12px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .residents-grid { grid-template-columns: 1fr; }
}
