/* ============================================
   MAGSKR LANDING PAGE - style.css
   ============================================ */

:root {
  --orange: #F26522;
  --orange-light: #FF8C42;
  --orange-dark: #D4541A;
  --cream: #FFF8F0;
  --cream-2: #FFF3E7;
  --dark: #1A1A1A;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ---- Utility ---- */
.text-orange { color: var(--orange) !important; }
@media (min-width: 992px) {
  .text-nowrap-lg { white-space: nowrap; }
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 101, 34, 0.1);
  padding: 14px 0;
  transition: all 0.3s ease;
}
#mainNav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: -0.5px;
}
.navbar-logo {
  width: 320px;
  height: 76px;       /* rounded from 75.65px */
  display: block;
  object-fit: contain;
}
.brand-leaf { font-size: 1.1rem; margin-right: -2px; }
.brand-dot { color: var(--orange); font-size: 1.4rem; }
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1; /* 100% */
  color: #000000 !important;
  padding: 8px 16px !important;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--orange) !important; }

/* Animated Hamburger Menu */
.custom-toggler:focus { box-shadow: none; outline: none; }
.animated-hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.animated-hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* When menu is OPEN (Bootstrap removes .collapsed) */
.custom-toggler:not(.collapsed) .animated-hamburger span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.custom-toggler:not(.collapsed) .animated-hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px) scale(0);
}
.custom-toggler:not(.collapsed) .animated-hamburger span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-nav-demo {
  background: #FC791A;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  width: 184px;
  height: 48px;
  border-radius: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}
.btn-nav-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 121, 26, 0.35);
}

.btn-orange {
  background: var(--orange);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 101, 34, 0.35);
}
.btn-hero {
  background: #FC791A;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  width: 295px;
  max-width: 100%;
  height: 76px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: var(--cream);
  padding-top: 150px;
  padding-bottom: 60px;
  overflow-x: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left { padding: 0; }

.hero-heading {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* Bullet points */
.hero-bullets { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bullet-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #000000;
}
.bullet-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #555555;
}
.bullet-icon {
  width: 70px; height: 70px;
  border-radius: 12px;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  color: #FC791A;
  font-size: 32px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.bullet-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Badge Icon Boxes (Red/Green) */
.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  flex-shrink: 0;
}
.badge-icon-box.bg-red {
  background: #EF4444;
}
.badge-icon-box.bg-green {
  background: #10B981;
}

/* Partner logos */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 45px;
  max-width: none;
  object-fit: contain;
}
.bombay { color: #c0392b; }
.noon em { font-style: normal; color: var(--orange); }
.bolly { color: #8e44ad; }

/* ---- Hero Right Column ---- */
/* ---- Hero Right Column ---- */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  margin-top: 0;
}

.hero-right-scene {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 15px;
}

/* Header inside right scene: German Subtext */
.hero-right-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  margin-top: 85px; /* Aligns subtext top with line 3 of heading ('HÖHERE UMSÄTZE') */
  margin-bottom: 24px;
  margin-right: 25px;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 31px;
  letter-spacing: 0;
  color: #000000;
  width: 330px;
  max-width: 330px;
  margin-bottom: 0;
  flex-shrink: 0;
  text-align: left;
}

/* Learn More Badge */
.learn-more-badge {
  position: relative;
  width: 140px;
  height: 140px;
  background-color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.learn-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: rotateBadge 14s linear infinite;
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.learn-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.learn-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.learn-more-badge:hover .learn-arrow {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Phone wrapper */
.phone-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  margin-left: 0;
  animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.phone-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.22));
}

/* Floating Badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgePulse 3s ease-in-out infinite;
  z-index: 8;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.badge-orders { top: 18%; right: -50px; }
.badge-restaurants { bottom: 20%; left: -65px; }
.badge-icon { font-size: 1.4rem; }
.badge-title { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.badge-sub { font-size: 0.72rem; color: var(--gray); }

/* Discount Badge PNG Container Overlay */
.discount-badge-container {
  position: absolute;
  top: -25px;
  left: -190px;
  width: 430px;
  max-width: 85vw;
  z-index: 10;
  pointer-events: auto;
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
  animation: discountFloat 4s ease-in-out infinite;
}
.discount-badge-container:hover {
  transform: rotate(-1.5deg) scale(1.04);
}
.discount-badge-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(242, 101, 34, 0.22));
}
.discount-badge-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  box-sizing: border-box;
  color: #000000;
  text-align: center;
}

/* Watermark text matching Figma background */
.hero-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 190px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.025);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.discount-title {
  font-family: 'Norican', cursive, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 45px;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
  display: block;
  white-space: nowrap;
}

.discount-sub {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
  display: block;
  white-space: nowrap;
  margin-top: 2px;
}

@keyframes discountFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ============================================
   VIDEO SECTION (LAPTOP MOCKUP)
   ============================================ */
.video-section {
  background: var(--cream-2);
  padding: 80px 0 0;
}

.laptop-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.laptop-frame {
  width: 100%;
  background: #2a2a2a;
  border-radius: 16px 16px 0 0;
  padding: 12px 12px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.laptop-screen {
  background: #f0f0f0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}

.laptop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Browser-like overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: opacity 0.5s;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }

.mock-browser-bar {
  background: #e8e8e8;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #d0d0d0;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.url-bar {
  background: #fff;
  border-radius: 6px;
  padding: 2px 12px;
  font-size: 0.72rem;
  color: #555;
  flex: 1;
  max-width: 300px;
  margin-left: 10px;
  border: 1px solid #ccc;
}

.mock-screen-content {
  flex: 1;
  padding: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.mock-restaurant-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.mock-orders-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.mock-order-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px 14px;
  flex: 1;
  min-width: 140px;
}
.mock-order-card p { font-size: 0.78rem; color: #555; margin: 4px 0; }
.mock-order-card .price { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.order-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.order-badge.new { background: #e3f9e5; color: #1a7f35; }
.order-badge.sale { background: #fff3cd; color: #856404; }
.order-badge.hot { background: #fde8e8; color: #c0392b; }

.mock-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2c3e50;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.78rem;
}
.checkout-btn {
  background: #28a745;
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Play button overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.play-overlay:hover { background: rgba(0,0,0,0.25); }
.play-overlay.hidden { display: none; }

.play-btn {
  width: 70px; height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Laptop stand */
.laptop-base {
  width: 100%;
  height: 18px;
  background: linear-gradient(180deg, #3a3a3a 0%, #222 100%);
  border-radius: 0 0 4px 4px;
}
.laptop-stand {
  width: 200px;
  height: 16px;
  background: #2a2a2a;
  border-radius: 0 0 10px 10px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  margin-top: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: var(--white);
  padding: 90px 0;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--dark);
  line-height: 60px;
  letter-spacing: 0;
  max-width: 858px;
  text-align: left;
}

.feature-card {
  width: 434px;
  height: 301px;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(242, 101, 34, 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--orange);
  color: #fff;
}

.feature-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  color: #000000;
  margin-bottom: 10px;
}
.feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #000000;
  margin-bottom: 16px;
}
.feature-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.feature-link:hover { gap: 10px; color: var(--orange-dark); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--cream);
  padding: 90px 0;
  overflow-x: hidden;
}

.hiw-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 40px;
  background: #FFEEE2;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #FC791A;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.hiw-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  max-width: 924px;
  margin: 12px 0 0;
  line-height: 30px;
}

/* Step Tabs */
.step-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 40px 0 0;
}
.step-tab {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: #666666;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.step-tab.active {
  background: #FC791A;
  color: #fff;
  box-shadow: 0 4px 16px rgba(252, 121, 26, 0.4);
}
.step-tab:not(.active):hover {
  border-color: var(--orange);
  color: var(--orange);
}
.step-dots {
  flex: 0 0 60px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #ddd 0, #ddd 4px,
    transparent 4px, transparent 10px
  );
  position: relative;
}

/* Step content */
.step-content {
  display: none;
  animation: fadeSlideIn 0.45s ease forwards;
}
.step-content.active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #000000;
  line-height: 50px;
  margin-bottom: 14px;
}
.step-title strong {
  font-weight: 600;
}
.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 25px;
  max-width: 508px;
  margin-bottom: 22px;
}
.step-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 508px;
}
.step-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 42px;
}
.step-checklist li strong {
  font-weight: 700;
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #6DC97C;
  color: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 15.33px;
}

/* HIW Laptop Mockup */
.hiw-laptop-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 140%;
  max-width: 1000px;
  margin: 0;
  transform: translateX(10%);
}
.hiw-laptop-frame {
  width: 100%;
  background: #222;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
  box-shadow: var(--shadow-lg);
}
.hiw-screen {
  background: #fff;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.hiw-laptop-base {
  width: 100%;
  height: 14px;
  background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
  border-radius: 0 0 4px 4px;
}
.hiw-laptop-stand {
  width: 160px;
  height: 14px;
  background: #222;
  border-radius: 0 0 8px 8px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

/* HIW Video slides */
.hiw-video-wrap {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
}
.hiw-video-wrap.active { display: flex; }

.hiw-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback when video not loaded */
.hiw-video-fallback {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.hiw-video-fallback.video-playing { display: none; }

.fallback-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.fallback-icon {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0.6;
}
.fallback-content p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.fallback-progress {
  width: 100%;
  max-width: 200px;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  animation: loadBar 3s ease-in-out infinite;
}
@keyframes loadBar {
  0% { width: 0%; }
  70% { width: 100%; }
  100% { width: 100%; }
}

/* Mini orders in fallback */
.mock-orders-mini {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-order {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
}
.status-badge {
  color: #28a745;
  font-weight: 600;
  font-size: 0.7rem;
}

/* Analytics bars */
.analytics-bars {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
}
.bar-row span:first-child {
  width: 55px;
  color: var(--gray);
  text-align: right;
  font-weight: 500;
}
.bar-track {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  animation: growBar 1.5s ease forwards;
}
@keyframes growBar {
  from { width: 0 !important; }
}
.bar-row span:last-child {
  width: 40px;
  color: var(--orange);
  font-weight: 700;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: #F17B2C;
  padding: 90px 0 80px;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  height: 40px;
  background: #FFEEE2;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #FC791A;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}
.cta-heading {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 50px;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.cta-heading strong {
  font-weight: 900;
}
.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 30px;
  letter-spacing: 0;
  max-width: 903px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 295px;
  height: 76px;
  background: #ffffff;
  color: #FC791A;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 40px;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta-primary:hover {
  background: #fff3e0;
  color: #e06010;
  transform: translateY(-2px);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 295px;
  height: 76px;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 40px;
  border: 3px solid #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta-outline i {
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  transform: translateY(-2px);
}
.cta-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 80px 0 100px;
  background: var(--cream);
  position: relative;
}

.pricing-main-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
}

/* Discount Badge in Pricing Section */
.pricing-badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 140px;
  margin-bottom: 30px;
}
.pricing-badge-pos {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 auto !important;
  width: 520px;
  max-width: 90vw;
  transform: rotate(-1.5deg);
}

/* Pricing Cards */
.pricing-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 28px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(242, 101, 34, 0.12);
}

.pricing-tag {
  background: #FFEEE2;
  color: #FF5E18;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  width: 186px;
  height: 40px;
  border-radius: 30px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.pricing-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  color: #FF5E18;
  text-align: center;
  margin-bottom: 8px;
}

.pricing-fee-type {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  margin-bottom: 6px;
}

.pricing-fee-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
  min-height: 44px;
}

.pricing-green-box {
  background: #EFFBF4;
  border-radius: 14px;
  padding: 14px 20px;
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
  color: #1B7A43;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.pricing-green-box strong {
  font-weight: 700;
}
.text-orange-highlight {
  color: #FC791A !important;
  font-size: 16px;
}

.pricing-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.pricing-checklist li {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.green-check {
  color: #22C55E;
  font-size: 16px;
  flex-shrink: 0;
}

.btn-pricing-demo {
  background: #000000;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  width: 100%;
  max-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: auto;
}
.btn-pricing-demo:hover {
  background: #FC791A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 121, 26, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #111111;
  color: #aaa;
  padding: 60px 0 70px;
}
.footer-bottom-wrapper {
  background: #1A1A1A;
  margin-top: 40px;
}
.footer-top {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col {}
.footer-logo-img {
  width: 317px;
  height: 74.93px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-leaf { margin-right: 4px; }
.text-orange-dot { color: #F17B2C; }
.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 30px;
  letter-spacing: 0;
  max-width: 581px;
  margin: 0;
}
.footer-links-col {
  padding-left: 60px;
}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 0.18em;
  color: #FC791A;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-link-list li a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 44px;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link-list li a:hover { color: #F17B2C; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 22px;
  letter-spacing: 0;
  margin: 0;
  height: 27px;
  display: flex;
  align-items: center;
}
.footer-legal-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-legal-links a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 22px;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: #F17B2C; }
.footer-legal-links span { 
  font-size: 16px;
  color: #FFFFFF; 
}

/* ============================================
   RESPONSIVE - ALL DEVICES
   ============================================ */

/* ---- Tablet (≤991px) ---- */
@media (max-width: 991px) {

  /* Navbar */
  .navbar-logo { width: 180px; height: auto; }
  .btn-nav-demo { width: 140px; height: 42px; font-size: 14px; }

  /* Hero */
  .hero-section { padding-top: 110px; overflow-x: hidden; }
  .hero-left { padding: 20px 0; text-align: center; }
  .hero-heading { font-size: 38px; line-height: 48px; text-align: center; }
  .hero-right { margin-top: 20px; padding: 0; align-items: center; width: 100%; }
  .hero-right-scene { align-items: center; padding-right: 0; width: 100%; }
  .hero-right-header { margin-top: 0; justify-content: center; margin-right: 0; margin-bottom: 24px; text-align: center; width: 100%; }
  .hero-sub { font-size: 18px; line-height: 26px; width: 100%; max-width: 100%; text-align: center; margin-right: 0; }
  .bullet-icon { width: 52px; height: 52px; font-size: 24px; }
  .phone-wrapper { margin-left: 0; margin-right: 0; display: flex; justify-content: center; }
  .phone-img { max-width: 300px; }
  .learn-more-badge { width: 120px; height: 120px; }
  .badge-orders { right: 0; top: 18%; }
  .badge-restaurants { left: 0; bottom: 18%; }
  .discount-badge-container { width: 340px; left: 50%; transform: translateX(-50%) rotate(-1.5deg); top: -20px; }
  .discount-title { font-size: 35px; }
  .discount-sub { font-size: 15px; }
  .btn-hero { width: 260px; height: 64px; font-size: 18px; }
  .hero-watermark { font-size: 120px; }

  /* Video section */
  .video-section { padding: 60px 0 0; }
  .laptop-wrapper { max-width: 100%; }

  /* Features */
  .features-section { padding: 60px 0; }
  .section-heading { font-size: 34px; line-height: 44px; }
  .feature-card { width: 100%; height: auto; }

  /* How it works */
  .how-it-works { padding: 60px 0; }
  .hiw-laptop-wrapper {
    transform: none !important;
    margin-top: 40px;
    max-width: 100%;
  }
  .step-tabs { justify-content: center; flex-wrap: wrap; }

  /* Pricing */
  .pricing-section { padding: 60px 0; }
  .pricing-main-heading { font-size: 40px; line-height: 48px; }
  .pricing-badge-wrapper { height: 110px; margin-bottom: 20px; }
  .pricing-badge-pos { width: 360px; }
  .pricing-amount { font-size: 44px; line-height: 52px; }
  .pricing-fee-type { font-size: 20px; line-height: 22px; }
  .pricing-fee-sub { font-size: 16px; line-height: 20px; }

  /* CTA */
  .cta-section { padding: 60px 0; }
  .cta-heading { font-size: 36px; line-height: 48px; }
  .cta-sub { font-size: 17px; max-width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 16px; }
  .btn-cta-primary, .btn-cta-outline { width: 260px; height: 64px; }

  /* Footer */
  .footer-logo-img { width: 220px; height: auto; }
  .footer-desc { font-size: 16px; max-width: 100%; }
  .footer-col-title { font-size: 16px; }
  .footer-link-list li a { font-size: 14px; line-height: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
  .footer-copy { height: auto; }
}

/* ---- Mobile (≤767px) ---- */
@media (max-width: 767px) {

  /* Navbar */
  .navbar-logo { width: 140px; height: auto; }
  .btn-nav-demo { width: 120px; height: 38px; font-size: 13px; }

  /* Hero — center content on mobile */
  .hero-section { padding-top: 90px; min-height: auto !important; }
  .hero-section .row { min-height: auto !important; }
  .hero-left { 
    padding: 20px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-right { display: flex; padding-top: 10px; justify-content: center; align-items: center; width: 100%; overflow: hidden; }
  .hero-right-scene { align-items: center; padding-right: 0; width: 100%; display: flex; flex-direction: column; }
  .hero-right-header { flex-direction: column; align-items: center; text-align: center; margin-top: 0; margin-bottom: 20px; margin-right: 0; width: 100%; }
  .hero-heading { font-size: 28px; line-height: 38px; margin-bottom: 16px; text-align: center; }
  .hero-sub { font-size: 15px; line-height: 23px; width: 100%; max-width: 100%; text-align: center; margin-bottom: 0; margin-right: 0; }
  .learn-more-badge { width: 100px; height: 100px; }
  .learn-arrow { width: 24px; height: 24px; }
  
  .phone-wrapper { margin-left: auto; margin-right: auto; width: fit-content; position: relative; display: inline-block; }
  .phone-img { max-width: 215px; height: auto; }
  .hero-bullet { gap: 10px; text-align: left; justify-content: flex-start; width: 100%; max-width: 320px; }
  .hero-bullet strong { font-size: 16px; line-height: 22px; }
  .hero-bullets { gap: 10px; margin-top: 18px; width: 100%; display: flex; flex-direction: column; align-items: center; }
  .bullet-icon { width: 44px; height: 44px; font-size: 20px; border-radius: 8px; }
  .btn-hero { width: 220px; height: 56px; font-size: 16px; gap: 8px; margin: 10px auto; }
  .btn-hero svg { width: 36px; height: 12px; }
  .partner-logos { gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%; margin-top: 30px; }
  .partner-logo { height: 30px; }
  
  /* Discount Brush Badge on LEFT side of Mobile Mockup */
  .discount-badge-container {
    width: 230px;
    max-width: 75vw;
    left: -80px;
    top: -20px;
    transform: rotate(-1.5deg);
  }
  .discount-title { font-size: 25px; }
  .discount-sub { font-size: 11px; }

  .badge-orders { top: 15%; right: -20px; padding: 5px 8px; }
  .badge-restaurants { bottom: 12%; left: -45px; padding: 5px 8px; }
  .badge-orders .badge-title, .badge-restaurants .badge-title { font-size: 0.72rem; }
  .badge-orders .badge-sub, .badge-restaurants .badge-sub { font-size: 0.62rem; }
  .badge-icon-box { width: 32px; height: 32px; font-size: 14px; border-radius: 8px; }

  .hero-watermark { font-size: 70px; bottom: 0; }

  /* Video */
  .video-section { padding: 40px 0 0; }
  .laptop-stand { width: 120px; }
  .mock-orders-row { flex-direction: column; }

  /* Features */
  .features-section { padding: 50px 0; }
  .section-heading { font-size: 26px; line-height: 36px; text-align: center; }
  .feature-card { padding: 22px 18px; }
  .feature-card h5 { font-size: 17px; }
  .feature-card p { font-size: 13px; }

  /* How it works */
  .how-it-works { padding: 50px 0; }
  .hiw-heading { font-size: 26px; text-align: center; }
  .step-tabs { gap: 6px; }
  .step-tab { font-size: 13px; padding: 7px 12px; }
  .laptop-frame { padding: 8px 8px 0; }

  /* Pricing */
  .pricing-section { padding: 50px 0; }
  .pricing-main-heading { font-size: 32px; line-height: 40px; }
  .pricing-badge-wrapper { height: 90px; margin-bottom: 16px; }
  .pricing-badge-pos { width: 280px; }
  .pricing-amount { font-size: 38px; line-height: 44px; }
  .pricing-fee-type { font-size: 18px; line-height: 20px; }
  .pricing-fee-sub { font-size: 15px; line-height: 19px; }

  /* CTA */
  .cta-badge { font-size: 11px; padding: 6px 16px; }
  .cta-heading { font-size: 26px; line-height: 36px; }
  .cta-sub { font-size: 14px; line-height: 22px; }
  .btn-cta-primary { width: 220px; height: 56px; font-size: 17px; }
  .btn-cta-outline { width: 220px; height: 56px; font-size: 19px; }
  .btn-cta-outline i { font-size: 22px; width: 22px; height: 22px; }
  .cta-tags { flex-direction: column; align-items: center; gap: 8px; }
  .cta-tags span { font-size: 13px; }

  /* Footer */
  .site-footer { padding: 40px 0 40px; }
  .footer-top { padding-bottom: 28px; }
  .footer-brand-col { margin-bottom: 28px; }
  .footer-logo-img { width: 180px; height: auto; }
  .footer-desc { font-size: 14px; line-height: 24px; }
  .footer-col-title { font-size: 15px; margin-bottom: 12px; letter-spacing: 0.1em; }
  .footer-link-list li a { font-size: 13px; line-height: 34px; }
  .footer-bottom-wrapper { margin-top: 20px; }
  .footer-bottom { padding: 16px 0; flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal-links { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .footer-copy { font-size: 12px; }
  .footer-legal-links a, .footer-legal-links span { font-size: 12px; }
}

/* ---- Small Mobile (≤480px) ---- */
@media (max-width: 480px) {

  /* Navbar */
  .navbar-logo { width: 110px; height: auto; }

  /* Hero */
  .hero-heading { font-size: 24px; line-height: 34px; }
  .hero-sub { font-size: 14px; line-height: 22px; }
  .hero-bullet strong { font-size: 15px; }
  .bullet-icon { width: 38px; height: 38px; font-size: 17px; }
  .btn-hero { width: 100%; max-width: 260px; height: 52px; font-size: 15px; border-radius: 30px; }
  .phone-wrapper { margin-left: auto; margin-right: auto; width: fit-content; }
  .phone-img { max-width: 185px; }
  .discount-badge-container { width: 210px; max-width: 75vw; left: -65px; top: -16px; transform: rotate(-1.5deg); }
  .discount-title { font-size: 22px; }
  .discount-sub { font-size: 10px; }
  .badge-orders { top: 12%; right: -15px; padding: 4px 7px; }
  .badge-restaurants { bottom: 12%; left: -38px; padding: 4px 7px; }
  .badge-icon-box { width: 26px; height: 26px; font-size: 12px; }

  /* Pricing */
  .pricing-section { padding: 40px 0; }
  .pricing-main-heading { font-size: 26px; line-height: 34px; }
  .pricing-badge-wrapper { height: 75px; margin-bottom: 12px; }
  .pricing-badge-pos { width: 220px; }
  .pricing-amount { font-size: 32px; line-height: 38px; }
  .pricing-fee-type { font-size: 16px; line-height: 18px; }
  .pricing-fee-sub { font-size: 14px; line-height: 18px; }

  /* CTA */
  .cta-section { padding: 36px 0; }
  .cta-heading { font-size: 22px; line-height: 30px; }
  .cta-sub { font-size: 13px; }
  .btn-cta-primary { width: 100%; max-width: 260px; height: 52px; font-size: 15px; border-radius: 28px; }
  .btn-cta-primary svg { width: 30px; height: 10px; }
  .btn-cta-outline { width: 100%; max-width: 260px; height: 52px; font-size: 16px; border-radius: 28px; }
  .btn-cta-outline i { font-size: 18px; width: 18px; height: 18px; }

  /* Footer */
  .footer-logo-img { width: 140px; height: auto; }
}


/* ============================================
   HERO ENTRANCE ANIMATIONS (CSS only, no JS)
   ============================================ */
.hero-anim-left {
  animation: heroSlideLeft 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}
.hero-anim-right {
  animation: heroSlideRight 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
}
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Fix: hiw-video-wrap uses position:absolute so parent needs position:relative */
.hiw-screen { position: relative; }
.hiw-video-wrap {
  position: absolute;
  inset: 0;
  display: none;
}
.hiw-video-wrap.active { display: flex; flex-direction: column; }

@media (max-width: 991px) {
  /* Reset the bleed layout on mobile */
  .hiw-laptop-wrapper {
    width: 100%;
    transform: none;
    margin-top: 40px;
  }
}

/* ============================================
   MAGSKR AI BANNER SECTION
   ============================================ */
.ai-banner-wrapper {
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}

.ai-banner-card {
  background: linear-gradient(135deg, #FFF7EF 0%, #FFF1E5 50%, #FFE9D6 100%);
  border-radius: 28px;
  padding: 45px 40px 35px 40px;
  position: relative;
  border: 1px solid #FFE2CC;
  box-shadow: 0 10px 30px rgba(252, 121, 26, 0.07);
}

.ai-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ai-bot-icon {
  background: #000000;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.ai-bot-img {
  width: 34.16px;
  height: 35.56px;
  object-fit: contain;
  display: block;
}

.ai-new-img {
  width: 91px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.ai-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.ai-logo-img {
  width: 176px;
  height: 41.6px;
  object-fit: contain;
  display: block;
}

.ai-badge-img {
  height: 56px;
  object-fit: contain;
  display: block;
}

.ai-logo-text {
  display: inline-flex;
  align-items: center;
}

.ai-dot {
  color: #000000;
  font-size: 32px;
  font-weight: 900;
  margin: 0 4px 0 2px;
  line-height: 1;
}

.ai-orange {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  color: #FF5E18;
  letter-spacing: 0;
}

.ai-price-box {
  margin-top: 10px;
  margin-bottom: 16px;
}

.ai-price {
  font-size: 52px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  letter-spacing: -1px;
  font-family: 'Montserrat', sans-serif;
}

.ai-per-month {
  font-size: 14px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.ai-desc {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 260px;
}

.btn-ai-demo {
  background: #FC791A;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  padding: 12px 28px;
  border: none;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(252, 121, 26, 0.35);
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-ai-demo:hover {
  background: #e56609;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(252, 121, 26, 0.45);
}

/* Feature checklist card */
.ai-features-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-feature-row {
  background: #F0FDF4;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a4d2e;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.35;
  border: 1px solid #DCFCE7;
}

.ai-feature-icon {
  color: #E05600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Robot Image */
.ai-robot-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-robot-img {
  width: 497px;
  max-width: 100%;
  height: 414px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

/* Bottom Badge */
.ai-bottom-badge-wrap {
  position: absolute;
  bottom: -24px;
  right: 60px;
  z-index: 10;
}

.ai-bottom-badge-img {
  width: 425px;
  max-width: 100%;
  height: 52px;
  border-radius: 11px;
  object-fit: contain;
  display: block;
  box-shadow: 0 6px 16px rgba(12, 131, 31, 0.35);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .ai-banner-card {
    padding: 35px 20px 60px 20px;
    text-align: center;
  }
  .ai-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ai-desc {
    max-width: 100%;
  }
  .ai-robot-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    max-height: 300px;
    margin-top: 15px;
  }
  .ai-bottom-badge-wrap {
    right: 50%;
    transform: translateX(50%);
    width: max-content;
    max-width: 90%;
    text-align: center;
  }
  .ai-bottom-badge-img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}
