/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1D3557;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
.text-red { color: #E63946; }
img { max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: #555; transition: all 0.2s; padding: 6px 14px; border-radius: 8px; }
.nav-links a:not(.btn-nav):hover { background: linear-gradient(to right, rgba(220,84,57,0.2), rgba(220,84,57,0.02)); }
.btn-nav {
  background: linear-gradient(to right, #FFBAB9, #FFF1F1); color: #1D3557 !important; padding: 10px 24px;
  border-radius: 10px; font-weight: 600;
  border: 2.5px solid #000417;
  transform: translateY(-3px);
  box-shadow: 0 3px 0 0 #000417;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-nav:hover {
  background: #FF7575; color: #fff !important;
  transform: translateY(0);
  box-shadow: 0 0 0 0 #000417;
}
.btn-nav:active {
  box-shadow: 0 0 0 0 #000417, inset 0 80px 60px rgba(0,0,0,0.1);
}

/* ===== BUTTONS — 3D Press Effect ===== */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 12px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 2.5px solid #000417; text-align: center;
  position: relative;
  transform: translateY(-4px);
  box-shadow: 0 4px 0 0 #000417;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, color 0.2s ease;
  text-decoration: none;
  overflow: visible;
}
.btn:hover {
  transform: translateY(0);
  box-shadow: 0 0 0 0 #000417;
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 0 0 0 #000417, inset 0 80px 60px rgba(0,0,0,0.1);
}

.btn-primary {
  background: linear-gradient(to right, #FFBAB9, #FFF1F1); color: #1D3557;
}
.btn-primary:hover {
  background: #FF7575; color: #fff;
}


.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #FFF5F5 0%, #FFF 40%, #F8F9FF 100%);
  position: relative;
  overflow: hidden;
}
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.features .container {
  position: relative;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
/* Hero waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 150px;
  pointer-events: none;
}
.hero-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-wave-1 { fill: rgba(230, 57, 70, 0.12); }
.hero-wave-2 { fill: rgba(230, 57, 70, 0.06); }
.hero-wave-3 { fill: #fff; }
.hero-wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.hero-wave-layer:nth-child(1) {
  animation: waveSlide 8s ease-in-out infinite alternate;
}
.hero-wave-layer:nth-child(2) {
  animation: waveSlide 6s ease-in-out infinite alternate-reverse;
}
.hero-wave-layer:nth-child(3) {
  animation: waveSlide 10s ease-in-out infinite alternate;
}

.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge {
  display: inline-block; background: rgba(230,57,70,0.1); color: #E63946;
  padding: 8px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { font-size: 3.4rem; line-height: 1.15; font-weight: 800; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #E63946; }
.hero-sub { font-size: 1.15rem; color: #555; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-cta { margin-bottom: 40px; }
.hero-stats { display: flex; gap: 24px; align-items: center; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.5rem; color: #E63946; font-weight: 800; }
.stat span { font-size: 0.85rem; color: #888; }
.stat-sep { width: 1px; height: 40px; background: #ddd; }

/* Tablet mockup */
.hero-visual { display: flex; justify-content: center; }
.tablet-mockup {
  width: 380px; height: 520px;
  background: #1a1a2e;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 2px rgba(255,255,255,0.1);
  position: relative;
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s;
}
.tablet-mockup:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
.tablet-screen {
  background: linear-gradient(135deg, #E63946, #FF8C42);
  border-radius: 16px;
  height: 100%;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mock-header { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mock-title { color: #fff; font-weight: 700; font-size: 1.1rem; }
.mock-badge-small {
  background: rgba(255,255,255,0.25); color: #fff;
  padding: 4px 10px; border-radius: 20px; font-size: 0.65rem; font-weight: 700;
}
.mock-stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; width: 100%; margin-bottom: 16px; }
.stamp {
  width: 100%; aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .stamp.empty:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.18);
  }
}
.stamp.pop {
  animation: stampPop 0.4s ease;
}
@keyframes stampPop {
  0% { transform: scale(0.5); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.stamp.filled {
  background: #fff;
  border-color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  color: #E63946; font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.stamp.filled::after { content: '✓'; }
.stamp.empty { background: rgba(255,255,255,0.08); }
.mock-progress { width: 100%; height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; margin-bottom: 8px; }
.mock-progress-bar { height: 100%; background: #fff; border-radius: 3px; }
.mock-text { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin-bottom: 20px; }
.mock-reward {
  background: rgba(0,0,0,0.2); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font-size: 0.75rem; width: 100%; text-align: center;
}

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: #fff; position: relative; overflow: hidden; }
.section-title { text-align: center; font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.section-sub { text-align: center; color: #777; font-size: 1.1rem; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  position: relative;
  background: #FAFAFA;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 36px 28px;
  perspective: 800px;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.feature-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 20px rgba(230,57,70,0.1);
  border-color: rgba(230,57,70,0.35);
}
.feature-card .feature-icon,
.feature-card h3,
.feature-card p {
  transform: translateZ(40px);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(230,57,70,0.15), transparent 50%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* ===== CUSTOMIZATION HIGHLIGHT ===== */
.customization {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFF5F5, #FFF0E8);
}
.custom-layout {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.custom-image {
  margin: 0 auto 36px;
  max-width: 1200px;
}
.custom-image img {
  width: 100%;
  height: auto;
}
.custom-content {
  text-align: center;
}
.custom-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.custom-content > p { color: #555; font-size: 1.1rem; margin-bottom: 32px; }
.custom-list {
  list-style: none; text-align: left;
  margin: 0 0 36px;
}
.custom-list li {
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.custom-list li:last-child { border-bottom: none; }
.custom-psychology {
  background: rgba(230,57,70,0.06);
  border-left: 4px solid #E63946;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  text-align: left;
  margin: 0 0 32px;
}
.custom-psychology strong { color: #1D3557; }
.custom-psychology em { color: #E63946; font-style: normal; font-weight: 600; }
@media (max-width: 768px) {
  .custom-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .custom-image {
    flex: none;
    width: calc(100% + 48px);
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
  }
  .custom-content {
    text-align: center;
  }
}

/* ===== FIDELISATION ===== */
.fidelisation { padding: 100px 0; background: #fff; }
.fidelisation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fidel-card {
  background: linear-gradient(135deg, #1D3557, #2B4A7A);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
}
.fidel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(29, 53, 87, 0.25);
}
.fidel-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FF8C42;
  margin-bottom: 12px;
  line-height: 1;
}
.fidel-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.fidel-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.fidel-card p strong { color: #fff; }

@media (max-width: 900px) {
  .fidelisation-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .fidelisation-grid { grid-template-columns: 1fr; }
  .fidel-number { font-size: 2.2rem; }
}

/* ===== QR HIGHLIGHT ===== */
.qr-highlight {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 800px;
  margin: 60px auto 0;
  background: linear-gradient(135deg, #1D3557, #2B4A7A);
  border-radius: 20px;
  padding: 36px 40px;
  color: #fff;
}
.qr-icon { font-size: 3rem; flex-shrink: 0; }
.qr-text h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.qr-text p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.8); }
.qr-text p strong { color: #FF8C42; }

@media (max-width: 600px) {
  .qr-highlight { flex-direction: column; text-align: center; padding: 28px 24px; gap: 16px; }
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFF0F1, #FFF0E8, #FFE8E0, #FFF5F0, #FFEAE5);
  background-size: 300% 300%;
  animation: gradientShift 12s ease-in-out infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}
.comparison-table {
  max-width: 900px; margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
}
.comp-header {
  background: linear-gradient(135deg, #1D3557, #2B4A7A);
  color: #fff;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
}
.comp-header small { font-weight: 400; opacity: 0.7; font-size: 0.8rem; }
.comp-row {
  padding: 18px 24px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: #FAFAFE; }
.comp-label { font-weight: 600; color: #1D3557; }
.comp-col { text-align: center; padding: 0 8px; }
.comp-good {
  color: #16a34a; font-weight: 600;
}
.comp-good::before { content: '✓ '; }
.comp-bad {
  color: #888; font-size: 0.88rem;
}
.comp-bad::before { content: '✗ '; color: #E63946; font-weight: 700; }

/* ===== HOW IT WORKS ===== */
.how { padding: 100px 0; background: #fff; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 20px; }
.step {
  flex: 1; max-width: 300px; text-align: center;
  padding: 32px 24px;
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #E63946, #FF8C42);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(230,57,70,0.25);
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: #666; font-size: 0.95rem; }
.step-arrow {
  font-size: 2rem; color: #ccc; margin-top: 44px; font-weight: 300;
}

/* ===== SIGNUP ===== */
.signup {
  padding: 40px 0 0;
  background: linear-gradient(160deg, #1D3557, #2B4A7A);
  margin-top: -2px;
  margin-bottom: 0;
}
.signup .section-title { color: #fff; }
.signup .section-sub { color: rgba(255,255,255,0.6); }
.signup-card {
  max-width: 640px; margin: 0 auto 40px;
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 8px; }
.form-group label { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: #333; }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #E63946; }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; color: #999; font-size: 0.85rem; margin-top: 16px; }
.signup-success { text-align: center; padding: 40px 0; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.signup-success h3 { font-size: 1.5rem; margin-bottom: 10px; color: #1D3557; }
.signup-success p { color: #666; font-size: 1.05rem; }

/* ===== FAQ ===== */
.faq { padding: 80px 0 120px; background: #F8F9FA; position: relative; overflow: hidden; }
.faq > .container { position: relative; z-index: 1; }
.faq-bg-waves {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.faq-bg-wave-layer {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
}
.faq-bg-wave-layer svg {
  width: 100%;
  height: 100%;
  display: block;
}
.faq-bg-wave-layer:nth-child(1) {
  animation: waveSlide 10s ease-in-out infinite alternate;
}
.faq-bg-wave-layer:nth-child(2) {
  animation: waveSlide 14s ease-in-out infinite alternate-reverse;
}
.faq-bg-wave-layer:nth-child(3) {
  animation: waveSlide 12s ease-in-out infinite alternate;
}
.faq-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 150px;
  pointer-events: none;
}
.faq-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wave-1 {
  fill: rgba(29, 53, 87, 0.15);
}
.wave-2 {
  fill: rgba(29, 53, 87, 0.4);
}
.wave-3 {
  fill: #0f1f38;
}
.faq-wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.faq-wave-layer:nth-child(1) {
  animation: waveSlide 8s ease-in-out infinite alternate;
}
.faq-wave-layer:nth-child(2) {
  animation: waveSlide 6s ease-in-out infinite alternate-reverse;
}
.faq-wave-layer:nth-child(3) {
  animation: waveSlide 10s ease-in-out infinite alternate;
}

/* Footer waves override */
.footer-waves-wrapper + .footer { margin-top: 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1D3557;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-chevron {
  font-size: 1.4rem;
  color: #E63946;
  transition: transform 0.3s;
  font-weight: 700;
}
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== FOOTER (page-specific overrides) ===== */
.footer { padding: 60px 0 32px; }
.footer-container { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-brand p { font-size: 0.9rem; margin-top: 8px; }
.footer-links { gap: 28px; }
.footer-links a { font-size: 0.9rem; }
.footer-contact { display: flex; gap: 28px; font-size: 0.9rem; }
.footer-copy { font-size: 0.8rem; padding-top: 20px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.reveal.reveal-up { transform: translateY(50px); }
.reveal.reveal-left { transform: translateX(-60px); }
.reveal.reveal-right { transform: translateX(60px); }
.reveal.reveal-scale { transform: scale(0.9); }

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* Counter animation for fidel-numbers */
.fidel-number {
  transition: transform 0.6s ease;
}
.fidel-card.visible .fidel-number {
  animation: countPop 0.6s ease forwards;
}
@keyframes countPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-d1, .reveal-d2, .reveal-d3,
  .reveal-d4, .reveal-d5, .reveal-d6 {
    transition-delay: 0s;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .tablet-mockup { transform: none; width: 320px; height: 440px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .comp-header, .comp-row { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .comp-header .comp-label { display: none; }
  .comp-col { text-align: left; padding: 0; }
  .comp-row .comp-label { font-size: 1rem; margin-bottom: 4px; }
  .comp-us { order: 1; }
  .comp-them { order: 2; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 24px;
    gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .blog-dropdown {
    position: static;
    transform: none;
    min-width: 100%;
    padding-top: 0;
    margin-top: 8px;
  }
  .blog-dropdown-inner-wrap {
    box-shadow: none;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
  }
  .mobile-toggle { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .signup-card { padding: 28px 20px; }
  .section-title { font-size: 1.7rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .tablet-mockup { width: 280px; height: 400px; padding: 10px; }
  .tablet-screen { padding: 24px 16px; }
}
