/* ===========================
   CSS Reset & Base Styles
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #fd5b49;
  --primary-dark: #e04535;
  --primary-light: #ff7b6b;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray-dark: #2f2f2f;
  --gray: #475569;
  --gray-mid: #94a3b8;
  --gray-light: #e2e8f0;
  --bg-soft: #f6f7f9;
  --bg-card: #f8f9fb;
  --white: #ffffff;
  --gradient-text: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #ea580c 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-h: 70px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   Announcement Bar
   =========================== */
.announcement-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 10px 20px;
  text-align: center;
  font-size: 13.5px;
  color: var(--gray-dark);
  position: sticky;
  top: 0;
  z-index: 1001;
  transition: var(--transition);
}

.announcement-bar.hidden {
  display: none;
}

.highlight-red {
  color: var(--primary);
  font-weight: 600;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: sticky;
  top: 45px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.navbar.scrolled {
  top: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* ── Navbar: full brand logo (cube + text) ── */
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  /* The generated image has a red bg — crop to logo area only */
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
  opacity: 0.92;
}

/* ── Footer: icon-only logo ── */
.footer-logo { text-decoration: none; }
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  filter: brightness(1.05);
  transition: transform 0.25s ease;
  margin-bottom: 4px;
}
.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

/* ── Modal: icon-only logo ── */
.modal-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

/* Legacy text logo (kept for fallback) */
.logo-icon { display: flex; align-items: center; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.logo-text strong { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--black);
  background: var(--bg-soft);
}

.arrow {
  font-size: 10px;
  opacity: 0.6;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--black);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-track {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-track:hover {
  color: var(--black);
  background: var(--bg-soft);
}

.btn-book {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(253, 91, 73, 0.35);
}

.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 91, 73, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background: var(--white);
}

/* Background grid cells */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grid-cell {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  opacity: 0.6;
  animation: gridPulse 4s ease-in-out infinite;
}

.grid-cell:nth-child(even) {
  animation-delay: 2s;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.25; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Partner Badge */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-dark);
}

.partner-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}

.avatar:first-child {
  margin-left: 0;
}

.partner-arrow {
  margin-left: 4px;
  display: flex;
  align-items: center;
}

/* Hero Title */
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
}

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

.hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--gray);
  line-height: 1.65;
  max-width: 560px;
}

.hero-subtitle strong {
  color: var(--black);
  font-weight: 600;
}

/* CTA Button */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-arrow {
  opacity: 0.7;
  transform: scaleX(-1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(253, 91, 73, 0.4);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253, 91, 73, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  font-size: 17px;
  padding: 16px 36px;
}

.hero-penalty {
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: -6px;
}

/* Hero Video Card */
.hero-video-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin-top: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.2);
}

.video-card-inner {
  background: #111;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.video-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
}

.video-card-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.vc-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.video-controls {
  display: flex;
  gap: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2b5a 50%, #071630 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 100, 255, 0.2) 0%, transparent 70%);
}

.video-overlay-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.video-big-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.play-btn-large {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.play-btn-large:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.video-progress {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #1a1a1a;
}

.progress-bar {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.progress-fill {
  height: 100%;
  width: 71%;
  background: var(--primary);
  border-radius: 3px;
}

.progress-dot {
  position: absolute;
  top: 50%;
  left: 71%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid white;
}

.time-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: right;
}

/* ===========================
   Animations
   =========================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Problem Section
   =========================== */
.problem-section {
  padding: 60px 24px 80px;
  background: var(--white);
  overflow: hidden;
}

.problem-container {
  max-width: 900px;
  margin: 0 auto;
}

.chaos-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.person-figure {
  z-index: 2;
  position: relative;
}

.confused-person-img {
  width: 260px;
  height: auto;
  filter: contrast(1.1);
}

.chaos-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chaos-label {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.chaos-label.top-left {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 900;
}

.label-1 { top: 15%; left: 10%; transform: rotate(-8deg); }
.label-2 { top: 35%; left: 2%; transform: rotate(-5deg); border: 2px solid var(--black); padding: 6px 16px; border-radius: 50px; }
.label-3 { top: 55%; left: 8%; transform: rotate(-4deg); }
.label-4 { top: 72%; left: 5%; transform: rotate(-6deg); }
.label-5 { top: 15%; right: 5%; transform: rotate(6deg); }
.label-6 { top: 32%; right: 2%; transform: rotate(4deg); }
.label-7 { top: 50%; right: 0%; transform: rotate(5deg); }
.label-8 { top: 65%; right: 4%; transform: rotate(4deg); }

/* Connecting lines using SVG pseudo-element effect */
.chaos-label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  opacity: 0.3;
  border-radius: 2px;
}

.label-2::after { display: none; }

@keyframes chaosFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -4deg)); }
  50% { transform: translateY(-4px) rotate(var(--rot, -4deg)); }
}

.animate-chaos {
  animation: chaosFloat 3s ease-in-out infinite;
}

.label-1 { --rot: -8deg; }
.label-2 { --rot: -5deg; }
.label-3 { --rot: -4deg; }
.label-4 { --rot: -6deg; }
.label-5 { --rot: 6deg; }
.label-6 { --rot: 4deg; }
.label-7 { --rot: 5deg; }
.label-8 { --rot: 4deg; }

/* ===========================
   Section Shared Styles
   =========================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray);
  background: var(--bg-soft);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.65;
  margin: 0 auto;
}

/* ===========================
   Features Section
   =========================== */
.features-section {
  padding: 80px 24px;
  background: var(--bg-soft);
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,91,73,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(253,91,73,0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.35;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Center highlighted card */
.feature-card-center {
  border: 1.5px solid var(--gray-light);
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
}

/* Box animation card */
.feature-card-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: var(--white);
  position: relative;
}

.mmr-box-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmr-box {
  animation: floatBox 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.box-lines {
  position: absolute;
  inset: -30px;
}

.box-line {
  position: absolute;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 2px;
  animation: linePulse 2s ease-in-out infinite;
}

.box-line-top { top: 0; left: 30%; right: 30%; height: 2px; }
.box-line-bottom { bottom: 0; left: 30%; right: 30%; height: 2px; animation-delay: 0.5s; }
.box-line-left { left: 0; top: 30%; bottom: 30%; width: 2px; animation-delay: 0.25s; }
.box-line-right { right: 0; top: 30%; bottom: 30%; width: 2px; animation-delay: 0.75s; }

@keyframes linePulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.5; }
}

/* ===========================
   Partners Section
   =========================== */
.partners-section {
  padding: 80px 24px;
  background: var(--white);
  overflow: hidden;
}

.partners-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.partners-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 48px;
}

.partners-scroll-track {
  overflow: hidden;
  position: relative;
}

.partners-scroll-track::before,
.partners-scroll-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.partners-scroll-track::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.partners-scroll-track::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollPartners 18s linear infinite;
}

@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 120px;
  cursor: pointer;
  transition: var(--transition);
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  filter: grayscale(0.3);
  transition: var(--transition);
}

.partner-item:hover .partner-logo-box {
  filter: grayscale(0);
}

.partner-item p {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
  padding: 80px 24px;
  background: var(--white);
  text-align: center;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: var(--black);
}

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

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  padding: 60px 24px 80px;
  background: var(--white);
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text-block h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 16px;
}

.cta-text-block p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
}

.cta-illustration {
  display: flex;
  justify-content: center;
  position: relative;
}

.cta-chaos {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-person-img {
  width: 240px;
  height: auto;
}

.cta-big-symbol {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

/* ===========================
   Process Section
   =========================== */
.process-section {
  padding: 80px 24px;
  background: var(--bg-soft);
  text-align: center;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(253,91,73,0.2);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: rgba(253,91,73,0.08);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
}

.step-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.step-connector {
  font-size: 24px;
  color: var(--gray-mid);
  padding: 0 12px;
  flex-shrink: 0;
  font-weight: 300;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
  padding: 80px 24px;
  background: var(--white);
  text-align: center;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 14.5px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray-mid);
}

/* ===========================
   Book Banner
   =========================== */
.book-banner {
  padding: 80px 24px;
  background: linear-gradient(135deg, #fd5b49 0%, #e04535 40%, #c73d2a 100%);
  position: relative;
  overflow: hidden;
}

.book-banner-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.book-banner-content h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.book-banner-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}

.book-banner-content .btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.book-banner-content .btn-primary:hover {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}

.penalty-text {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Decorative circles */
.book-banner-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.deco-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -80px;
  animation: deco-spin 20s linear infinite;
}

.deco-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: 10%;
  animation: deco-spin 15s linear infinite reverse;
}

.deco-3 {
  width: 120px;
  height: 120px;
  top: 20px;
  right: 5%;
}

@keyframes deco-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 70px 24px 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.6);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   WhatsApp Button
   =========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-illustration {
    order: -1;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chaos-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 20px;
  }

  .nav-actions .btn-track {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .chaos-label {
    display: none;
  }

  .label-2, .label-5 {
    display: block;
    font-size: 11px;
  }

  .label-2 {
    left: 1%;
    top: 40%;
  }

  .label-5 {
    right: 1%;
    top: 15%;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 60px;
  }

  .announcement-bar {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero {
    padding: 50px 16px 40px;
  }

  .partner-badge {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    gap: 8px;
  }

  .cta-arrow {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .book-banner-content h2 {
    font-size: 22px;
  }
}

/* ===========================
   Scroll reveal stagger
   =========================== */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.10s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.20s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.30s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.35s; }
.features-grid .feature-card:nth-child(8) { transition-delay: 0.40s; }
.features-grid .feature-card:nth-child(9) { transition-delay: 0.45s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.25s; }

/* ===========================
   Stats Section
   =========================== */
.stats-section {
  padding: 0 24px;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.stats-container {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  box-shadow: var(--shadow-md);
  transform: translateY(-36px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fd5b49, #e04535);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
  max-width: 110px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--gray-light);
  flex-shrink: 0;
  margin: 0 12px;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
  padding: 80px 24px;
  background: var(--bg-soft);
  text-align: center;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: rgba(253, 91, 73, 0.3);
  box-shadow: 0 4px 20px rgba(253, 91, 73, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
}

.faq-question span {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 4px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}

/* FAQ stagger */
.faq-item:nth-child(1) { transition-delay: 0.00s; }
.faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-item:nth-child(3) { transition-delay: 0.12s; }
.faq-item:nth-child(4) { transition-delay: 0.18s; }
.faq-item:nth-child(5) { transition-delay: 0.24s; }
.faq-item:nth-child(6) { transition-delay: 0.30s; }

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 998;
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              background 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(253,91,73,0.4);
  transform: translateY(-3px) scale(1.05);
}

.back-to-top:active {
  transform: translateY(0) scale(0.96);
}

/* ===========================
   Responsive – new sections
   =========================== */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 28px;
    transform: translateY(-20px);
    padding: 32px 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  .faq-question span {
    font-size: 14px;
  }

  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    transform: translateY(-12px);
  }

  .stat-number {
    font-size: 36px;
  }
}

/* ===========================
   Extra polish / micro-animations
   =========================== */

/* Smooth underline nav hover */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Testimonial card quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 72px;
  font-family: 'Montserrat', serif;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonial-card {
  position: relative;
  overflow: hidden;
}

/* Section title underline accent */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* Feature icon shimmer on hover */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.feature-card:hover .feature-icon {
  background: linear-gradient(
    120deg,
    var(--primary) 0%,
    #ff9180 40%,
    var(--primary-dark) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s ease infinite;
}

/* Quote section decorative quotes */
.quote-container::before,
.quote-container::after {
  content: '"';
  display: block;
  font-family: 'Montserrat', serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 0.6;
  color: var(--gray-light);
}
.quote-container::before {
  text-align: left;
  margin-bottom: 12px;
}
.quote-container::after {
  content: '"';
  text-align: right;
  margin-top: 12px;
}

/* CTA section left border accent */
.cta-text-block {
  position: relative;
  padding-left: 28px;
}
.cta-text-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), transparent);
  border-radius: 4px;
}

/* ===========================
   Lead Capture Modal
   =========================== */

/* Partner badge as button */
button.partner-badge {
  background: var(--white);
  cursor: pointer;
  border: 1.5px solid var(--gray-light);
  font-family: inherit;
  transition: var(--transition);
}
button.partner-badge:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(253,91,73,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-light) transparent;
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
  z-index: 2;
}
.modal-close:hover {
  background: #fee2e2;
  color: var(--primary);
  transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-right: 40px;
}
.modal-logo { flex-shrink: 0; }
.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 3px;
}
.modal-subtitle {
  font-size: 13px;
  color: var(--gray);
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
}
.required { color: var(--primary); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--black);
  background: var(--bg-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(253,91,73,0.12);
}
.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}
.form-group textarea { resize: vertical; min-height: 88px; }

.field-error {
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  min-height: 15px;
  display: block;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(253,91,73,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.btn-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(253,91,73,0.5);
}
.btn-submit:disabled { opacity: 0.72; cursor: not-allowed; transform: none; }

/* Spinner */
.btn-submit-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: modalSpin 0.7s linear infinite;
  flex-shrink: 0;
}
.btn-submit.loading .btn-submit-loader { display: block; }
.btn-submit.loading .btn-submit-text   { opacity: 0.75; }
@keyframes modalSpin { to { transform: rotate(360deg); } }

/* Privacy text */
.form-privacy {
  font-size: 12px;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 12px;
}

/* Success State */
.modal-success { text-align: center; padding: 20px 0 8px; }
.success-icon {
  font-size: 54px;
  margin-bottom: 16px;
  display: block;
  animation: successPop 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.modal-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.modal-success p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 28px;
}
.btn-close-success {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.btn-close-success:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 520px) {
  .modal-box { padding: 28px 18px 22px; border-radius: var(--radius-lg); }
  .modal-title { font-size: 17px; }
  .modal-header { margin-bottom: 20px; }
}

/* ===========================
   Restaurant Types Section
   =========================== */
.rt-section {
  padding: 80px 24px;
  background: var(--white);
  text-align: center;
}

.rt-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tab Pills */
.rt-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 0;
  padding: 6px;
  background: var(--bg-soft);
  border-radius: 60px;
  border: 1.5px solid var(--gray-light);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.rt-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.rt-tab:hover { color: var(--black); background: rgba(253,91,73,0.07); }
.rt-tab.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

/* Panels */
.rt-panels { margin-top: 48px; }
.rt-panel { display: none; animation: rtFadeIn 0.4s ease forwards; }
.rt-panel.active { display: block; }

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

/* Panel Grid: text left, visual right */
.rt-panel-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  text-align: left;
}

/* Text Side */
.rt-type-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.rt-panel-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.rt-panel-text > p {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Feature List */
.rt-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.rt-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-dark);
  line-height: 1.5;
}
.rt-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #edfdf5;
  color: #16a34a;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Mini Stats */
.rt-stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rt-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rt-mini-stat strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rt-mini-stat span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.rt-cta { margin-top: 4px; }

/* Visual Card */
.rt-visual-card {
  background: var(--card-color, #fd5b49);
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--card-color) 30%, transparent);
  transition: transform 0.4s ease;
}
.rt-visual-card:hover { transform: translateY(-6px); }
.rt-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 60%);
}
.rt-visual-emoji {
  font-size: 64px;
  line-height: 1;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.rt-visual-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.rt-vline {
  height: 8px;
  background: rgba(255,255,255,0.35);
  border-radius: 8px;
  transition: width 0.6s ease;
}
.rt-visual-card:hover .rt-vline { opacity: 0.6; }
.rt-visual-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}
.rt-visual-tags span {
  background: rgba(255,255,255,0.22);
  color: white;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .rt-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rt-panel-visual { order: -1; }
  .rt-visual-card { padding: 36px 24px; }
  .rt-visual-emoji { font-size: 48px; }
}
@media (max-width: 600px) {
  .rt-tabs {
    border-radius: 16px;
    padding: 8px;
    gap: 6px;
  }
  .rt-tab { padding: 8px 14px; font-size: 13px; }
  .rt-stat-row { gap: 16px; }
  .rt-panel-text h3 { font-size: 24px; }
}
