:root {
  --accent: #FD300B;
  --accent-rgb: 253, 48, 11;
  --accent-text: #ffffff;
  --bg: #FAF7F2;
  --text: #2C3E50;
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

::selection { background: rgba(253, 48, 11, 0.2); color: #2C3E50; }


img { transition: opacity 0.4s ease; }

/* FAQ Accordion Arrow */
details[open] > summary svg { transform: rotate(180deg); }
details summary::-webkit-details-marker { display: none; }
details summary { list-style: none; }

/* ═══ AMBIENT ANIMATIONS — always running, no scroll needed ═══ */

/* CTA Button Pulse — subtle glow breathing */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253, 48, 11, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(253, 48, 11, 0.15); }
}
.cta-pulse {
  animation: ctaPulse 3s ease-in-out infinite;
}
.cta-pulse:hover {
  animation: none;
  box-shadow: 0 0 30px 8px rgba(253, 48, 11, 0.25);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Floating element — gentle up-down hover */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float 6s ease-in-out infinite; }
.animate-float-delay { animation: float 4s ease-in-out 1s infinite; }

/* Card Shimmer — light sweep on hover */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.card-shimmer {
  position: relative;
  overflow: hidden;
}
.card-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(253, 48, 11, 0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card-shimmer:hover::after {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

/* Gradient Background Shift — slow ambient color movement */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.gradient-shift {
  background-size: 200% 200%;
  animation: gradientShift 8s ease-in-out infinite;
}

/* Border Glow — subtle accent border pulse */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(253, 48, 11, 0.08); }
  50% { border-color: rgba(253, 48, 11, 0.25); }
}
.border-glow {
  animation: borderGlow 4s ease-in-out infinite;
}

/* Accent Dot Pulse — for status indicators */
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.dot-pulse {
  animation: dotPulse 2s ease-in-out infinite;
}

/* Subtle Rotate — for decorative elements */
@keyframes subtleRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.animate-spin-slow { animation: subtleRotate 20s linear infinite; }

/* Scale Breathe — for featured cards or icons */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.animate-breathe { animation: breathe 4s ease-in-out infinite; }

/* ═══ CSS REVEAL SYSTEM — bulletproof scroll animations ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ DECORATIVE SECTION BACKGROUNDS ═══ */

/* Radial accent glow — large soft circle in corner */
.bg-glow-tl { position: relative; }
.bg-glow-tl::before {
  content: ''; position: absolute; top: -20%; left: -10%; width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(253, 48, 11, 0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.bg-glow-br { position: relative; }
.bg-glow-br::before {
  content: ''; position: absolute; bottom: -20%; right: -10%; width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(253, 48, 11, 0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Diagonal section divider */
.section-divider-top { position: relative; }
.section-divider-top::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom right, var(--bg) 49.5%, transparent 50.5%);
  pointer-events: none; z-index: 1;
}

/* Subtle grid pattern overlay */
.bg-grid { position: relative; }
.bg-grid::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(253, 48, 11, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(253, 48, 11, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* Dot pattern overlay */
.bg-dots { position: relative; }
.bg-dots::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(253, 48, 11, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none; z-index: 0;
}

/* Large watermark text */
.watermark { position: relative; overflow: hidden; }
.watermark::before {
  content: attr(data-watermark);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-12deg);
  font-size: clamp(6rem, 15vw, 14rem); font-weight: 900; white-space: nowrap;
  color: rgba(253, 48, 11, 0.025);
  pointer-events: none; z-index: 0; line-height: 1;
  font-family: Inter, system-ui, sans-serif;
}

/* Gradient fade top/bottom on sections */
.gradient-fade-top { position: relative; }
.gradient-fade-top::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, rgba(253, 48, 11, 0.03), transparent);
  pointer-events: none; z-index: 0;
}

/* Accent line accent at top of section */
.accent-line-top { position: relative; }
.accent-line-top::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253, 48, 11, 0.3), transparent);
  pointer-events: none; z-index: 1;
}

/* ═══ PROCESS CARD HOVER EFFECTS ═══ */

/* Base hover for all process cards */
.process-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}
.process-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(253, 48, 11, 0.2);
}

/* Variant 1: Color intensification on hover */
.process-card-glow:hover {
  background: linear-gradient(135deg, rgba(253, 48, 11, 0.12) 0%, rgba(253, 48, 11, 0.04) 100%) !important;
  border-color: rgba(253, 48, 11, 0.4) !important;
}

/* Variant 2: Accent left-border reveal */
.process-card-accent:hover {
  border-left: 3px solid var(--accent) !important;
  padding-left: calc(1.5rem - 3px);
}

/* Variant 3: Lift + glow ring */
.process-card-ring:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 0 2px rgba(253, 48, 11, 0.3), 0 0 30px rgba(253, 48, 11, 0.1);
}

/* Variant 4: Background slide-in */
@keyframes bgSlideIn {
  0% { background-position: -100% 0; }
  100% { background-position: 0% 0; }
}
.process-card-slide {
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, transparent 50%, rgba(253, 48, 11, 0.08) 50%);
  background-position: -100% 0;
}
.process-card-slide:hover {
  animation: bgSlideIn 0.4s ease forwards;
}

/* Variant 5: Number highlight — makes step number pop on hover */
.process-card:hover .step-number {
  color: var(--accent) !important;
  opacity: 0.15 !important;
  transform: scale(1.1);
  transition: all 0.4s ease;
}

/* All process cards: smooth number transition */
.process-card .step-number {
  transition: all 0.4s ease;
}


/* Duplicate Gemini CSS block removed — all rules already defined above */

/* ═══ PARTNER LOGO CARDS ═══ */
.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease,
              border-color 0.2s ease;
  cursor: pointer;
}
.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.12),
              0 0 0 1px rgba(253, 48, 11, 0.15);
  border-color: rgba(253, 48, 11, 0.2);
}

/* Logo area */
.partner-card .partner-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  transition: transform 0.2s ease;
}
.partner-card:hover .partner-logo {
  transform: scale(1.05);
}
.partner-card .partner-logo img {
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s ease;
}
.partner-card:hover .partner-logo img {
  filter: grayscale(0%);
}

/* CTA strip at bottom — slides up on hover */
.partner-card .partner-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  background: var(--accent, #FD300B);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
}
.partner-card:hover .partner-cta {
  transform: translateY(0);
}

/* Subtle top accent line on hover */
.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, #FD300B);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  z-index: 5;
  border-radius: 0 0 3px 3px;
}
.partner-card:hover::before {
  transform: scaleX(1);
}

/* ═══ FAQ HOVER EFFECTS ═══ */
.faq-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.08);
  border-color: rgba(253, 48, 11, 0.15);
}
.faq-item:hover .faq-icon {
  background-color: rgba(253, 48, 11, 0.08);
}
.faq-item[open] {
  box-shadow: 0 12px 30px -8px rgba(253, 48, 11, 0.1);
  border-color: rgba(253, 48, 11, 0.2);
}

/* FAQ Details Reset */
details > summary::-webkit-details-marker {
  display: none;
}

/* WhatsApp Floating Button */
@keyframes whatsapp-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: whatsapp-bob 3s ease-in-out infinite, whatsapp-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}