/* ===== ResQLink Landing Page Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B80710;
  --red-glow: rgba(229,9,20,0.35);
  --black: #050505;
  --dark: #1A1A1A;
  --dark2: #111111;
  --white: #FFFFFF;
  --light: #F4F4F4;
  --grey: #888888;
  --text-main: #FFFFFF;
  --text-muted: rgba(255,255,255,0.6);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
}

:root.light-mode {
  --black: #FFFFFF;
  --dark: #F9FAFB;
  --dark2: #F3F4F6;
  --white: #111827;
  --light: #374151;
  --grey: #4B5563;
  --text-main: #111827;
  --text-muted: #4B5563;
  --glass: rgba(0,0,0,0.03);
  --glass-border: rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== LUCIDE ICONS ===== */
.lucide-icon { width: 24px; height: 24px; stroke: var(--red); stroke-width: 2; fill: none; }
.lucide-icon.sm { width: 20px; height: 20px; }
.lucide-icon.lg { width: 36px; height: 36px; }

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

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: var(--black);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.nav.scrolled { padding: 10px 0; background: var(--black); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; }
.nav-logo .logo-icon {
  width: 38px; height: 38px; background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s; }
.nav-links a:hover { color: var(--text-main); }
.nav-cta {
  background: var(--red); color: #fff; padding: 10px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer;
  transition: all 0.3s; display: inline-block;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 25px var(--red-glow); }
/* ===== NAV REDESIGN ===== */
.nav-links { gap: 4px; }
.nav-link-item {
  display: flex !important;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link-item:hover { color: var(--white); background: var(--glass); }

/* Emergency links — red tint */
.nav-emergency-link { color: rgba(255,255,255,0.75); }
.nav-emergency-link:hover { color: #fff; background: rgba(229,9,20,0.12) !important; }
.nav-em-icon { width: 15px !important; height: 15px !important; color: var(--red); flex-shrink: 0; }

/* Vertical divider between nav groups */
.nav-divider-line {
  width: 1px;
  height: 20px;
  background: var(--glass-border);
  margin: 0 6px;
  flex-shrink: 0;
  align-self: center;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.dropdown-arrow { width: 13px !important; height: 13px !important; transition: transform 0.25s; flex-shrink: 0; color: var(--grey); }
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #141414;
  border: 1px solid var(--glass-border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 14px 14px;
  padding: 6px 0 10px;
  min-width: 220px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.7);
  z-index: 200;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.18s;
  white-space: nowrap;
}
.drop-icon { width: 14px !important; height: 14px !important; color: var(--red); opacity: 0.6; flex-shrink: 0; transition: opacity 0.18s; }
.dropdown-menu li a:hover { color: var(--white); background: rgba(229,9,20,0.08); padding-left: 22px; }
.dropdown-menu li a:hover .drop-icon { opacity: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0;
  background: url('../images/hero-bg.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.8) 40%, rgba(5,5,5,0.3) 100%);
  z-index: 1;
}

:root.light-mode .hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.5) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-main-content {
  max-width: 650px;
}

.hero-logo-graphic {
  width: 180px;
  margin-bottom: 5px;
  mix-blend-mode: screen; 
  filter: contrast(1.1) brightness(1.1);
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 900;
  margin-bottom: 0;
  letter-spacing: -4px;
  color: var(--white);
  line-height: 0.85;
}

.hero h1 span.brand-red { color: var(--red); }

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px; /* Added spacing */
  margin-bottom: 28px;
  color: var(--white);
  line-height: 1.1;
  min-height: 3.5rem; /* Prevent layout shift */
}

.type-cursor {
  color: var(--red);
  animation: blink 0.7s infinite;
  margin-left: 5px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--white);
  max-width: 500px;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.2);
}

.btn-primary:hover {
  background: #f40a16;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4);
}

.btn-primary i {
  transition: transform 0.3s;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline i {
  color: var(--red);
}

.hero-features-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  max-width: 850px;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-feature-item i {
  color: var(--red);
  width: 24px;
  height: 24px;
}

.hero-feature-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 768px) {
  .hero::after {
    background: rgba(5,5,5,0.85);
  }
  .hero .container {
    align-items: center;
    text-align: center;
  }
  .hero-features-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

/* ===== STRIP SOS CTA ===== */
.strip-sos-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 56px;
  background: var(--dark2);
  border-bottom: 1px solid var(--glass-border);
}
.strip-sos-btn {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(229,9,20,0.5);
}
.strip-sos-btn:hover { transform: scale(1.07); box-shadow: 0 0 60px rgba(229,9,20,0.7); }
.strip-sos-label {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}
.strip-sos-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid var(--red);
  opacity: 0.6;
  animation: sos-ring 2.4s ease-out infinite;
}
.strip-sos-ring2 {
  inset: -36px;
  animation-delay: 0.8s;
}
.strip-sos-hint {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.feature-strip-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.feature-strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px;
  flex: 1;
  min-width: 0;
}
.strip-icon {
  color: var(--red);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.strip-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.strip-item strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.strip-item span {
  font-size: 0.7rem;
  color: var(--grey);
  white-space: nowrap;
}
.strip-divider {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 32px; height: 2px; background: var(--red); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 20px; }
.section-desc { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; line-height: 1.7; }
.section-desc.center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ===== PROBLEM ===== */
.problem { background: linear-gradient(180deg, var(--black) 0%, var(--dark2) 100%); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.problem-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 28px; transition: all 0.3s;
}
.problem-card:hover { border-color: rgba(229,9,20,0.3); transform: translateY(-4px); }
.problem-card .icon { font-size: 1.8rem; margin-bottom: 14px; }
.problem-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.problem-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== SOLUTION ===== */
.solution { background: var(--dark2); }
.solution-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.solution-features { display: flex; flex-direction: column; gap: 18px; }
.solution-feature {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px;
  border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.solution-feature:hover { border-color: rgba(229,9,20,0.3); }
.solution-feature .feat-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(229,9,20,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.solution-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.solution-feature p { font-size: 0.85rem; color: var(--text-muted); }
.solution-visual {
  background: linear-gradient(145deg, rgba(229,9,20,0.08), var(--glass));
  border: 1px solid var(--glass-border); border-radius: 24px;
  padding: 40px; display: flex; align-items: center; justify-content: center;
  min-height: 400px; position: relative; overflow: hidden;
}
.sos-circle {
  width: 180px; height: 180px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat'; font-weight: 900; font-size: 2.5rem; color: #fff;
  position: relative; cursor: pointer; transition: transform 0.3s;
  box-shadow: 0 0 60px var(--red-glow);
}
.sos-circle:hover { transform: scale(1.05); }
.sos-circle::before, .sos-circle::after {
  content: ''; position: absolute; border-radius: 50%; border: 2px solid var(--red);
  animation: sos-ring 3s ease-out infinite;
}
.sos-circle::before { inset: -20px; animation-delay: 0s; }
.sos-circle::after { inset: -40px; animation-delay: 1s; }
@keyframes sos-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== EMERGENCY CATEGORIES ===== */
.categories { background: var(--black); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.cat-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px;
  padding: 32px; transition: all 0.4s; position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover { transform: translateY(-6px); border-color: rgba(229,9,20,0.25); }
.cat-card .cat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cat-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }
.cat-card ul { display: flex; flex-direction: column; gap: 8px; }
.cat-card li { font-size: 0.85rem; color: var(--text-main); padding-left: 18px; position: relative; }
.cat-card li::before { content: '›'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--dark2); }

.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 64px;
  gap: 0;
}
.flow-step {
  flex: 1;
  max-width: 190px;
  text-align: center;
  padding: 0 12px;
}
.flow-icon {
  width: 64px;
  height: 64px;
  background: rgba(229,9,20,0.07);
  border: 1px solid var(--red);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.flow-step:hover .flow-icon {
  background: rgba(229,9,20,0.14);
  border-color: rgba(229,9,20,0.4);
  transform: translateY(-4px);
}
.flow-icon i { color: var(--red); width: 28px; height: 28px; }
.flow-step h4 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  color: var(--white);
}
.flow-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 20px;
  flex-shrink: 0;
  color: var(--red);
  opacity: 0.9;
}
.flow-arrow i { width: 48px; height: 48px; stroke-width: 3; }

/* ===== FEATURES ===== */
.features { background: var(--black); }

/* ===== FEATURES CAROUSEL ===== */
.feat-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.feat-carousel-track-outer {
  overflow: hidden;
  flex: 1;
}
.feat-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.feat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
  box-sizing: border-box;
}
.feat-card:hover { border-color: rgba(229,9,20,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.feat-card .f-icon {
  width: 52px; height: 52px; border-radius: 12px; background: rgba(229,9,20,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 18px;
}
.feat-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-btn i { width: 20px; height: 20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .feat-card { flex: 0 0 calc(100% - 0px); }
  .carousel-btn { width: 40px; height: 40px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .feat-card { flex: 0 0 calc((100% - 24px) / 2); }
}

/* ===== BUSINESS MODEL ===== */
.business { background: var(--dark2); }
.biz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.biz-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 32px; text-align: center; transition: all 0.3s;
}
.biz-card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,0.25); }
.biz-card .biz-icon { font-size: 2.2rem; margin-bottom: 14px; }
.biz-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.biz-card p { font-size: 0.85rem; color: var(--white); }

/* ===== IMPACT ===== */
.impact { background: var(--black); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 768px) { .impact-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.impact-item {
  text-align: center; padding: 28px 16px; border-radius: 16px;
  background: var(--glass); border: 1px solid var(--glass-border); transition: all 0.3s;
}
.impact-item:hover { border-color: rgba(229,9,20,0.3); }
.impact-item .imp-icon { font-size: 2rem; margin-bottom: 12px; }
.impact-item p { font-size: 0.88rem; color: var(--text-main); font-weight: 500; }

/* ===== TEAM ===== */
.team { background: var(--dark2); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 48px; }
.team-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px;
  padding: 36px; text-align: center; transition: all 0.4s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(229,9,20,0.3); }
.team-card .avatar {
  width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
}
.category-card h3 {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
}
.team-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--red); font-weight: 600; }

/* ===== FUNDING ===== */
.funding { background: var(--black); position: relative; overflow: hidden; }
.funding::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(229,9,20,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.funding-amount {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  background: linear-gradient(135deg, var(--red), #ff4444);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin: 16px 0 48px;
}
.funding-bars { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.fund-item label { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.fund-item label span { color: var(--red); }
.fund-bar { height: 10px; background: var(--glass); border-radius: 10px; overflow: hidden; }
.fund-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), #ff4444); border-radius: 10px; transition: width 1.5s ease; }

/* ===== CONTACT ===== */
.contact { background: var(--dark2); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.55); margin-bottom: 32px; line-height: 1.7; }
.contact-ctas { display: flex; flex-direction: column; gap: 12px; }
.contact-ctas a {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px;
  font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
}
.contact-ctas a:hover { border-color: var(--red); background: rgba(229,9,20,0.08); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 18px; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; color: var(--text-main); font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--grey); opacity: 0.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black); border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .footer-logo { font-family: 'Montserrat'; font-weight: 800; font-size: 1.4rem; margin-bottom: 8px; }
.footer-brand .footer-tagline { font-size: 0.85rem; color: var(--text-muted); }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text-main); }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--glass-border); font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Hamburger animation to X */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .solution-content { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 0; }

  /* Feature strip: allow horizontal scroll on tablets */
  .feature-strip-inner {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .strip-item {
    flex: 0 0 auto;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  /* Navigation */
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,0.97); flex-direction: column; justify-content: center;
    align-items: center; gap: 32px; z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; }

  /* Hero */
  .hero { padding: 80px 0 60px; }
  .hero h1 { letter-spacing: -2px; }
  .hero-sub { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 28px; }
  .btn-primary, .btn-outline { padding: 16px 28px; justify-content: center; }
  .hero-features-row { gap: 24px; margin-top: 28px; padding-top: 24px; }
  .hero::after { background: rgba(5,5,5,0.88); }
  .hero .container { align-items: center; text-align: center; }
  .hero-features-row { justify-content: center; flex-wrap: wrap; }

  /* Nav on mobile */
  .nav-link-item { padding: 10px 0; font-size: 1.1rem; border-radius: 0; background: transparent !important; }
  .nav-emergency-link { color: rgba(229,9,20,0.9) !important; }
  .nav-em-icon { width: 18px !important; height: 18px !important; }
  .nav-divider-line { display: none; }

  /* Dropdown: inline on mobile */
  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 24px;
    margin-top: 4px;
  }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a { font-size: 0.95rem; padding: 8px 0; color: var(--text-muted); }
  .dropdown-menu li a:hover { padding-left: 4px; background: transparent; color: var(--red); }

  /* Steps flow */
  .steps-flow { flex-direction: column; align-items: center; gap: 0; }
  .flow-step { max-width: 320px; width: 100%; padding: 0 20px; }
  .flow-arrow { padding-top: 0; padding: 8px 0; transform: rotate(90deg); opacity: 0.3; }

  /* Forms / Footer */
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  /* Solution visual */
  .solution-visual { min-height: 280px; padding: 30px; }

  /* Feature strip: 2-column grid on mobile */
  .feature-strip-inner {
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 0;
  }
  .strip-divider { display: none; }
  .strip-item {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
  }
}

@media (max-width: 480px) {
  section { padding: 50px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 80px 0 40px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-sub { font-size: 0.95rem; }
  .hero-tagline { font-size: clamp(1rem, 5vw, 1.4rem); min-height: 3rem; }
  .hero-buttons { gap: 10px; margin-top: 20px; }
  .btn-primary, .btn-outline { padding: 14px 22px; font-size: 0.85rem; }
  .hero-features-row { gap: 16px; }
  .hero-feature-item { align-items: center; }

  /* Nav */
  .nav-logo img { height: 44px !important; }

  /* SOS circle in solution */
  .sos-circle { width: 140px; height: 140px; font-size: 2rem; }
  .solution-visual { min-height: 240px; padding: 24px; }

  /* Cards */
  .team-card { padding: 24px; }
  .cat-card, .feat-card, .biz-card { padding: 24px; }

  /* Funding */
  .funding-amount { font-size: 1.8rem; margin: 10px 0 28px; }

  /* Contact */
  .contact-ctas a { padding: 12px 14px; font-size: 0.85rem; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-top { gap: 24px; }

  /* Support widget */
  #supportWindow {
    width: calc(100vw - 40px) !important;
    left: 20px !important;
    right: 20px !important;
  }
  #supportTrigger {
    bottom: 20px !important;
    left: 20px !important;
  }
}
