/* ============================================
   TELLSYS.COM — Custom Build v2.0
   Jose 🎬 for Alexandre Sarte · Feb 2026
   Lighter, animated, premium
   ============================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --navy:    #1a2332;
  --slate:   #2a3444;
  --mid:     #6b7d92;
  --light:   #e8edf2;
  --bg:      #f7f9fb;
  --white:   #ffffff;
  --black:   #111111;
  --crimson: #c23058;
  --teal:    #0a9aa0;
  --olive:   #aaa342;
  --text:    #222222;
  --muted:   #6b7d92;
  --soft-bg: #fafbfc;

  --font-sans: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-mono: 'Courier New', Courier, monospace;

  --radius: 6px;
  --transition: 0.25s ease;
  --max-w: 1120px;
  --nav-h: 80px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ---- UTILITIES ---- */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section     { padding: 88px 0; }
.section-sm  { padding: 56px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-teal   { color: var(--teal); }
.eyebrow     { font-family: var(--font-mono); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 12px; }
.divider     { width: 48px; height: 3px; background: var(--crimson); margin: 20px 0; border-radius: 2px; }
.divider-center { margin: 20px auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease;
  transform: translate(-50%, -50%);
}
.btn:hover::after { width: 300px; height: 300px; }
.btn-primary  { background: var(--crimson); color: var(--white); }
.btn-primary:hover { background: #a82548; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194,48,88,0.3); }
.btn-outline  { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.8); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-teal     { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #088a90; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,154,160,0.3); }
.btn-light    { background: var(--bg); color: var(--text); }
.btn-light:hover { background: var(--light); transform: translateY(-2px); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center;
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; max-width: 160px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 15px; color: var(--mid); letter-spacing: 0.3px; transition: var(--transition); position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--crimson);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { padding: 10px 22px; background: var(--crimson); color: var(--white); border-radius: var(--radius); font-size: 14px; font-weight: 600; transition: all 0.3s ease; }
.nav-cta:hover { background: #a82548; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(194,48,88,0.25); }
.nav-spacer { height: var(--nav-h); }

/* ---- NAV DROPDOWN ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown-toggle.nav-link::after { display: none; }
.nav-dropdown-toggle .chevron {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-dropdown:hover .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--mid);
  transition: var(--transition);
}
.nav-dropdown-item:hover {
  color: var(--text);
  background: var(--bg);
}
.nav-dropdown-item small {
  display: block;
  font-size: 12px;
  color: var(--mid);
  margin-top: 3px;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  opacity: 0.7;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--white) 0%, var(--bg) 40%, #eef2f7 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://static.wixstatic.com/media/f637dc_6a67a7a484ed4c0d99a082aa93828acf~mv2.jpg/v1/fill/w_2304,h_803,al_t,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/f637dc_6a67a7a484ed4c0d99a082aa93828acf~mv2.jpg');
  background-size: cover; background-position: center 30%;
  opacity: 0.25;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.85) 25%, rgba(255,255,255,0.3) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero h1 { color: var(--text); margin-bottom: 20px; }
.hero p  { font-size: 1.125rem; color: var(--muted); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero floating shapes */
.hero-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: floatShape 20s ease-in-out infinite;
}
.hero-shape:nth-child(1) {
  width: 400px; height: 400px; background: var(--teal);
  top: -100px; right: -50px;
  animation-delay: 0s;
}
.hero-shape:nth-child(2) {
  width: 250px; height: 250px; background: var(--crimson);
  bottom: -60px; right: 20%;
  animation-delay: -7s;
}
.hero-shape:nth-child(3) {
  width: 180px; height: 180px; background: var(--teal);
  top: 30%; right: 10%;
  animation-delay: -14s;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ---- SECTIONS ---- */
.section-accent {
  background: linear-gradient(160deg, var(--bg) 0%, #eef2f7 100%);
}
.section-dark {
  background: linear-gradient(160deg, #eef2f7 0%, #e2e8f0 100%);
}
.section-dark h2, .section-dark h3 { color: var(--text); }
.section-dark p { color: var(--muted); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, #1e2d3d 100%); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.7); }
.section-light { background: var(--bg); }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 200px; object-fit: cover; background: var(--light); }
.card-body { padding: 24px; }
.card-issue { font-family: var(--font-mono); font-size: 12px; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; }
.card-footer { padding: 12px 24px; border-top: 1px solid var(--bg); display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12px; color: #999; }

/* Feature cards (light bg) */
.feature-card {
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--crimson));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ---- GRID LAYOUTS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- DIFFERENTIALS ---- */
.diff-icon { width: 52px; height: 52px; background: rgba(10,154,160,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease; }
.diff-icon svg { width: 24px; height: 24px; fill: var(--teal); }
.feature-card:hover .diff-icon { background: var(--teal); transform: scale(1.05); }
.feature-card:hover .diff-icon svg { fill: var(--white); }

/* Dark section diff icons */
.section-dark .diff-icon { background: rgba(10,154,160,0.1); }

/* ---- PULL QUOTE ---- */
.pull-quote {
  border-left: 4px solid var(--crimson);
  padding: 24px 28px;
  background: rgba(194,48,88,0.04);
  border-radius: 0 10px 10px 0;
  margin: 32px 0;
  transition: all 0.3s ease;
}
.pull-quote:hover { transform: translateX(4px); }
.pull-quote p { font-size: 1.125rem; font-style: italic; color: var(--text); line-height: 1.65; }
.pull-quote cite { display: block; margin-top: 12px; font-size: 12px; font-family: var(--font-mono); color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* ---- STAT GRID ---- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 28px 16px; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; background: var(--white); transition: all 0.3s ease; }
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--teal); font-family: var(--font-mono); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* Dark stat items */
.section-dark .stat-item {
  border-color: rgba(0,0,0,0.06);
  background: var(--white);
}
.section-dark .stat-label { color: var(--muted); }
.section-navy .stat-item {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
}
.section-navy .stat-label { color: rgba(255,255,255,0.55); }

/* ---- SUBSCRIBE FORM ---- */
.sub-form {
  display: flex; gap: 8px; max-width: 480px;
}
.sub-input {
  flex: 1; padding: 14px 18px;
  border: 1px solid var(--light);
  background: var(--white);
  color: var(--text); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-sans);
  transition: all 0.3s ease;
}
.sub-input::placeholder { color: var(--mid); }
.sub-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,154,160,0.1); }
.sub-proof { font-family: var(--font-mono); font-size: 13px; color: var(--mid); margin-top: 12px; letter-spacing: 0.3px; }
/* Dark bg subscribe */
.section-navy .sub-input {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.section-navy .sub-input::placeholder { color: rgba(255,255,255,0.4); }
.section-navy .sub-input:focus { border-color: var(--teal); background: rgba(255,255,255,0.12); }
.section-navy .sub-proof { color: rgba(255,255,255,0.35); }

/* Subscribe status messages */
.sub-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}
.sub-status.show {
  opacity: 1;
  transform: translateY(0);
}
.sub-status.success { color: var(--teal); }
.sub-status.error { color: var(--crimson); }

/* ---- NEWSLETTER ARCHIVE ---- */
.issue-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), #0cc0c6);
  color: var(--white);
  font-family: var(--font-mono); font-size: 12px;
  padding: 6px 14px; border-radius: 4px;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.issue-hook {
  font-size: 1.0625rem; font-style: italic;
  border-left: 3px solid var(--olive);
  padding-left: 16px;
  color: var(--muted); line-height: 1.65;
  margin: 16px 0 24px;
}
.read-link {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--crimson); text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: var(--transition);
}
.read-link:hover { border-bottom-color: var(--crimson); }

/* ---- AUTHOR BAR ---- */
.author-bar { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--light); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 14px; }
.author-title { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.3px; text-transform: uppercase; margin-top: 3px; }

/* ---- CONTACT ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--light); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-sans);
  color: var(--text); background: var(--white);
  transition: all 0.3s ease;
}
.form-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,154,160,0.1); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { display: inline-block; margin-bottom: 12px; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; color: rgba(255,255,255,0.5); }
.footer-social a:hover { border-color: var(--teal); background: rgba(10,154,160,0.15); transform: translateY(-2px); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }
.footer-social img { width: 18px; height: 18px; filter: brightness(0.7); }
.footer-social a:hover img { filter: brightness(1); }
.footer-col-title { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: var(--transition); }
.footer-link:hover { color: var(--white); transform: translateX(3px); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.3px; }

/* ---- RESPONSIVE ---- */
/* ---- MOBILE NAV (default: hidden) ---- */
.nav-mobile-btn {
  display: none;
}

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav-logo img { height: 36px; max-width: 150px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  /* Remove backdrop-filter to fix fixed positioning */
  .nav {
    backdrop-filter: none;
    background: #ffffff;
  }
  
  /* Hamburger button */
  .nav-mobile-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  .nav-mobile-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 2px;
    margin: 3px 0;
    pointer-events: none;
  }
  .nav-mobile-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 6px);
  }
  .nav-mobile-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
  }
  
  /* Mobile menu panel */
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #ffffff !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow-y: auto !important;
    z-index: 1002 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  }
  .nav-links.open {
    display: flex !important;
  }
  
  .nav-links .nav-link {
    display: block;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 24px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--light);
    color: var(--text);
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link:active {
    background: var(--bg);
  }
  .nav-links .nav-link::after { display: none; }
  
  .nav-links .nav-cta {
    margin: 24px;
    text-align: center;
    padding: 16px 24px;
    font-size: 15px;
  }
  
  /* Mobile dropdown */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 24px;
    border-bottom: 1px solid var(--light);
    cursor: pointer;
    width: 100%;
    color: var(--text);
  }
  .nav-dropdown-toggle .chevron {
    transition: transform 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-toggle .chevron {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #f7f9fb !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: auto !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
  .nav-dropdown-item {
    display: block !important;
    text-align: left !important;
    padding: 16px 24px 16px 40px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    color: #6b7d92 !important;
    background: #f7f9fb !important;
  }
  .nav-dropdown-item small {
    display: block !important;
    color: #6b7d92 !important;
  }
  
  /* Prevent hover states on mobile */
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none !important;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 600px) {
  .nav-logo img { height: 30px; max-width: 130px; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .hero { min-height: 100svh; }
  .grid-4, .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sub-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-logo img { height: 28px; }
}

/* ---- HONEYPOT (hidden from humans, traps bots) ---- */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---- PAGE TRANSITIONS ---- */
.page-fade { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---- HOVER SHINE EFFECT ---- */
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
}
.shine:hover::before {
  animation: shineSlide 0.6s ease forwards;
}
@keyframes shineSlide {
  to { left: 120%; }
}

/* ---- PULSE DOT ---- */
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
