/* =============================================
   ABRIGO SEGURO — Landing Page
   Desenvolvido por Hangar Interactive
   ============================================= */

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

:root {
  --red:       #E53935;
  --red-dark:  #C62828;
  --red-light: rgba(229,57,53,0.12);
  --orange:    #FF6D00;
  --green:     #2E7D32;
  --green-light: rgba(46,125,50,0.15);
  --blue:      #1565C0;
  --purple:    #6A1B9A;
  --bg:        #0A0A0B;
  --bg-2:      #111114;
  --bg-card:   #16161A;
  --border:    rgba(255,255,255,0.07);
  --text:      #F0F0F2;
  --text-muted:#888899;
  --text-dim:  #444455;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav.scrolled { background: rgba(10,10,11,0.97); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.btn-nav:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav-drawer.open { display: flex; }

.drawer-link {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.drawer-link:hover { color: var(--text); }
.drawer-cta { color: var(--red) !important; font-weight: 600; border-bottom: none; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}

.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover { background: var(--red); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-rain {
  position: absolute;
  inset: 0;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229,57,53,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--red);
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* MOCKUP */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-glow-red {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(229,57,53,0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.mockup-phone {
  width: 280px;
  background: #0D0D0F;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(229,57,53,0.1);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-screen { padding: 20px 16px 0; }

.mockup-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mockup-logo {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mockup-alert-card {
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}

.alert-orange { background: rgba(255,109,0,0.15); border: 1px solid rgba(255,109,0,0.3); }

.mockup-alert-level {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.mockup-alert-city {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mockup-alert-desc { font-size: 11px; color: var(--text); line-height: 1.4; }

.mockup-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mockup-shelter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mockup-shelter:last-of-type { border-bottom: none; }

.mockup-shelter-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-shelter-dot.green { background: #4CAF50; }
.mockup-shelter-dot.red { background: var(--red); }

.mockup-shelter-info { flex: 1; }
.mockup-shelter-name { font-size: 11px; font-weight: 500; color: var(--text); }
.mockup-shelter-meta { font-size: 10px; color: var(--text-muted); margin-top: 1px; }

.mockup-shelter-badge {
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}

.mockup-shelter-badge.green { background: rgba(76,175,80,0.2); color: #4CAF50; }
.mockup-shelter-badge.red { background: rgba(229,57,53,0.2); color: var(--red); }

.mockup-tabs {
  display: flex;
  border-top: 1px solid var(--border);
  margin: 12px -16px 0;
  padding: 12px 16px;
  gap: 0;
}

.mockup-tab {
  flex: 1;
  text-align: center;
  font-size: 16px;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.mockup-tab.active { opacity: 1; }

/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(229,57,53,0.3);
  transform: translateY(-4px);
}

.feature-card--large { grid-column: span 2; }
.feature-card--wide { grid-column: span 2; }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrap.red { background: rgba(229,57,53,0.15); }
.feature-icon-wrap.blue { background: rgba(21,101,192,0.15); }
.feature-icon-wrap.orange { background: rgba(255,109,0,0.15); }
.feature-icon-wrap.green { background: rgba(46,125,50,0.15); }
.feature-icon-wrap.purple { background: rgba(106,27,154,0.15); }

.feature-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  border-radius: 6px;
  padding: 3px 10px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 120px 0;
  background: var(--bg);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 0 24px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-arrow {
  font-size: 24px;
  color: var(--text-dim);
  padding-top: 16px;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px rgba(229,57,53,0.3);
  color: transparent;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   CITIES
   ============================================= */
.cities {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition);
}

.city-card--active { border-color: rgba(46,125,50,0.3); }
.city-card--soon { opacity: 0.6; }

.city-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.city-status.active { color: #4CAF50; }
.city-status.soon { color: var(--text-muted); }

.city-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.city-status.active .city-dot { animation: pulse-dot 2s infinite; }

.city-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.city-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.city-stats {
  display: flex;
  gap: 16px;
}

.city-stat { text-align: left; }
.city-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.city-stat-label { font-size: 11px; color: var(--text-muted); }

.city-coming {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
}

.cities-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cities-cta p { font-size: 16px; color: var(--text-muted); }

/* =============================================
   MANAGERS
   ============================================= */
.managers {
  padding: 120px 0;
  background: var(--bg);
}

.managers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.managers-text .section-tag { text-align: left; }

.managers-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.managers-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.managers-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.managers-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.list-icon {
  color: #4CAF50;
  font-weight: 700;
  flex-shrink: 0;
}

/* ADMIN MOCKUP */
.admin-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.admin-header {
  background: #1A1A1E;
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-logo {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.admin-subtitle { font-size: 11px; color: var(--text-muted); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.admin-stat {
  background: var(--bg-card);
  padding: 16px;
  text-align: center;
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}

.admin-stat-num.red { color: var(--red); }
.admin-stat-num.green { color: #4CAF50; }
.admin-stat-num.orange { color: var(--orange); }
.admin-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.admin-card-mini {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.admin-card-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.admin-card-meta { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }

.admin-bar {
  height: 4px;
  background: #2A2A2E;
  border-radius: 2px;
}

.admin-bar-fill {
  height: 4px;
  background: #4CAF50;
  border-radius: 2px;
}

.admin-alert-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 12px;
}

.admin-alert-mini.orange { color: var(--orange); }
.admin-alert-mini span:last-of-type { flex: 1; }

.admin-deactivate {
  background: rgba(229,57,53,0.1);
  color: var(--red);
  border: 1px solid rgba(229,57,53,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  cursor: pointer;
}

/* =============================================
   DOWNLOAD
   ============================================= */
.download {
  position: relative;
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-rain { position: absolute; inset: 0; }

.download-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: 0 0 40px rgba(229,57,53,0.3);
}

.download h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.download p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.download-btn:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.download-btn.android { border-color: rgba(76,175,80,0.3); }
.download-btn.disabled { opacity: 0.4; cursor: not-allowed; }
.download-btn.disabled:hover { transform: none; }

.download-btn-sub { display: block; font-size: 11px; color: var(--text-muted); }
.download-btn-store { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 700; }

.download-note { font-size: 13px; color: var(--text-dim); }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text .section-tag { text-align: left; }

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-icon { font-size: 16px; }
.contact-item a { color: var(--text-muted); transition: color var(--transition); }
.contact-item a:hover { color: var(--red); }

.contact-credit {
  font-size: 13px;
  color: var(--text-dim) !important;
  margin-bottom: 0 !important;
}

.contact-credit a { color: var(--red); }
.contact-credit a:hover { text-decoration: underline; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-feedback {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.form-feedback.success { color: #4CAF50; }
.form-feedback.error { color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 240px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover { text-decoration: underline; }

/* =============================================
   RAIN ANIMATION
   ============================================= */
.rain-drop {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(229,57,53,0.15));
  animation: rain-fall linear infinite;
  pointer-events: none;
}

@keyframes rain-fall {
  0% { transform: translateY(-100px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(110vh); opacity: 0; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large, .feature-card--wide { grid-column: span 2; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .managers-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large, .feature-card--wide { grid-column: span 1; }
  .steps { flex-direction: column; gap: 32px; }
  .step { padding: 0; }
  .step-arrow { display: none; }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 16px; }
  .hero-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .contact-form { padding: 20px; }
  .footer-links { grid-template-columns: 1fr; }
}
