/* ═══════════════════════════════════════════
   ContaFacil ERP — Static Site Styles
   ═══════════════════════════════════════════ */

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #060d1b; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* ─── Smooth Scroll ─── */
html { scroll-behavior: smooth; }

/* ─── Animations ─── */
@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(64px); }
}

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

@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-28px) scale(1.06); }
}

@keyframes wap {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scanLine {
  0% { top: -2px; }
  100% { top: 100%; }
}

@keyframes progressBar {
  from { width: 0%; }
  to { width: 100%; }
}

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

.animate-fade-down {
  animation: fadeDown 0.6s ease-out both;
}
.animate-fade-up {
  animation: fadeUp 0.7s ease-out both;
}
.animate-fade-up-delay {
  animation: fadeUp 0.6s ease-out 0.1s both;
}
.animate-fade-up-delay-2 {
  animation: fadeUp 0.5s ease-out 0.2s both;
}
.animate-fade-up-delay-3 {
  animation: fadeUp 0.7s ease-out 0.3s both;
}
.animate-fade-up-delay-4 {
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.pulse-glow-dot {
  animation: pulse-glow 2s infinite;
}

.progress-bar-anim {
  animation: progressBar 6s linear forwards;
}

/* ─── Reveal on Scroll ─── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.nav-link {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(191,219,254,0.7);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.05);
}

.nav-cta-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  padding: 6px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}
.nav-cta-btn:hover {
  background: linear-gradient(to right, #fbbf24, #fcd34d);
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

/* Hamburger */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-line.open-1 { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-line.open-2 { opacity: 0; }
.hamburger-line.open-3 { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu-hidden {
  display: none;
}
.mobile-nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(191,219,254,0.7);
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.2s;
  display: block;
}
.mobile-nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.05);
}
.mobile-cta-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  padding: 12px 24px;
  border-radius: 12px;
  text-align: center;
  margin-top: 8px;
  display: block;
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

/* ═══════════════════════════════════════════
   HERO CAROUSEL
   ═══════════════════════════════════════════ */
.carousel-bg-slide {
  position: absolute;
  inset: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.carousel-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,13,27,0.95), rgba(6,13,27,0.8), rgba(6,13,27,0.6));
}
.carousel-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #060d1b, transparent, rgba(6,13,27,0.5));
}

/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  background-image: linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 25s linear infinite;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent);
  animation: orbFloat 9s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  bottom: -60px; left: 5%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent);
  animation: orbFloat 7s ease-in-out infinite alternate;
  animation-delay: -3s;
}

/* Scan Line */
.hero-scan-line {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.1;
}
.scan-line-bar {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #60a5fa, transparent);
  animation: scanLine 4s linear infinite;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  color: #fcd34d;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title-gradient {
  background: linear-gradient(to right, #93c5fd, #bae6fd, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  color: #111827;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.hero-cta-primary:hover {
  background: linear-gradient(to right, #fbbf24, #fcd34d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #cbd5e1;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}
.hero-cta-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

/* Carousel Dots */
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  padding: 0;
}
.carousel-dot:hover {
  background: rgba(255,255,255,0.4);
}
.carousel-dot.active {
  width: 32px;
  height: 12px;
  background: #fbbf24;
  box-shadow: 0 4px 14px rgba(251,191,36,0.5);
  border-radius: 6px;
}

/* ═══════════════════════════════════════════
   LAPTOP MOCKUP
   ═══════════════════════════════════════════ */
.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.laptop-glow {
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  opacity: 0.3;
  filter: blur(16px);
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.2), transparent 70%);
}
.laptop-body {
  position: relative;
}
.laptop-bezel {
  position: relative;
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 8px;
  box-shadow: 0 25px 50px -12px rgba(37,99,235,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}
.laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 8px;
  background: #0a0a1a;
  border-radius: 0 0 8px 8px;
}
.laptop-screen {
  position: relative;
  background: #0d1117;
  border-radius: 8px;
  overflow: hidden;
}
.laptop-screen img {
  transition: opacity 0.5s ease;
}
.laptop-base-top {
  background: linear-gradient(to bottom, #1a1a2e, #12122a);
  height: 12px;
  margin: 0 24px;
  border-radius: 0 0 8px 8px;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.laptop-base-bottom {
  background: linear-gradient(to bottom, #12122a, #0a0a1a);
  height: 6px;
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.laptop-reflection {
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 0 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
}

/* ═══════════════════════════════════════════
   MODULE TOGGLE (Diferencial)
   ═══════════════════════════════════════════ */
.module-toggle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.toggle-module-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.toggle-module-item:hover {
  background: rgba(255,255,255,0.06);
}
.toggle-module-item.active {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
}

.toggle-switch {
  width: 36px;
  height: 20px;
  border-radius: 9999px;
  position: relative;
  transition: all 0.3s;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transition: all 0.3s;
  background: rgba(255,255,255,0.4);
}
.toggle-switch.active {
  background: #f59e0b;
}
.toggle-switch.active::after {
  left: 18px;
  background: white;
}

/* ═══════════════════════════════════════════
   MODULE CARD
   ═══════════════════════════════════════════ */
.module-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.15);
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, rgba(245,158,11,0.8), rgba(56,189,248,0.8));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.module-card:hover::before {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════
   FEATURE CARD
   ═══════════════════════════════════════════ */
.feature-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to bottom right, rgba(245,158,11,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   SCREENSHOT CARD
   ═══════════════════════════════════════════ */
.screenshot-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.screenshot-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.screenshot-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(8,14,30,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}
.screenshot-dots {
  display: flex;
  gap: 6px;
}
.screenshot-dot-red { width: 10px; height: 10px; border-radius: 50%; background: rgba(239,68,68,0.8); }
.screenshot-dot-amber { width: 10px; height: 10px; border-radius: 50%; background: rgba(245,158,11,0.8); }
.screenshot-dot-blue { width: 10px; height: 10px; border-radius: 50%; background: rgba(59,130,246,0.8); }
.screenshot-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 8px;
  flex: 1;
}

/* ═══════════════════════════════════════════
   REPORT CARD (White/Light)
   ═══════════════════════════════════════════ */
.report-card {
  position: relative;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.4s;
  cursor: pointer;
}
.report-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.report-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid #f1f5f9;
  z-index: 2;
}
.report-dots { display: flex; gap: 6px; }
.report-dot-red { width: 10px; height: 10px; border-radius: 50%; background: #f87171; }
.report-dot-amber { width: 10px; height: 10px; border-radius: 50%; background: #fbbf24; }
.report-dot-green { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; }
.report-label {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 8px;
  flex: 1;
  text-align: center;
}

.report-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  z-index: 1;
}
.report-card:hover .report-hover-overlay {
  opacity: 1;
}
.report-hover-text {
  color: white;
  font-size: 13px;
  font-weight: 600;
  background: rgba(37,99,235,0.8);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 9999px;
}

/* ═══════════════════════════════════════════
   PLAN CARD
   ═══════════════════════════════════════════ */
.plan-card {
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.15);
}
.plan-card-recommended {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(245,158,11,0.6);
  box-shadow: 0 20px 40px -10px rgba(245,158,11,0.1);
  transform: translateY(-12px);
}
.plan-card-recommended:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 48px -12px rgba(245,158,11,0.15);
}

/* Plan Buttons */
.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.plan-btn-emerald {
  background: transparent;
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
}
.plan-btn-emerald:hover {
  background: rgba(16,185,129,0.1);
}
.plan-btn-sky {
  background: transparent;
  border: 1px solid rgba(56,189,248,0.3);
  color: #7dd3fc;
}
.plan-btn-sky:hover {
  background: rgba(56,189,248,0.1);
}
.plan-btn-amber {
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  color: #111827;
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}
.plan-btn-amber:hover {
  background: linear-gradient(to right, #fbbf24, #fcd34d);
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}
.plan-btn-violet {
  background: transparent;
  border: 1px solid rgba(167,139,250,0.3);
  color: #c4b5fd;
}
.plan-btn-violet:hover {
  background: rgba(167,139,250,0.1);
}

/* Plan Annual Toggle */
.plan-annual-toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════
   TESTIMONIAL CARD
   ═══════════════════════════════════════════ */
.testimonial-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.45);
  animation: wap 2.5s ease-out infinite;
}

/* ═══════════════════════════════════════════
   IMAGE MODAL
   ═══════════════════════════════════════════ */
#image-modal.active {
  display: flex !important;
}

/* ═══════════════════════════════════════════
   SECTION-ICE — Light Theme Override
   ═══════════════════════════════════════════ */
.section-ice {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%) !important;
  position: relative;
}
.section-ice::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148,163,184,0.25), transparent);
  pointer-events: none;
  z-index: 1;
}
.section-ice::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148,163,184,0.25), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Text overrides */
.section-ice [class*="text-white"] { color: #1e293b !important; }
.section-ice [class*="text-blue-100"] { color: #475569 !important; }
.section-ice [class*="text-blue-200"] { color: #64748b !important; }
.section-ice [class*="text-slate-400"] { color: #475569 !important; }
.section-ice [class*="text-slate-500"] { color: #64748b !important; }
.section-ice [class*="text-slate-300"] { color: #475569 !important; }
.section-ice [class*="text-slate-200"] { color: #475569 !important; }
.section-ice h1, .section-ice h2, .section-ice h3 { color: #0f172a !important; }

/* Low-opacity white text */
.section-ice [class*="text-white/20"] { color: #94a3b8 !important; }
.section-ice [class*="text-white/25"] { color: #94a3b8 !important; }
.section-ice [class*="text-white/30"] { color: #64748b !important; }
.section-ice [class*="text-white/35"] { color: #475569 !important; }
.section-ice [class*="text-white/40"] { color: #475569 !important; }
.section-ice [class*="text-white/45"] { color: #334155 !important; }
.section-ice [class*="text-white/50"] { color: #334155 !important; }
.section-ice [class*="text-white/60"] { color: #1e293b !important; }
.section-ice [class*="text-white/65"] { color: #1e293b !important; }
.section-ice [class*="text-white/70"] { color: #0f172a !important; }
.section-ice [class*="text-white/80"] { color: #0f172a !important; }
.section-ice [class*="text-white/90"] { color: #0f172a !important; }

/* Emerald */
.section-ice [class*="text-emerald-300"] { color: #059669 !important; }
.section-ice [class*="text-emerald-400"] { color: #047857 !important; }

/* Violet */
.section-ice [class*="text-violet-300"] { color: #7c3aed !important; }
.section-ice [class*="text-violet-400"] { color: #6d28d9 !important; }

/* Accent colors */
.section-ice [class*="text-amber-200"] { color: #d97706 !important; }
.section-ice [class*="text-amber-300"] { color: #d97706 !important; }
.section-ice [class*="text-amber-400"] { color: #b45309 !important; }
.section-ice [class*="text-amber-500"] { color: #b45309 !important; }
.section-ice [class*="text-cyan-400"] { color: #0891b2 !important; }
.section-ice [class*="text-sky-400"] { color: #0284c7 !important; }
.section-ice [class*="text-sky-200"] { color: #0284c7 !important; }
.section-ice [class*="text-blue-400"] { color: #2563eb !important; }
.section-ice [class*="text-blue-500"] { color: #1d4ed8 !important; }
.section-ice [class*="text-blue-600"] { color: #1e40af !important; }
.section-ice [class*="text-blue-300"] { color: #3b82f6 !important; }
.section-ice [class*="text-red-500"] { color: #dc2626 !important; }
.section-ice [class*="text-red-400"] { color: #ef4444 !important; }
.section-ice [class*="text-red-400/"] { color: #ef4444 !important; }
.section-ice [class*="text-gray-900"] { color: #111827 !important; }
.section-ice [class*="fill-amber"] { fill: #b45309 !important; }
.section-ice [class*="text-slate-800"] { color: #1e293b !important; }

/* Background overrides */
.section-ice [class*="bg-white/"] { background: rgba(255,255,255,0.8) !important; backdrop-filter: blur(12px) !important; }
.section-ice [class*="bg-[#0a1628"] { background: rgba(255,255,255,0.85) !important; backdrop-filter: blur(12px) !important; }
.section-ice [class*="bg-[#080e1e"] { background: rgba(241,245,249,0.95) !important; }
.section-ice [class*="bg-[#060d1b"] { background: rgba(248,250,252,1) !important; }
.section-ice [class*="bg-[#0d1117"] { background: rgba(241,245,249,1) !important; }
.section-ice [class*="bg-[#0b1120"] { background: rgba(248,250,252,1) !important; }
.section-ice [class*="bg-[#1a1a2e"] { background: rgba(241,245,249,0.95) !important; }
.section-ice [class*="bg-[#0e1628"] { background: rgba(255,255,255,0.7) !important; }
.section-ice [class*="bg-[#0f172a"] { background: rgba(248,250,252,1) !important; }

/* Border overrides */
.section-ice [class*="border-white/"] { border-color: rgba(148,163,184,0.2) !important; }
.section-ice [class*="border-blue-500/"] { border-color: rgba(148,163,184,0.2) !important; }
.section-ice [class*="border-amber-500/"] { border-color: rgba(180,83,9,0.3) !important; }

/* Card shadows on light bg */
.section-ice [class*="hover:shadow-xl"] { --tw-shadow: 0 10px 40px -10px rgba(0,0,0,0.08) !important; }
.section-ice [class*="shadow-xl"] { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1), 0 4px 12px -2px rgba(0,0,0,0.04) !important; }
.section-ice [class*="shadow-lg"] { box-shadow: 0 8px 30px -8px rgba(0,0,0,0.08), 0 4px 8px -2px rgba(0,0,0,0.03) !important; }
.section-ice [class*="shadow-2xl"] { box-shadow: 0 20px 60px -15px rgba(0,0,0,0.12) !important; }

/* Override module/feature/plan cards inside section-ice */
.section-ice .module-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(148,163,184,0.2);
}
.section-ice .module-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}
.section-ice .feature-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(148,163,184,0.2);
}
.section-ice .feature-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}
.section-ice .testimonial-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(148,163,184,0.2);
}
.section-ice .testimonial-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}
.section-ice .plan-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(148,163,184,0.2);
}
.section-ice .plan-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}
.section-ice .plan-card-recommended {
  background: rgba(255,255,255,0.85);
  border-color: rgba(180,83,9,0.5);
}
.section-ice .screenshot-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(148,163,184,0.2);
}
.section-ice .screenshot-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}
.section-ice .module-toggle-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(148,163,184,0.2);
}
.section-ice .toggle-module-item.active {
  background: rgba(245,158,11,0.1);
  border-color: rgba(180,83,9,0.3);
}
.section-ice .toggle-switch {
  background: rgba(148,163,184,0.2);
}
.section-ice .toggle-switch.active {
  background: #d97706;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .plan-card-recommended {
    transform: translateY(0);
  }
  .plan-card-recommended:hover {
    transform: translateY(-6px);
  }
}
