@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@400;600;700;800&display=swap');

:root {
  --green-900: #00572E;
  --green-800: #006B38;
  --green-700: #008547;
  --green-600: #00A856;
  --green-500: #00C46A;
  --green-400: #2DDA84;
  --green-300: #6EEAAA;
  --green-100: #D6F7E7;
  --green-50:  #F0FBF5;
  --navy-900: #0D1B2A;
  --navy-800: #132236;
  --navy-700: #1A2E45;
  --navy-600: #243850;
  --slate-500: #4A5E72;
  --slate-400: #6B7E90;
  --slate-300: #93A3B2;
  --slate-200: #C4CDD6;
  --slate-100: #E8EDF2;
  --slate-50:  #F5F7F9;
  --white: #FFFFFF;
  --amber-400: #FBBF24;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --shadow-green: 0 16px 48px rgba(0,168,86,.25);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0,168,86,.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-600);
}
.btn-outline:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy-900);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 560px;
}

.highlight { color: var(--green-600); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(10,20,35,.55) 0%, rgba(10,20,35,0) 100%);
  backdrop-filter: blur(8px);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-600);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,168,86,.3);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-900);
}

.logo-text span { color: var(--green-600); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-500);
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-600);
  border-radius: 2px;
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--green-600); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-900);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green-600); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  padding-top: 72px;
}

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

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,168,86,.5) 0%, rgba(0,168,86,.15) 40%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-gradient-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at 40% 60%, rgba(0,87,46,.6) 0%, transparent 60%);
  animation: heroGlow2 10s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--green-500);
  opacity: .4;
  animation: floatDot linear infinite;
}

.hero-dot:nth-child(1) { width:6px; height:6px; top:20%; left:10%; animation-duration:12s; animation-delay:0s; }
.hero-dot:nth-child(2) { width:4px; height:4px; top:60%; left:5%; animation-duration:18s; animation-delay:3s; }
.hero-dot:nth-child(3) { width:8px; height:8px; top:80%; left:20%; animation-duration:15s; animation-delay:1s; }
.hero-dot:nth-child(4) { width:5px; height:5px; top:30%; left:85%; animation-duration:20s; animation-delay:5s; }
.hero-dot:nth-child(5) { width:7px; height:7px; top:70%; left:90%; animation-duration:14s; animation-delay:2s; }
.hero-dot:nth-child(6) { width:3px; height:3px; top:45%; left:50%; animation-duration:22s; animation-delay:7s; }

@keyframes floatDot {
  0% { transform: translateY(0) scale(1); opacity: .4; }
  50% { transform: translateY(-40px) scale(1.2); opacity: .7; }
  100% { transform: translateY(0) scale(1); opacity: .4; }
}

@keyframes heroGlow {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(2%,3%); }
}

@keyframes heroGlow2 {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.15) translate(-2%,-3%); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,168,86,.15);
  border: 1px solid rgba(0,168,86,.3);
  border-radius: var(--radius-full);
  color: var(--green-300);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: .04em;
  animation: fadeInDown .8s ease both;
}

.hero-badge i { font-size: 12px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp .8s ease .1s both;
}

.hero-title .line-green { color: var(--green-400); }

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  animation: fadeInUp .8s ease .2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp .8s ease .3s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  animation: fadeInUp .8s ease .4s both;
}

.hero-stat-item { }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span { color: var(--green-400); }

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight .9s ease .2s both;
}

.phone-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.phone-frame {
  width: 280px;
  aspect-ratio: 9/19;
  background: var(--navy-800);
  border-radius: 44px;
  border: 8px solid rgba(255,255,255,.12);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 36px;
}

.phone-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--green-800) 0%, var(--navy-800) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 36px;
}

.phone-placeholder i {
  font-size: 56px;
  color: var(--green-400);
}

.phone-placeholder p {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  text-align: center;
  padding: 0 20px;
}

.phone-float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.phone-float-card.card-1 { left: -60px; top: 18%; animation-delay: 0s; }
.phone-float-card.card-2 { right: -60px; top: 48%; animation-delay: 1.5s; }
.phone-float-card.card-3 { left: -40px; bottom: 18%; animation-delay: 3s; }

.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.float-card-icon.green { background: var(--green-50); color: var(--green-600); }
.float-card-icon.amber { background: #FEF3C7; color: #D97706; }
.float-card-icon.blue { background: #EFF6FF; color: #3B82F6; }

.float-card-text { }
.float-card-title { font-size: 12px; font-weight: 700; color: var(--navy-900); white-space: nowrap; }
.float-card-sub { font-size: 11px; color: var(--slate-400); white-space: nowrap; }

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── TICKER ── */
.ticker-section {
  background: var(--green-600);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.ticker-item i { font-size: 12px; opacity: .7; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ALERTS ── */
.alerts-section {
  padding: 100px 0;
  background: var(--white);
}

.alerts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.alerts-visual {
  position: relative;
}

.alert-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
}

.alert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.alert-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.alert-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.alert-card-icon.red { background: #FEE2E2; color: #DC2626; }
.alert-card-icon.amber { background: #FEF3C7; color: #D97706; }
.alert-card-icon.blue { background: #DBEAFE; color: #2563EB; }
.alert-card-icon.purple { background: #EDE9FE; color: #7C3AED; }
.alert-card-icon.green { background: var(--green-100); color: var(--green-700); }

.alert-card-body { }
.alert-card-title { font-size: 14px; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.alert-card-desc { font-size: 13px; color: var(--slate-400); line-height: 1.5; }
.alert-card-time { font-size: 11px; color: var(--green-600); font-weight: 600; margin-top: 4px; }

.alert-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEE2E2;
  color: #DC2626;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

.alert-live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #DC2626;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}

.alerts-content { }
.alerts-content .section-subtitle { margin-top: 16px; margin-bottom: 36px; }

.feature-list { display: flex; flex-direction: column; gap: 16px; }

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-list-icon {
  width: 36px; height: 36px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list-text { }
.feature-list-title { font-size: 15px; font-weight: 700; color: var(--navy-900); margin-bottom: 2px; }
.feature-list-desc { font-size: 14px; color: var(--slate-400); line-height: 1.5; }

/* ── NEWS ── */
.news-section {
  padding: 100px 0;
  background: var(--slate-50);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.news-header .section-subtitle { margin-top: 12px; }

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

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--slate-100);
  position: relative;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--slate-300);
}

.news-card-img-placeholder i { font-size: 36px; }
.news-card-img-placeholder span { font-size: 12px; }

.news-card-body { padding: 24px; }

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.news-card-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; line-height: 1.3; }
.news-card-desc { font-size: 14px; color: var(--slate-400); line-height: 1.6; margin-bottom: 16px; }
.news-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--slate-300); }
.news-card-meta i { font-size: 11px; }

/* ── RECS ── */
.recs-section {
  padding: 100px 0;
  background: var(--white);
}

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

.recs-content .section-subtitle { margin-top: 16px; margin-bottom: 40px; }

.recs-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rec-category {
  background: var(--slate-50);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  cursor: default;
  border: 2px solid transparent;
}

.rec-category:hover {
  border-color: var(--green-300);
  background: var(--green-50);
  transform: translateY(-2px);
}

.rec-cat-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.rec-cat-text { }
.rec-cat-name { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.rec-cat-count { font-size: 12px; color: var(--slate-400); }

.recs-visual { position: relative; }

.rec-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.rec-review-card:hover { transform: translateX(4px); }

.rec-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.rec-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.rec-avatar img { width: 100%; height: 100%; object-fit: cover; }

.rec-reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.rec-reviewer-loc { font-size: 12px; color: var(--slate-400); }

.rec-stars { color: var(--amber-400); font-size: 12px; margin-bottom: 8px; }
.rec-review-text { font-size: 14px; color: var(--slate-500); line-height: 1.6; }
.rec-business { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--slate-100); }
.rec-business i { color: var(--green-600); font-size: 14px; }
.rec-business span { font-size: 13px; font-weight: 600; color: var(--green-700); }

/* ── COMMUNITY ── */
.community-section {
  padding: 100px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,168,86,.12) 0%, transparent 60%);
  pointer-events: none;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.community-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.community-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
  border-color: rgba(0,168,86,.3);
}

.community-card:hover::before { transform: scaleX(1); }

.community-card-icon {
  width: 56px; height: 56px;
  background: rgba(0,168,86,.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--green-400);
  margin-bottom: 20px;
}

.community-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.community-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

.community-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,168,86,.15);
  color: var(--green-400);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  margin-top: 16px;
}

.community-header { text-align: center; }
.community-header .section-label { background: rgba(0,168,86,.15); color: var(--green-400); }
.community-header .section-title { color: var(--white); }
.community-header .section-subtitle { color: rgba(255,255,255,.5); margin: 16px auto 0; text-align: center; }

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: var(--slate-50);
}

.how-header { text-align: center; margin-bottom: 72px; }
.how-header .section-subtitle { margin: 16px auto 0; text-align: center; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--green-300));
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.how-step-num {
  width: 72px; height: 72px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-green);
  transition: transform var(--transition);
}

.how-step:hover .how-step-num { transform: scale(1.1); }

.how-step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
.how-step-desc { font-size: 14px; color: var(--slate-400); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle { margin: 16px auto 0; text-align: center; }

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 35s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  border: 1px solid var(--slate-100);
  transition: box-shadow var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars { color: var(--amber-400); font-size: 13px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--slate-500); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.testimonial-loc { font-size: 12px; color: var(--slate-400); }

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 0;
  background: var(--green-600);
  position: relative;
  overflow: hidden;
}

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

.cta-circle-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  top: -200px; right: -100px;
  animation: rotateSlow 25s linear infinite;
}

.cta-circle-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  bottom: -150px; left: -100px;
  animation: rotateSlow 35s linear infinite reverse;
}

@keyframes rotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-label {
  background: rgba(255,255,255,.15);
  color: var(--white);
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-appstore:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.btn-appstore-icon { font-size: 22px; }
.btn-appstore-text-sm { font-size: 11px; font-weight: 500; color: var(--slate-400); display: block; line-height: 1; }
.btn-appstore-text-lg { font-size: 16px; font-weight: 800; color: var(--navy-900); display: block; line-height: 1.2; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  color: var(--white);
  margin-top: 32px;
}

.rating-badge-stars { color: var(--amber-400); font-size: 14px; }
.rating-badge-text { font-size: 14px; }
.rating-badge-text strong { font-weight: 700; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-900);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--green-600);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text span { color: var(--green-400); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.footer-appstore-btn:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(0,168,86,.4);
}

.footer-appstore-btn i { font-size: 20px; }

.footer-col { }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-400); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright { font-size: 13px; color: rgba(255,255,255,.3); }

.footer-disclaimer-link {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-disclaimer-link:hover { color: var(--green-400); }

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: rgba(255,255,255,.7); }

/* ── BREADCRUMB ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--green-900) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,168,86,.2) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-400); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: rgba(255,255,255,.7); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 540px;
}

.page-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0,168,86,.15);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--green-300);
  margin-top: 16px;
}

/* ── POLICY CONTENT ── */
.policy-content {
  padding: 72px 0 100px;
  background: var(--white);
}

.policy-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 88px;
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.policy-nav-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-300);
  margin-bottom: 16px;
}

.policy-nav-links { display: flex; flex-direction: column; gap: 4px; }

.policy-nav-links a {
  font-size: 14px;
  color: var(--slate-500);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}

.policy-nav-links a:hover,
.policy-nav-links a.active {
  background: var(--green-50);
  color: var(--green-700);
}

.policy-body { }

.policy-section { margin-bottom: 52px; }
.policy-section:last-child { margin-bottom: 0; }

.policy-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--slate-100);
}

.policy-section p {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.policy-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.7;
}

.policy-section ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.policy-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-800);
  margin: 24px 0 10px;
}

.policy-highlight {
  background: var(--green-50);
  border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.policy-highlight p { color: var(--navy-800); font-weight: 500; margin: 0; }

.contact-info-box {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 20px;
}

.contact-info-box h3 { font-size: 16px; font-weight: 700; color: var(--navy-900); margin-bottom: 16px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate-500); margin-bottom: 8px; }
.contact-info-item i { color: var(--green-600); width: 16px; }

/* ── 404 ── */
.notfound-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.notfound-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,168,86,.12) 0%, transparent 60%);
}

.notfound-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
}

.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 180px);
  font-weight: 800;
  color: rgba(255,255,255,.05);
  line-height: 1;
  position: relative;
}

.notfound-code span {
  color: var(--green-500);
  opacity: 1;
}

.notfound-icon {
  width: 100px; height: 100px;
  background: rgba(0,168,86,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  color: var(--green-400);
  margin: 0 auto 24px;
  animation: floatCard 4s ease-in-out infinite;
}

.notfound-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.notfound-desc {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.notfound-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .phone-float-card.card-1 { left: -10px; }
  .phone-float-card.card-2 { right: -10px; }
  .phone-float-card.card-3 { left: -10px; }
  .alerts-grid { grid-template-columns: 1fr; }
  .recs-grid { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .recs-categories { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .hero-inner { padding: 40px 0; }
  .how-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .phone-float-card { display: none; }
  .alerts-section, .news-section, .recs-section, .community-section,
  .how-section, .testimonials-section, .cta-section { padding: 60px 0; }
  .btn { padding: 12px 20px; font-size: 14px; }
}
