/* ===========================
   RATE BUZZ — style.css
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #7C3AED;
  --accent: #06B6D4;
  --gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --gradient-soft: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(124,58,237,0.08) 100%);
  --dark: #0F172A;
  --dark-2: #1E293B;
  --muted: #64748B;
  --light: #F8FAFC;
  --border: rgba(37,99,235,0.12);
  --shadow-sm: 0 2px 12px rgba(37,99,235,0.08);
  --shadow-md: 0 8px 32px rgba(37,99,235,0.14);
  --shadow-lg: 0 20px 60px rgba(37,99,235,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Open Sans", sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========== SKIP NAV ========== */
.skip-nav {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--primary); color: #fff; padding: 0.5rem 1rem;
  border-radius: var(--radius-sm); text-decoration: none; font-weight: 600;
  transition: top 0.2s;
}
.skip-nav:focus { top: 1rem; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; }
p { font-size: 1.05rem; color: var(--muted); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVBAR ========== */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: box-shadow 0.3s, padding 0.3s;
  z-index: 1000;
}
.navbar.scrolled { box-shadow: var(--shadow-md); padding: 0.6rem 0; }

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.navbar-brand span { -webkit-text-fill-color: transparent; }

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-size: 0.95rem;
}
.nav-link:hover { background: var(--gradient-soft); color: var(--primary) !important; }

.btn-demo-nav {
  background: var(--gradient);
  color: #fff !important;
  border-radius: 10px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-demo-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,99,235,0.4); }

/* ========== BUTTONS ========== */
.btn-primary-rb {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
  font-family: var(--font-body);
}
.btn-primary-rb:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.45); color: #fff; }

.btn-outline-rb {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-outline-rb:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ========== NAVBAR LOGO ========== */
.navbar-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* ========== HERO ========== */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 50%, #f0f9ff 100%);
}

/* Decorative dots bg */
.hero-bg-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-dot-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-bg-dot-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  bottom: -200px; right: -100px;
}

/* Plane trail */
.hero-plane-trail {
  position: absolute;
  top: 80px; right: 60px;
  width: 400px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-plane-trail svg:first-child {
  width: 100%;
}
.plane-icon {
  position: absolute;
  top: 18px; right: 2px;
  width: 22px !important;
  height: 22px !important;
  animation: flyPlane 4s ease-in-out infinite alternate;
}
@keyframes flyPlane {
  from { transform: translate(0,0) rotate(-10deg); }
  to   { transform: translate(-8px, -6px) rotate(-15deg); }
}

.hero-container { position: relative; z-index: 1; }

.hero-left { padding-right: 2rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero-accent-word {
  color: #F97316;
  -webkit-text-fill-color: #F97316;
}

.hero-desc { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.8rem; max-width: 500px; }

/* Trust badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-2);
}
.trust-badge-icon { font-size: 1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.hero-stat .num:has(+ .label) { margin-bottom: 0.15rem; }
.hero-stat .label { font-size: 0.75rem; color: var(--muted); font-weight: 500; }

/* ── RIGHT SIDE ── */
.hero-right { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}

.hero-hotel-img-bg {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 520px;
  background: linear-gradient(135deg,#1e3a5f,#2d6a9f);
  box-shadow: 0 32px 80px rgba(37,99,235,0.22);
}
.hero-hotel-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.hero-hotel-fallback {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(160deg,#1a3556 0%, #2d6a9f 50%, #0f2d4a 100%); */
}

/* Search Card */
.hero-search-card {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.16);
  z-index: 10;
}
.search-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.search-field:focus-within { border-color: var(--primary); }
.search-field-icon { color: #94A3B8; flex-shrink: 0; display: flex; align-items: center; }
.search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: var(--dark);
  width: 100%;
  font-family: var(--font-body);
}
.search-input::placeholder { color: #94A3B8; }
.search-input-block { display: flex; flex-direction: column; }
.search-input-label { font-size: 0.7rem; font-weight: 600; color: #64748B; margin-bottom: 1px; }
.search-input-sm {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  color: var(--dark);
  font-family: var(--font-body);
}
.search-input-sm::placeholder { color: #94A3B8; }

.search-row-two {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.search-field.half { flex: 1; margin-bottom: 0; }

.btn-search-hotels {
  width: 100%;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(37,99,235,0.35);
  margin-top: 0.25rem;
}
.btn-search-hotels:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,99,235,0.45);
}

/* Responsive hero */
@media (max-width: 991px) {
  .hero-section { padding: 100px 0 50px; }
  .hero-left { padding-right: 0; margin-bottom: 2.5rem; }
  .hero-hotel-img-bg { height: 380px; }
  .hero-search-card { width: calc(100% - 32px); bottom: 20px; }
  .hero-plane-trail { display: none; }
}
@media (max-width: 576px) {
  .hero-hotel-img-bg { height: 300px; }
  .hero-search-card { position: relative; bottom: auto; left: auto; transform: none; width: 100%; max-width: 100%; margin-top: -40px; border-radius: 16px; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat .num { font-size: 1.1rem; }
}

/* ========== TRUST LOGOS ========== */
.trust-section {
  padding: 3rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label { text-align: center; font-size: 0.85rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.trust-logos-wrap { overflow: hidden; }
.trust-logos {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scrollLogos 22s linear infinite;
  width: max-content;
}
.trust-logos:hover { animation-play-state: paused; }
.trust-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #CBD5E1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.3s;
}
.trust-logo:hover { color: var(--primary); }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SECTION COMMONS ========== */
.section-pad { padding: 100px 0; }
.section-tag { display: inline-block; background: var(--gradient-soft); color: var(--primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 1rem; border-radius: 100px; border: 1px solid var(--border); margin-bottom: 1rem; }
.section-title { margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; color: var(--muted); max-width: 560px; }
.section-header { margin-bottom: 4rem; }

/* ========== FEATURES ========== */
.features-section { background: #fff; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.25); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--dark); }
.feature-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }

.icon-bg-1 { background: #EEF2FF; color: #4338CA; }
.icon-bg-2 { background: #F0FDF4; color: #15803D; }
.icon-bg-3 { background: #FFF7ED; color: #C2410C; }
.icon-bg-4 { background: #F0F9FF; color: #0369A1; }
.icon-bg-5 { background: #FDF4FF; color: #9333EA; }
.icon-bg-6 { background: #FFFBEB; color: #B45309; }

/* ========== HOW IT WORKS ========== */
.how-section { background: var(--light); }
.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.step-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
  box-shadow: var(--shadow-sm);
}
.step-card h3 { margin-bottom: 0.7rem; }
.step-card p { font-size: 0.92rem; max-width: 260px; margin: 0 auto; }
.step-connector {
  position: absolute;
  top: 70px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: var(--gradient);
  opacity: 0.3;
}
@media (max-width: 768px) { .step-connector { display: none; } }

/* ========== MODULES ========== */
.modules-section { background: var(--dark); color: #fff; }
.modules-section .section-tag { background: rgba(255,255,255,0.07); color: var(--accent); border-color: rgba(255,255,255,0.1); }
.modules-section .section-title { color: #fff; }
.modules-section .section-desc { color: #94A3B8; }

.module-card {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  padding: 2.2rem;
  background: rgba(255,255,255,0.03);
  height: 100%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}
.module-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(37,99,235,0.4); transform: translateY(-4px); }
.module-icon { font-size: 2.2rem; margin-bottom: 1.1rem; display: block; }
.module-card h3 { color: #fff; margin-bottom: 0.7rem; }
.module-card p { color: #94A3B8; font-size: 0.92rem; }
.module-card ul { list-style: none; padding: 0; margin-top: 1rem; }
.module-card ul li { color: #CBD5E1; font-size: 0.88rem; padding: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem; }
.module-card ul li::before { content: '→'; color: var(--accent); font-weight: 700; }

/* ========== BENEFITS ========== */
.benefits-section { background: #fff; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.benefit-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.benefit-item p { font-size: 0.88rem; margin: 0; }

.benefits-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.benefits-img-wrap img { width: 100%; display: block; }
.benefits-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.benefits-badge .big-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.benefits-badge small { color: var(--muted); font-size: 0.78rem; }

/* ========== PRICING ========== */
.pricing-section { background: var(--light); }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.28s, box-shadow 0.28s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.5rem; }
.plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--dark); line-height: 1; }
.plan-price span { font-size: 1.1rem; color: var(--muted); font-weight: 400; }
.plan-price sup { font-size: 1.3rem; font-weight: 700; vertical-align: top; margin-top: 0.5rem; color: var(--primary); }
.plan-desc { font-size: 0.9rem; color: var(--muted); margin: 0.5rem 0 1.5rem; }
.pricing-divider { border: 0; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pricing-feature { display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0; font-size: 0.92rem; color: var(--dark-2); }
.pricing-feature .check { color: #10B981; font-weight: 700; font-size: 1rem; }
.pricing-feature .cross { color: #CBD5E1; }
.btn-plan { width: 100%; margin-top: 1.5rem; text-align: center; justify-content: center; }
.btn-plan-outline { width: 100%; margin-top: 1.5rem; text-align: center; justify-content: center; display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border: 2px solid var(--border); border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; cursor: pointer; color: var(--dark); text-decoration: none; transition: all 0.2s; font-family: var(--font-body); background: transparent; }
.btn-plan-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: #fff; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: transform 0.28s, box-shadow 0.28s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.97rem; color: var(--dark-2); line-height: 1.7; margin-bottom: 1.4rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin: 0; }
.author-role { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ========== FAQ ========== */
.faq-section { background: var(--light); }
.accordion-item { border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: 0.8rem !important; overflow: hidden; }
.accordion-button { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--dark) !important; background: #fff !important; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--primary) !important; background: var(--gradient-soft) !important; }
.accordion-button::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232563EB' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important; }
.accordion-body { color: var(--muted); font-size: 0.95rem; background: #fff; }

/* ========== FINAL CTA ========== */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section p { color: #94A3B8; font-size: 1.1rem; margin-bottom: 2rem; }
.cta-section .btn-primary-rb { font-size: 1.1rem; padding: 1rem 2.5rem; }

/* ========== CONTACT ========== */
.contact-section { background: #fff; padding: 100px 0; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--dark-2); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail .icon { width: 38px; height: 38px; border-radius: 9px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

.contact-form-wrap {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--dark-2); margin-bottom: 0.4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); outline: none; }
.form-control::placeholder { color: #CBD5E1; }
textarea.form-control { min-height: 130px; resize: vertical; }

/* ========== FOOTER ========== */
footer {
  background: var(--dark);
  color: #94A3B8;
  padding: 70px 0 30px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.9rem; color: #b3bcca; max-width: 260px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.7rem; }
.social-btn { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #94A3B8; text-decoration: none; font-size: 0.9rem; transition: background 0.2s, color 0.2s; }
.social-btn:hover { background: var(--primary); color: #fff; }

.footer-heading { font-family: var(--font-display); color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #b3bcca; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.06); margin: 2.5rem 0 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: #8290a4; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.85rem; color: #475569; text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }

/* ========== FLOATING BUTTONS ========== */
.float-wa {
  position: fixed;
  bottom: 30px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
  font-size: 1.5rem;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); color: #fff; }

.float-ai {
  position: fixed;
  bottom: 30px; left: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,99,235,0.4);
  z-index: 9999;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.4rem;
  color: #fff;
}
.float-ai:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,99,235,0.5); }
.float-label {
  position: fixed;
  bottom: 96px; left: 26px;
  background: var(--dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  z-index: 9998;
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* ========== AI CHAT MODAL ========== */
.ai-modal { display: none; position: fixed; bottom: 100px; left: 26px; width: 340px; background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); z-index: 9997; border: 1px solid var(--border); overflow: hidden; flex-direction: column; max-height: 500px; }
.ai-modal.open { display: flex; }
.ai-modal-header { background: var(--gradient); padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; }
.ai-modal-header h4 { color: #fff; font-size: 1rem; margin: 0; font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.ai-modal-header h4 span { font-size: 1.2rem; }
.ai-close-btn { background: rgba(255,255,255,0.2); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.ai-close-btn:hover { background: rgba(255,255,255,0.35); }
.ai-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.ai-msg { max-width: 85%; border-radius: 12px; padding: 0.65rem 0.9rem; font-size: 0.88rem; line-height: 1.5; }
.ai-msg.bot { background: var(--gradient-soft); color: var(--dark); border-bottom-left-radius: 3px; align-self: flex-start; border: 1px solid var(--border); }
.ai-msg.user { background: var(--gradient); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }
.ai-input-row { display: flex; gap: 0.5rem; padding: 0.8rem; border-top: 1px solid var(--border); background: #fff; }
.ai-input { flex: 1; border: 1.5px solid var(--border); border-radius: 10px; padding: 0.5rem 0.8rem; font-size: 0.88rem; outline: none; font-family: var(--font-body); }
.ai-input:focus { border-color: var(--primary); }
.ai-send-btn { background: var(--gradient); border: none; color: #fff; width: 36px; height: 36px; border-radius: 9px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.15s; }
.ai-send-btn:hover { transform: scale(1.08); }

/* ========== GSAP INIT ========== */
.gsap-fade { opacity: 0; transform: translateY(30px); }
.gsap-slide-left { opacity: 0; transform: translateX(-30px); }
.gsap-slide-right { opacity: 0; transform: translateX(30px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero-section { padding: 100px 0 60px; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { margin-top: 3rem; }
  .hero-float-card.card-1 { left: 0; top: 10px; }
  .hero-float-card.card-2 { right: 0; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 576px) {
  .hero-stats { gap: 1.5rem; }
  .ai-modal { width: calc(100vw - 52px); left: 26px; }
}

/* ========== PLACEHOLDER IMAGES ========== */
.img-placeholder {
  width: 100%;
  background: url(https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1200&q=80&fm=webp);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  border: 2px dashed rgba(37,99,235,0.2);
}
.img-placeholder.hero-ph { height: 400px; font-size: 1.1rem; }
.img-placeholder.feat-ph { height: 280px; font-size: 0.85rem; }
.logo-ph {
  height: 32px;
  width: 100px;
  border-radius: 6px;
  background: #E2E8F0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.05em;
}
