/* ── CSS VARIABLES ── */
:root {
  --green-deep:  #1b4332;
  --green-mid:   #2d6a4f;
  --green-soft:  #52b788;
  --green-light: #b7e4c7;
  --green-pale:  #d8f3dc;
  --brown-deep:  #6b3f1a;
  --brown-mid:   #8b5e3c;
  --brown-warm:  #c4884a;
  --brown-pale:  #f0e0cc;
  --cream:       #faf6f1;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #888;
  --shadow-sm:   0 2px 12px rgba(27,67,50,0.08);
  --shadow-md:   0 8px 32px rgba(27,67,50,0.12);
  --shadow-lg:   0 20px 60px rgba(27,67,50,0.18);
  --radius:      16px;
  --radius-lg:   28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,63,26,0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white; font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 12px rgba(45,106,79,0.35);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--green-deep); letter-spacing: -0.3px;
}
.logo-text span { color: var(--brown-warm); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--text-mid); transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-deep); }

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

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--green-mid);
  background: transparent; color: var(--green-deep);
  border-radius: 50px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; text-decoration: none;
}
.btn-ghost:hover { background: var(--green-pale); }

.btn-primary {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  color: white; border: none; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; box-shadow: 0 4px 14px rgba(45,106,79,0.35);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,106,79,0.4); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 48px 60px;
  position: relative; overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(82,183,136,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(196,136,74,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 5% 70%, rgba(45,106,79,0.1) 0%, transparent 50%);
}
.hero-topography {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='%231b4332' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='240' fill='none' stroke='%231b4332' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='200' fill='none' stroke='%231b4332' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='160' fill='none' stroke='%231b4332' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='120' fill='none' stroke='%231b4332' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='80' fill='none' stroke='%231b4332' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='40' fill='none' stroke='%231b4332' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 400px 400px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); border: 1px solid var(--green-light);
  border-radius: 50px; padding: 6px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--green-deep); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 28px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green-soft); border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 82px); font-weight: 700;
  line-height: 1.1; color: var(--green-deep);
  max-width: 820px; margin-bottom: 24px;
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--brown-warm); }

.hero-sub {
  font-size: 18px; color: var(--text-mid);
  max-width: 560px; line-height: 1.7; margin-bottom: 40px;
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both; font-weight: 300;
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-ctas .btn-xl {
  padding: 15px 36px; font-size: 16px; font-weight: 600;
  border-radius: 50px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; border: none; text-decoration: none;
}
.btn-xl-green {
  background: linear-gradient(135deg, var(--green-soft), var(--green-mid));
  color: white; box-shadow: 0 8px 28px rgba(45,106,79,0.4); transition: all 0.2s;
}
.btn-xl-green:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(45,106,79,0.5); }
.btn-xl-outline {
  background: transparent;
  border: 2px solid var(--brown-mid) !important;
  color: var(--brown-deep); transition: all 0.2s;
}
.btn-xl-outline:hover { background: var(--brown-pale); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 72px;
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.4s ease both;
  flex-wrap: wrap; justify-content: center;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--green-deep); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.stat-divider { width: 1px; background: rgba(107,63,26,0.15); align-self: stretch; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WORD OF THE DAY / DAILY INSIGHT ── */
.wod-banner {
  background: linear-gradient(135deg, var(--green-deep), var(--brown-deep));
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.wod-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green-light); background: rgba(255,255,255,0.1);
  padding: 4px 12px; border-radius: 50px; white-space: nowrap;
}
.wod-word {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-style: italic; color: white;
}
.wod-sep { color: rgba(255,255,255,0.3); font-size: 18px; }
.wod-def {
  font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 300;
  max-width: 440px; text-align: center; line-height: 1.5;
}
#wod-refresh {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; border-radius: 50px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
#wod-refresh:hover { background: rgba(255,255,255,0.22); }

/* ── SECTION WRAPPER ── */
section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brown-warm); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: var(--green-deep); line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text-mid);
  max-width: 520px; line-height: 1.7; font-weight: 300;
}

/* ── SERVICES ── */
.services-section { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--cream); border: 1px solid rgba(107,63,26,0.1);
  border-radius: var(--radius-lg); padding: 36px 32px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-soft), var(--brown-warm));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: white; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
}
.icon-green  { background: var(--green-pale); }
.icon-brown  { background: var(--brown-pale); }
.icon-mixed  { background: linear-gradient(135deg, var(--green-pale), var(--brown-pale)); }

.service-title {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--green-deep); margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--green-mid);
  text-decoration: none; transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--green-soft); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
}

/* ── SCAN SECTION ── */
.scan-section { background: var(--green-pale); }
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.scan-card {
  background: white; border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center;
  box-shadow: var(--shadow-md); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.scan-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(82,183,136,0.07), transparent 70%);
  pointer-events: none;
}
.scan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.scan-anim {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; position: relative;
}
.scan-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--green-soft);
  animation: scanPulse 2.5s ease-in-out infinite;
}
.scan-ring:nth-child(2) { inset: -14px; animation-delay: 0.6s; opacity: 0.5; }
.scan-ring:nth-child(3) { inset: -22px; animation-delay: 1.2s; opacity: 0.25; }
@keyframes scanPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.4; }
}
.scan-bg-info  { background: var(--green-pale); }
.scan-bg-flood { background: #fff3e0; }
.scan-flood-ring { border-color: var(--brown-warm) !important; }

.scan-title {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
  color: var(--green-deep); margin-bottom: 12px;
}
.scan-desc {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 32px; font-weight: 300;
}
.scan-coords { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
.coord-chip {
  background: var(--green-pale); border: 1px solid var(--green-light);
  border-radius: 8px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: var(--green-deep); font-family: monospace;
}
.coord-chip-flood {
  background: #fff3e0; border-color: #f9c88d; color: #6b3f1a;
}

/* Scan feature chips */
.scan-features {
  display: flex; flex-wrap: wrap; gap: 7px;
  justify-content: center; margin-bottom: 28px;
}
.scan-feat-chip {
  background: var(--green-pale); border: 1px solid var(--green-light);
  border-radius: 50px; padding: 5px 13px;
  font-size: 11px; font-weight: 600; color: var(--green-deep);
}
.scan-feat-chip-flood {
  background: #fff3e0; border-color: #f9c88d; color: var(--brown-deep);
}

/* Make the whole card clickable */
.scan-card { cursor: pointer; }

.btn-scan {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  color: white; border: none; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 6px 20px rgba(45,106,79,0.35); transition: all 0.2s;
}
.btn-scan:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(45,106,79,0.45); }
.btn-scan-flood {
  background: linear-gradient(135deg, var(--brown-warm), var(--brown-deep));
  box-shadow: 0 6px 20px rgba(107,63,26,0.3);
}
.btn-scan-flood:hover { box-shadow: 0 10px 28px rgba(107,63,26,0.4); }
.scan-note { font-size: 12px; color: var(--text-light); margin-top: 14px; }

/* ── PROFESSIONALS ── */
.pros-section { background: var(--white); }
.pros-filters { display: flex; gap: 10px; margin: 40px 0; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 20px; border: 1.5px solid rgba(107,63,26,0.2);
  background: transparent; border-radius: 50px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; color: var(--text-mid); transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--green-deep); color: white; border-color: var(--green-deep); }

.pros-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.pro-card {
  background: var(--cream); border: 1px solid rgba(107,63,26,0.08);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s; cursor: pointer;
}
.pro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: white; }
.pro-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.pro-avatar {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  font-family: 'Playfair Display', serif; flex-shrink: 0; color: white;
}
.av-g1 { background: linear-gradient(135deg, var(--green-soft), var(--green-deep)); }
.av-g2 { background: linear-gradient(135deg, var(--brown-warm), var(--brown-deep)); }
.av-g3 { background: linear-gradient(135deg, #74b49b, var(--green-mid)); }
.av-g4 { background: linear-gradient(135deg, #c98b5a, var(--brown-mid)); }
.av-g5 { background: linear-gradient(135deg, var(--green-mid), var(--brown-warm)); }
.av-g6 { background: linear-gradient(135deg, var(--green-soft), var(--brown-mid)); }

.pro-info { flex: 1; min-width: 0; }
.pro-name { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.pro-role {
  font-size: 12px; font-weight: 500; color: var(--green-mid);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px;
}
.pro-stars { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.stars { color: var(--brown-warm); font-size: 13px; letter-spacing: -1px; }
.pro-rating { font-size: 12px; color: var(--text-light); }
.pro-exp { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; font-weight: 300; line-height: 1.5; }
.pro-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.pro-tag {
  background: var(--green-pale); color: var(--green-deep);
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px;
}
.pro-footer { display: flex; align-items: center; justify-content: space-between; }
.pro-price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--green-deep); }
.pro-price span { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400; color: var(--text-light); }
.btn-hire {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--green-soft), var(--green-mid));
  color: white; border: none; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.btn-hire:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(45,106,79,0.35); }

/* ── APPLICATIONS ── */
.apps-section { background: linear-gradient(160deg, var(--green-deep) 0%, #0d2b1e 100%); }
.apps-section .section-title { color: white; }
.apps-section .section-sub   { color: rgba(255,255,255,0.65); }
.apps-section .section-label { color: var(--green-light); }

.apps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 56px;
}
.app-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px 28px; transition: all 0.3s; cursor: pointer;
}
.app-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.app-num {
  font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700;
  color: rgba(82,183,136,0.25); line-height: 1; margin-bottom: 12px;
}
.app-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px; }
.app-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.app-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--green-light);
  text-decoration: none; transition: gap 0.2s;
  background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.app-cta:hover { gap: 10px; color: var(--green-soft); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(10,30,20,0.65); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius-lg); padding: 52px 48px;
  max-width: 480px; width: 100%; position: relative;
  animation: modalIn 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--cream); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 18px; cursor: pointer; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: var(--green-pale); }
.modal-logo { margin-bottom: 28px; }
.modal h2 {
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700;
  color: var(--green-deep); margin-bottom: 6px;
}
.modal p { font-size: 14px; color: var(--text-light); margin-bottom: 32px; font-weight: 300; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600; color: var(--text-mid);
  margin-bottom: 7px; letter-spacing: 0.3px; text-transform: uppercase;
}
.form-input {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(107,63,26,0.15);
  border-radius: 12px; font-size: 15px; font-family: 'DM Sans', sans-serif;
  background: var(--cream); color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus {
  border-color: var(--green-soft); box-shadow: 0 0 0 3px rgba(82,183,136,0.12); background: white;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--green-soft), var(--green-deep));
  color: white; border: none; border-radius: 50px;
  font-size: 16px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; box-shadow: 0 6px 20px rgba(45,106,79,0.35);
  transition: all 0.2s; margin-top: 8px;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(45,106,79,0.45); }
.form-divider { text-align: center; font-size: 13px; color: var(--text-light); margin: 16px 0; }
.form-signin { text-align: center; font-size: 14px; color: var(--text-mid); }
.form-signin a { color: var(--green-mid); font-weight: 600; text-decoration: none; }

/* ── FOOTER ── */
footer { background: #0d2b1e; padding: 64px 48px 32px; color: rgba(255,255,255,0.65); }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; font-weight: 300; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 14px; font-weight: 300; transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* Footer logo override */
.footer-brand .logo-text { color: white; }

/* ── LOCK OVERLAY ── */
.lock-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.7);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  border-radius: var(--radius-lg); z-index: 5; cursor: pointer; transition: all 0.2s;
}
.lock-overlay:hover { background: rgba(255,255,255,0.8); }
.lock-icon { font-size: 36px; }
.lock-text { font-size: 14px; font-weight: 600; color: var(--green-deep); }
.lock-sub  { font-size: 12px; color: var(--text-light); }

/* ── NOTIFICATION TOAST ── */
.tp-toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--green-deep); color: white;
  padding: 14px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 24px rgba(27,67,50,0.3);
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s; pointer-events: none;
}
.tp-toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero { padding: 100px 24px 48px; }
  .scan-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wod-banner { padding: 20px 24px; }
  .modal { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── PROFILE NAV BUTTON (logged-in state) ── */
.btn-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 7px;
  background: var(--green-pale);
  border: 1.5px solid rgba(82,183,136,0.35);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-profile:hover {
  background: var(--green-light);
  border-color: var(--green-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,106,79,0.18);
}
.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-soft), var(--green-deep));
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-ghost-logout {
  color: #c0392b !important;
  opacity: 0.8;
}
.btn-ghost-logout:hover {
  opacity: 1;
  text-decoration: underline;
}