/* ============================================================
   TAP2ORDER LANDING PAGE STYLES
   Version: 1.0.0
   Target: 1140px max-width
   Dependencies: Bootstrap 5.3.2, Font Awesome 6.5.1
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS VARIABLES & RESET
   ------------------------------------------------------------ */
.tap2order-landing {
  --t2o-primary: #ff6b00;
  --t2o-primary-dark: #e85d00;
  --t2o-primary-light: #fff3eb;
  --t2o-dark: #171a1f;
  --t2o-text: #222831;
  --t2o-muted: #667085;
  --t2o-bg: #f7f8fa;
  --t2o-white: #ffffff;
  --t2o-success: #12a150;
  --t2o-border: #e5e7eb;
  --t2o-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --t2o-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --t2o-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --t2o-radius: 12px;
  --t2o-radius-lg: 20px;
  --t2o-transition: all 0.3s ease;
  --t2o-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tap2order-landing *,
.tap2order-landing *::before,
.tap2order-landing *::after {
  box-sizing: border-box;
}

.tap2order-landing .t2o-header *,
.tap2order-landing .t2o-header *::before,
.tap2order-landing .t2o-header *::after {
  margin: 0;
  padding: 0;
}

.tap2order-landing {
  font-family: var(--t2o-font);
  color: var(--t2o-text);
  background: var(--t2o-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.tap2order-landing img {
  max-width: 100%;
  height: auto;
}

.tap2order-landing a:not(.btn):not(.t2o-login-btn):not(.t2o-start-btn):not(.faq-question) {
  color: var(--t2o-primary);
  text-decoration: none;
  transition: var(--t2o-transition);
}

.tap2order-landing a:not(.btn):not(.t2o-login-btn):not(.t2o-start-btn):not(.faq-question):hover {
  color: var(--t2o-primary-dark);
}

.tap2order-landing h1,
.tap2order-landing h2,
.tap2order-landing h3,
.tap2order-landing h4,
.tap2order-landing h5,
.tap2order-landing h6 {
  font-family: var(--t2o-font);
  color: var(--t2o-dark);
  font-weight: 700;
  line-height: 1.2;
}

.tap2order-landing .t2o-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-section {
  padding: 80px 0;
}

.tap2order-landing .t2o-section-alt {
  background: var(--t2o-bg);
}

.tap2order-landing .t2o-section-white {
  background: var(--t2o-white);
}

.tap2order-landing .t2o-section-dark {
  background: var(--t2o-dark);
  color: var(--t2o-white);
}

.tap2order-landing .t2o-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.tap2order-landing .t2o-section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-section-title p {
  font-size: 1.1rem;
  color: var(--t2o-muted);
  max-width: 600px;
  margin: 0 auto;
}

.tap2order-landing .t2o-section-dark .t2o-section-title h2 {
  color: var(--t2o-white);
}

.tap2order-landing .t2o-section-dark .t2o-section-title p {
  color: rgba(255, 255, 255, 0.7);
}

/* ------------------------------------------------------------
   2. BUTTONS (shared)
   ------------------------------------------------------------ */
.tap2order-landing .t2o-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--t2o-radius);
  font-family: var(--t2o-font);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t2o-transition);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.tap2order-landing .t2o-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.tap2order-landing .t2o-btn-primary {
  background: var(--t2o-primary);
  color: var(--t2o-white);
  border-color: var(--t2o-primary);
}

.tap2order-landing .t2o-btn-primary:hover {
  background: var(--t2o-primary-dark);
  border-color: var(--t2o-primary-dark);
  color: var(--t2o-white);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}

.tap2order-landing .t2o-btn-outline {
  background: transparent;
  color: var(--t2o-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.tap2order-landing .t2o-btn-outline:hover {
  background: var(--t2o-white);
  color: var(--t2o-dark);
  border-color: var(--t2o-white);
}

.tap2order-landing .t2o-btn-outline-dark {
  background: transparent;
  color: var(--t2o-primary);
  border-color: var(--t2o-primary);
}

.tap2order-landing .t2o-btn-outline-dark:hover {
  background: var(--t2o-primary);
  color: var(--t2o-white);
}

.tap2order-landing .t2o-btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.tap2order-landing .t2o-btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ------------------------------------------------------------
   3. HEADER / NAVBAR
   ------------------------------------------------------------ */
.tap2order-landing .t2o-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 9999;
  background: rgba(18, 31, 44, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-header.scrolled {
  background: rgba(18, 31, 44, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.tap2order-landing .t2o-header .t2o-container {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.tap2order-landing .t2o-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-brand:hover {
  color: #ffffff;
}

.tap2order-landing .t2o-brand img {
  display: block;
  width: auto;
  max-width: 190px;
  height: 50px;
  object-fit: contain;
}

.tap2order-landing .t2o-brand span {
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-brand i {
  font-size: 1.3rem;
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.tap2order-landing .t2o-header .t2o-nav-menu a {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.tap2order-landing .t2o-header .t2o-nav-menu a:hover,
.tap2order-landing .t2o-header .t2o-nav-menu a.active {
  color: var(--t2o-primary);
  opacity: 1;
}

.tap2order-landing .t2o-nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tap2order-landing .t2o-login-btn,
.tap2order-landing .t2o-start-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-login-btn {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
}

.tap2order-landing .t2o-login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff !important;
}

.tap2order-landing .t2o-start-btn {
  color: #ffffff !important;
  border: 1px solid var(--t2o-primary);
  background: var(--t2o-primary);
}

.tap2order-landing .t2o-start-btn:hover {
  background: var(--t2o-primary-dark);
  border-color: var(--t2o-primary-dark);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 87, 69, 0.35);
}

.tap2order-landing .t2o-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tap2order-landing .t2o-header.menu-open .t2o-menu-toggle i {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.tap2order-landing .t2o-menu-toggle i {
  transition: transform 0.3s ease;
}

/* Mobile dropdown */
.tap2order-landing .t2o-header.menu-open .t2o-nav-menu {
  display: flex !important;
  position: absolute;
  top: 82px;
  left: 16px;
  right: 16px;
  flex-direction: column !important;
  align-items: stretch;
  gap: 0;
  padding: 14px;
  border-radius: 14px 14px 0 0;
  background: #162536;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 100;
  margin-left: 0;
  justify-content: flex-start;
}

.tap2order-landing .t2o-header.menu-open .t2o-nav-menu a {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  opacity: 1;
}

.tap2order-landing .t2o-header.menu-open .t2o-nav-menu a:last-child {
  border-bottom: none;
}

.tap2order-landing .t2o-header.menu-open .t2o-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tap2order-landing .t2o-header.menu-open .t2o-nav-actions {
  display: flex !important;
  position: absolute;
  top: auto;
  left: 16px;
  right: 16px;
  transform: translateY(0);
  flex-direction: column;
  padding: 14px;
  background: #162536;
  border-radius: 0 0 14px 14px;
  margin-top: -14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 99;
}

.tap2order-landing .t2o-header.menu-open .t2o-login-btn,
.tap2order-landing .t2o-header.menu-open .t2o-start-btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

/* Hero override — fixed header spacing */
.tap2order-landing .hero {
  padding-top: 130px;
}

.tap2order-landing .hero .container {
  padding-top: 0;
}

/* Override public.css Bootstrap conflict: force horizontal nav on desktop */
.tap2order-landing .t2o-header .t2o-nav-menu {
  flex-direction: row !important;
}

/* Override public.css global link color for header */
.tap2order-landing .t2o-header a {
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* ------------------------------------------------------------
   4. HERO
   ------------------------------------------------------------ */
.tap2order-landing .t2o-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #171a1f 0%, #1a2a3a 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.tap2order-landing .t2o-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tap2order-landing .t2o-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tap2order-landing .t2o-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.tap2order-landing .t2o-hero-content {
  flex: 1;
  max-width: 560px;
}

.tap2order-landing .t2o-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.15);
  color: var(--t2o-primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 107, 0, 0.25);
}

.tap2order-landing .t2o-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--t2o-white);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.tap2order-landing .t2o-hero-title .t2o-highlight {
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.tap2order-landing .t2o-hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tap2order-landing .t2o-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.tap2order-landing .t2o-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.tap2order-landing .t2o-hero-trust-item i {
  color: var(--t2o-success);
  font-size: 1rem;
}

.tap2order-landing .t2o-hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tap2order-landing .t2o-hero-mockup {
  position: relative;
  width: 300px;
  animation: t2o-float 6s ease-in-out infinite;
}

.tap2order-landing .t2o-hero-mockup .t2o-phone-frame {
  background: var(--t2o-white);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.tap2order-landing .t2o-hero-mockup .t2o-phone-screen {
  background: var(--t2o-bg);
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tap2order-landing .t2o-hero-mockup .t2o-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tap2order-landing .t2o-hero-mockup .t2o-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--t2o-dark);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

@keyframes t2o-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

/* ------------------------------------------------------------
   5. TRUST STRIP
   ------------------------------------------------------------ */
.tap2order-landing .t2o-trust-strip {
  background: var(--t2o-white);
  border-bottom: 1px solid var(--t2o-border);
  padding: 28px 0;
}

.tap2order-landing .t2o-trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--t2o-muted);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.tap2order-landing .t2o-trust-item i {
  font-size: 1.3rem;
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-trust-item span {
  color: var(--t2o-dark);
  font-weight: 600;
}

/* ------------------------------------------------------------
   6. FEATURES
   ------------------------------------------------------------ */
.tap2order-landing .t2o-features {
  background: var(--t2o-white);
}

.tap2order-landing .t2o-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-feature-card {
  background: var(--t2o-white);
  border: 1px solid var(--t2o-border);
  border-radius: var(--t2o-radius);
  padding: 32px;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--t2o-shadow-lg);
  border-color: transparent;
}

.tap2order-landing .t2o-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: var(--t2o-primary-light);
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-feature-icon.icon-blue {
  background: #eef4ff;
  color: #3b82f6;
}

.tap2order-landing .t2o-feature-icon.icon-green {
  background: #ecfdf5;
  color: #10b981;
}

.tap2order-landing .t2o-feature-icon.icon-purple {
  background: #f3e8ff;
  color: #8b5cf6;
}

.tap2order-landing .t2o-feature-icon.icon-red {
  background: #fef2f2;
  color: #ef4444;
}

.tap2order-landing .t2o-feature-icon.icon-teal {
  background: #f0fdfa;
  color: #14b8a6;
}

.tap2order-landing .t2o-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-feature-card p {
  font-size: 0.95rem;
  color: var(--t2o-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   7. TWO MODES
   ------------------------------------------------------------ */
.tap2order-landing .t2o-modes {
  background: var(--t2o-bg);
}

.tap2order-landing .t2o-modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-mode-card {
  background: var(--t2o-white);
  border: 2px solid var(--t2o-border);
  border-radius: var(--t2o-radius-lg);
  padding: 40px;
  transition: var(--t2o-transition);
  position: relative;
  overflow: hidden;
}

.tap2order-landing .t2o-mode-card:hover {
  border-color: var(--t2o-primary);
  box-shadow: var(--t2o-shadow-lg);
  transform: translateY(-4px);
}

.tap2order-landing .t2o-mode-card.t2o-mode-featured {
  border-color: var(--t2o-primary);
}

.tap2order-landing .t2o-mode-card.t2o-mode-featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--t2o-primary);
  color: var(--t2o-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.tap2order-landing .t2o-mode-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tap2order-landing .t2o-mode-header-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--t2o-primary-light);
  color: var(--t2o-primary);
  flex-shrink: 0;
}

.tap2order-landing .t2o-mode-header-text h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.tap2order-landing .t2o-mode-header-text p {
  font-size: 0.9rem;
  color: var(--t2o-muted);
}

.tap2order-landing .t2o-mode-features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

.tap2order-landing .t2o-mode-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--t2o-text);
  border-bottom: 1px solid var(--t2o-border);
}

.tap2order-landing .t2o-mode-features li:last-child {
  border-bottom: none;
}

.tap2order-landing .t2o-mode-features li i {
  color: var(--t2o-success);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   8. HOW IT WORKS (STEPS)
   ------------------------------------------------------------ */
.tap2order-landing .t2o-steps {
  background: var(--t2o-white);
}

.tap2order-landing .t2o-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.tap2order-landing .t2o-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.tap2order-landing .t2o-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--t2o-primary);
  color: var(--t2o-white);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.tap2order-landing .t2o-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-step p {
  font-size: 0.9rem;
  color: var(--t2o-muted);
  line-height: 1.6;
}

/* Connecting line (horizontal) */
.tap2order-landing .t2o-steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--t2o-border);
  z-index: 0;
}

/* ------------------------------------------------------------
   9. BENEFITS
   ------------------------------------------------------------ */
.tap2order-landing .t2o-benefits {
  background: var(--t2o-bg);
}

.tap2order-landing .t2o-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-benefit-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--t2o-white);
  border-radius: var(--t2o-radius);
  border: 1px solid var(--t2o-border);
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--t2o-shadow-md);
}

.tap2order-landing .t2o-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--t2o-primary-light);
  color: var(--t2o-primary);
  flex-shrink: 0;
}

.tap2order-landing .t2o-benefit-text h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-benefit-text p {
  font-size: 0.9rem;
  color: var(--t2o-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   10. PRODUCT PREVIEW
   ------------------------------------------------------------ */
.tap2order-landing .t2o-preview {
  background: var(--t2o-dark);
  position: relative;
  overflow: hidden;
}

.tap2order-landing .t2o-preview::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tap2order-landing .t2o-preview-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tap2order-landing .t2o-preview-inner h2 {
  font-size: 2.4rem;
  color: var(--t2o-white);
  margin-bottom: 16px;
}

.tap2order-landing .t2o-preview-inner > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tap2order-landing .t2o-preview-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.tap2order-landing .t2o-preview-highlight {
  text-align: center;
  padding: 24px;
}

.tap2order-landing .t2o-preview-highlight i {
  font-size: 2rem;
  color: var(--t2o-primary);
  margin-bottom: 16px;
}

.tap2order-landing .t2o-preview-highlight h4 {
  color: var(--t2o-white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.tap2order-landing .t2o-preview-highlight p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ------------------------------------------------------------
   11. OFFERS
   ------------------------------------------------------------ */
.tap2order-landing .t2o-offers {
  background: var(--t2o-bg);
}

.tap2order-landing .t2o-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-offer-card {
  background: var(--t2o-white);
  border: 1px solid var(--t2o-border);
  border-radius: var(--t2o-radius-lg);
  padding: 40px;
  transition: var(--t2o-transition);
  text-align: center;
}

.tap2order-landing .t2o-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--t2o-shadow-lg);
}

.tap2order-landing .t2o-offer-card .t2o-offer-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--t2o-primary-light);
  color: var(--t2o-primary);
  margin: 0 auto 24px;
}

.tap2order-landing .t2o-offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-offer-card p {
  font-size: 0.95rem;
  color: var(--t2o-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ------------------------------------------------------------
   12. QR TABLES
   ------------------------------------------------------------ */
.tap2order-landing .t2o-qr {
  background: var(--t2o-white);
}

.tap2order-landing .t2o-qr-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.tap2order-landing .t2o-qr-inner h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.tap2order-landing .t2o-qr-inner > p {
  font-size: 1.1rem;
  color: var(--t2o-muted);
  margin-bottom: 48px;
}

.tap2order-landing .t2o-qr-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.tap2order-landing .t2o-qr-icon-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--t2o-radius);
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-qr-icon-item:hover {
  background: var(--t2o-primary-light);
  transform: translateY(-2px);
}

.tap2order-landing .t2o-qr-icon-item i {
  font-size: 2rem;
  color: var(--t2o-primary);
  margin-bottom: 12px;
  display: block;
}

.tap2order-landing .t2o-qr-icon-item h4 {
  font-size: 0.95rem;
  color: var(--t2o-dark);
  margin-bottom: 4px;
}

.tap2order-landing .t2o-qr-icon-item p {
  font-size: 0.8rem;
  color: var(--t2o-muted);
}

/* ------------------------------------------------------------
   13. DEMO
   ------------------------------------------------------------ */
.tap2order-landing .t2o-demo {
  background: var(--t2o-bg);
}

.tap2order-landing .t2o-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-demo-card {
  background: var(--t2o-white);
  border: 1px solid var(--t2o-border);
  border-radius: var(--t2o-radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--t2o-shadow-lg);
}

.tap2order-landing .t2o-demo-card .t2o-demo-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  background: var(--t2o-primary-light);
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-demo-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.tap2order-landing .t2o-demo-card p {
  font-size: 0.9rem;
  color: var(--t2o-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ------------------------------------------------------------
   14. PRICING
   ------------------------------------------------------------ */
.tap2order-landing .t2o-pricing {
  background: var(--t2o-white);
}

.tap2order-landing .t2o-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tap2order-landing .t2o-pricing-toggle span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t2o-muted);
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-pricing-toggle span.active {
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-pricing-toggle .t2o-toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--t2o-border);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-pricing-toggle .t2o-toggle-switch.active {
  background: var(--t2o-primary);
}

.tap2order-landing .t2o-pricing-toggle .t2o-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--t2o-white);
  border-radius: 50%;
  transition: var(--t2o-transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.tap2order-landing .t2o-pricing-toggle .t2o-toggle-switch.active::after {
  left: 27px;
}

.tap2order-landing .t2o-pricing-save {
  background: var(--t2o-primary-light);
  color: var(--t2o-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.tap2order-landing .t2o-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.tap2order-landing .t2o-pricing-card {
  background: var(--t2o-white);
  border: 2px solid var(--t2o-border);
  border-radius: var(--t2o-radius-lg);
  padding: 40px 32px;
  transition: var(--t2o-transition);
  position: relative;
  text-align: center;
}

.tap2order-landing .t2o-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--t2o-shadow-lg);
}

.tap2order-landing .t2o-pricing-card.t2o-pricing-recommended {
  border-color: var(--t2o-primary);
  transform: scale(1.05);
  box-shadow: var(--t2o-shadow-lg);
}

.tap2order-landing .t2o-pricing-card.t2o-pricing-recommended:hover {
  transform: scale(1.05) translateY(-4px);
}

.tap2order-landing .t2o-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--t2o-primary);
  color: var(--t2o-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.tap2order-landing .t2o-pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-pricing-card .t2o-pricing-desc {
  font-size: 0.9rem;
  color: var(--t2o-muted);
  margin-bottom: 24px;
}

.tap2order-landing .t2o-pricing-card .t2o-pricing-price {
  margin-bottom: 32px;
}

.tap2order-landing .t2o-pricing-card .t2o-pricing-price .t2o-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--t2o-dark);
  vertical-align: top;
}

.tap2order-landing .t2o-pricing-card .t2o-pricing-price .t2o-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--t2o-dark);
  line-height: 1;
}

.tap2order-landing .t2o-pricing-card .t2o-pricing-price .t2o-period {
  font-size: 0.9rem;
  color: var(--t2o-muted);
}

.tap2order-landing .t2o-pricing-card .t2o-pricing-price .t2o-original {
  font-size: 1rem;
  color: var(--t2o-muted);
  text-decoration: line-through;
  display: block;
  margin-top: 4px;
}

.tap2order-landing .t2o-pricing-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  text-align: left;
}

.tap2order-landing .t2o-pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--t2o-text);
  border-bottom: 1px solid var(--t2o-border);
}

.tap2order-landing .t2o-pricing-features li:last-child {
  border-bottom: none;
}

.tap2order-landing .t2o-pricing-features li i {
  color: var(--t2o-success);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tap2order-landing .t2o-pricing-card .t2o-btn {
  width: 100%;
}

/* ------------------------------------------------------------
   15. TESTIMONIALS
   ------------------------------------------------------------ */
.tap2order-landing .t2o-testimonials {
  background: var(--t2o-bg);
}

.tap2order-landing .t2o-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-testimonial-card {
  background: var(--t2o-white);
  border: 1px solid var(--t2o-border);
  border-radius: var(--t2o-radius);
  padding: 32px;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--t2o-shadow-lg);
}

.tap2order-landing .t2o-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.tap2order-landing .t2o-testimonial-stars i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.tap2order-landing .t2o-testimonial-text {
  font-size: 0.95rem;
  color: var(--t2o-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.tap2order-landing .t2o-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--t2o-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2o-primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.tap2order-landing .t2o-testimonial-author-info h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--t2o-muted);
}

/* ------------------------------------------------------------
   16. FAQ
   ------------------------------------------------------------ */
.tap2order-landing .t2o-faq {
  background: var(--t2o-white);
}

.tap2order-landing .t2o-faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-faq-item {
  border: 1px solid var(--t2o-border);
  border-radius: var(--t2o-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-faq-item:hover {
  border-color: var(--t2o-primary);
}

.tap2order-landing .t2o-faq-item.active {
  border-color: var(--t2o-primary);
  box-shadow: 0 2px 12px rgba(255, 107, 0, 0.1);
}

.tap2order-landing .t2o-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: var(--t2o-white);
  border: none;
  cursor: pointer;
  font-family: var(--t2o-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t2o-dark);
  text-align: left;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-faq-question:hover {
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-faq-question i {
  font-size: 0.85rem;
  color: var(--t2o-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.tap2order-landing .t2o-faq-item.active .t2o-faq-question i {
  transform: rotate(180deg);
  color: var(--t2o-primary);
}

.tap2order-landing .t2o-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.tap2order-landing .t2o-faq-item.active .t2o-faq-answer {
  max-height: 500px;
}

.tap2order-landing .t2o-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--t2o-muted);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   17. CONTACT
   ------------------------------------------------------------ */
.tap2order-landing .t2o-contact {
  background: var(--t2o-bg);
}

.tap2order-landing .t2o-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.tap2order-landing .t2o-contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-contact-info > p {
  font-size: 0.95rem;
  color: var(--t2o-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.tap2order-landing .t2o-contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tap2order-landing .t2o-contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--t2o-border);
}

.tap2order-landing .t2o-contact-details li:last-child {
  border-bottom: none;
}

.tap2order-landing .t2o-contact-details li i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--t2o-primary-light);
  color: var(--t2o-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.tap2order-landing .t2o-contact-details li span {
  font-size: 0.95rem;
  color: var(--t2o-text);
}

.tap2order-landing .t2o-contact-form {
  background: var(--t2o-white);
  border: 1px solid var(--t2o-border);
  border-radius: var(--t2o-radius-lg);
  padding: 40px;
}

.tap2order-landing .t2o-contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--t2o-dark);
}

.tap2order-landing .t2o-form-group {
  margin-bottom: 20px;
}

.tap2order-landing .t2o-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--t2o-dark);
  margin-bottom: 6px;
}

.tap2order-landing .t2o-form-group input,
.tap2order-landing .t2o-form-group textarea,
.tap2order-landing .t2o-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--t2o-border);
  border-radius: 8px;
  font-family: var(--t2o-font);
  font-size: 0.95rem;
  color: var(--t2o-text);
  transition: var(--t2o-transition);
  background: var(--t2o-white);
}

.tap2order-landing .t2o-form-group input:focus,
.tap2order-landing .t2o-form-group textarea:focus,
.tap2order-landing .t2o-form-group select:focus {
  outline: none;
  border-color: var(--t2o-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.tap2order-landing .t2o-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.tap2order-landing .t2o-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------ */
.tap2order-landing .t2o-footer {
  background: var(--t2o-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.tap2order-landing .t2o-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.tap2order-landing .t2o-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--t2o-white);
  margin-bottom: 16px;
  text-decoration: none;
}

.tap2order-landing .t2o-footer-brand img {
  height: 32px;
}

.tap2order-landing .t2o-footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.tap2order-landing .t2o-footer-social {
  display: flex;
  gap: 12px;
}

.tap2order-landing .t2o-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-footer-social a:hover {
  background: var(--t2o-primary);
  color: var(--t2o-white);
  transform: translateY(-2px);
}

.tap2order-landing .t2o-footer-col h4 {
  color: var(--t2o-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.tap2order-landing .t2o-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tap2order-landing .t2o-footer-links li {
  margin-bottom: 10px;
}

.tap2order-landing .t2o-footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--t2o-transition);
}

.tap2order-landing .t2o-footer-links li a:hover {
  color: var(--t2o-primary);
  padding-left: 4px;
}

.tap2order-landing .t2o-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.tap2order-landing .t2o-footer-bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.tap2order-landing .t2o-footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.tap2order-landing .t2o-footer-bottom-links {
  display: flex;
  gap: 24px;
}

.tap2order-landing .t2o-footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.tap2order-landing .t2o-footer-bottom-links a:hover {
  color: var(--t2o-primary);
}

/* ------------------------------------------------------------
   19. WHATSAPP FLOAT
   ------------------------------------------------------------ */
.tap2order-landing .t2o-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2o-white);
  font-size: 1.8rem;
  z-index: 1030;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--t2o-transition);
  text-decoration: none;
}

.tap2order-landing .t2o-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: var(--t2o-white);
}

.tap2order-landing .t2o-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: t2o-whatsapp-pulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes t2o-whatsapp-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ------------------------------------------------------------
   20. BACK TO TOP
   ------------------------------------------------------------ */
.tap2order-landing .t2o-topbtn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--t2o-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2o-white);
  font-size: 1.1rem;
  z-index: 1030;
  box-shadow: var(--t2o-shadow-md);
  transition: var(--t2o-transition);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.tap2order-landing .t2o-topbtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tap2order-landing .t2o-topbtn:hover {
  background: var(--t2o-primary);
  transform: translateY(-2px);
  box-shadow: var(--t2o-shadow-lg);
}

/* ------------------------------------------------------------
   21. ANIMATIONS
   ------------------------------------------------------------ */
.tap2order-landing .t2o-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tap2order-landing .t2o-animate.t2o-visible {
  opacity: 1;
  transform: translateY(0);
}

.tap2order-landing .t2o-animate-delay-1 {
  transition-delay: 0.1s;
}

.tap2order-landing .t2o-animate-delay-2 {
  transition-delay: 0.2s;
}

.tap2order-landing .t2o-animate-delay-3 {
  transition-delay: 0.3s;
}

.tap2order-landing .t2o-animate-delay-4 {
  transition-delay: 0.4s;
}

.tap2order-landing .t2o-animate-fadeIn {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.tap2order-landing .t2o-animate-fadeIn.t2o-visible {
  opacity: 1;
}

.tap2order-landing .t2o-animate-fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tap2order-landing .t2o-animate-fadeInUp.t2o-visible {
  opacity: 1;
  transform: translateY(0);
}

.tap2order-landing .t2o-animate-slideInLeft {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tap2order-landing .t2o-animate-slideInLeft.t2o-visible {
  opacity: 1;
  transform: translateX(0);
}

.tap2order-landing .t2o-animate-slideInRight {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tap2order-landing .t2o-animate-slideInRight.t2o-visible {
  opacity: 1;
  transform: translateX(0);
}

.tap2order-landing .t2o-animate-scaleIn {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tap2order-landing .t2o-animate-scaleIn.t2o-visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes t2o-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes t2o-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ------------------------------------------------------------
   22. UTILITIES
   ------------------------------------------------------------ */
.tap2order-landing .t2o-text-center {
  text-align: center;
}

.tap2order-landing .t2o-text-primary {
  color: var(--t2o-primary) !important;
}

.tap2order-landing .t2o-text-white {
  color: var(--t2o-white) !important;
}

.tap2order-landing .t2o-text-muted {
  color: var(--t2o-muted) !important;
}

.tap2order-landing .t2o-bg-dark {
  background: var(--t2o-dark) !important;
}

.tap2order-landing .t2o-bg-primary {
  background: var(--t2o-primary) !important;
}

.tap2order-landing .t2o-mb-0 {
  margin-bottom: 0 !important;
}

.tap2order-landing .t2o-mb-1 {
  margin-bottom: 8px !important;
}

.tap2order-landing .t2o-mb-2 {
  margin-bottom: 16px !important;
}

.tap2order-landing .t2o-mb-3 {
  margin-bottom: 24px !important;
}

.tap2order-landing .t2o-mb-4 {
  margin-bottom: 32px !important;
}

.tap2order-landing .t2o-mt-3 {
  margin-top: 24px !important;
}

/* ------------------------------------------------------------
   23. RESPONSIVE — 1024px
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .tap2order-landing .t2o-hero-title {
    font-size: 2.8rem;
  }

  .tap2order-landing .t2o-hero-mockup {
    width: 260px;
  }

  .tap2order-landing .t2o-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tap2order-landing .t2o-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .tap2order-landing .t2o-pricing-grid {
    gap: 24px;
  }

  .tap2order-landing .t2o-pricing-card.t2o-pricing-recommended {
    transform: scale(1.03);
  }

  .tap2order-landing .t2o-pricing-card.t2o-pricing-recommended:hover {
    transform: scale(1.03) translateY(-4px);
  }

  .tap2order-landing .t2o-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tap2order-landing .t2o-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .tap2order-landing .t2o-demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tap2order-landing .t2o-preview-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .tap2order-landing .t2o-qr-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------------------------------------------------------
   24. RESPONSIVE — 992px (header mobile breakpoint)
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
  /* Header / Navbar mobile */
  .tap2order-landing .t2o-nav-menu {
    display: none;
  }

  .tap2order-landing .t2o-nav-actions {
    display: none;
  }

  .tap2order-landing .t2o-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .tap2order-landing .t2o-header .t2o-container {
    gap: 0;
  }

  .tap2order-landing .hero {
    padding-top: 110px;
  }
}

/* ------------------------------------------------------------
   25. RESPONSIVE — 768px
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  .tap2order-landing .t2o-section {
    padding: 60px 0;
  }

  .tap2order-landing .t2o-section-title {
    margin-bottom: 40px;
  }

  .tap2order-landing .t2o-section-title h2 {
    font-size: 1.9rem;
  }

  /* Hero mobile */
  .tap2order-landing .t2o-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .tap2order-landing .t2o-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .tap2order-landing .t2o-hero-content {
    max-width: 100%;
  }

  .tap2order-landing .t2o-hero-title {
    font-size: 2.2rem;
  }

  .tap2order-landing .t2o-hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .tap2order-landing .t2o-hero-buttons {
    justify-content: center;
  }

  .tap2order-landing .t2o-hero-trust {
    justify-content: center;
  }

  .tap2order-landing .t2o-hero-visual {
    order: -1;
  }

  .tap2order-landing .t2o-hero-mockup {
    width: 220px;
  }

  /* Trust strip */
  .tap2order-landing .t2o-trust-strip-inner {
    gap: 24px;
  }

  /* Grids */
  .tap2order-landing .t2o-features-grid {
    grid-template-columns: 1fr;
  }

  .tap2order-landing .t2o-modes-grid {
    grid-template-columns: 1fr;
  }

  .tap2order-landing .t2o-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .tap2order-landing .t2o-steps-grid::before {
    display: none;
  }

  .tap2order-landing .t2o-benefits-grid {
    grid-template-columns: 1fr;
  }

  .tap2order-landing .t2o-offers-grid {
    grid-template-columns: 1fr;
  }

  .tap2order-landing .t2o-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .tap2order-landing .t2o-pricing-card.t2o-pricing-recommended {
    transform: none;
  }

  .tap2order-landing .t2o-pricing-card.t2o-pricing-recommended:hover {
    transform: translateY(-4px);
  }

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

  .tap2order-landing .t2o-demo-grid {
    grid-template-columns: 1fr;
  }

  .tap2order-landing .t2o-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tap2order-landing .t2o-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tap2order-landing .t2o-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .tap2order-landing .t2o-preview-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tap2order-landing .t2o-qr-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Pricing toggle */
  .tap2order-landing .t2o-pricing-toggle {
    flex-wrap: wrap;
  }

  /* Preview */
  .tap2order-landing .t2o-preview-inner h2 {
    font-size: 1.9rem;
  }

  /* Contact */
  .tap2order-landing .t2o-form-row {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .tap2order-landing .t2o-faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .tap2order-landing .t2o-faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }

  /* Video section */
  .tap2order-landing .video-section {
    padding: 60px 0;
  }

  .tap2order-landing .video-wrapper {
    max-width: 100%;
    padding: 0 12px;
  }

  .tap2order-landing .video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .tap2order-landing .video-title {
    font-size: 1.5rem;
  }

  /* WhatsApp & top button slightly smaller */
  .tap2order-landing .t2o-whatsapp {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .tap2order-landing .t2o-topbtn {
    width: 44px;
    height: 44px;
    bottom: 88px;
    right: 20px;
  }

  /* Testimonials card */
  .tap2order-landing .t2o-testimonial-card {
    padding: 28px 22px;
  }
}

/* ------------------------------------------------------------
   25. RESPONSIVE — 480px
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .tap2order-landing .t2o-section {
    padding: 48px 0;
  }

  .tap2order-landing .t2o-section-title h2 {
    font-size: 1.6rem;
  }

  .tap2order-landing .t2o-section-title p {
    font-size: 1rem;
  }

  /* Hero */
  .tap2order-landing .t2o-hero-title {
    font-size: 1.8rem;
  }

  .tap2order-landing .t2o-hero-desc {
    font-size: 1rem;
  }

  .tap2order-landing .t2o-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .tap2order-landing .t2o-hero-buttons .t2o-btn {
    width: 100%;
    justify-content: center;
  }

  .tap2order-landing .t2o-hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .tap2order-landing .t2o-hero-mockup {
    width: 180px;
  }

  .tap2order-landing .t2o-hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  /* Trust strip */
  .tap2order-landing .t2o-trust-strip-inner {
    flex-direction: column;
    gap: 16px;
  }

  /* Steps */
  .tap2order-landing .t2o-steps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  /* Cards */
  .tap2order-landing .t2o-feature-card,
  .tap2order-landing .t2o-mode-card,
  .tap2order-landing .t2o-demo-card,
  .tap2order-landing .t2o-offer-card,
  .tap2order-landing .t2o-pricing-card,
  .tap2order-landing .t2o-contact-form {
    padding: 24px;
  }

  .tap2order-landing .t2o-mode-card {
    padding: 28px;
  }

  .tap2order-landing .t2o-benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .tap2order-landing .t2o-qr-icon-grid {
    grid-template-columns: 1fr;
  }

  .tap2order-landing .t2o-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .tap2order-landing .t2o-btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
  }

  /* Pricing */
  .tap2order-landing .t2o-pricing-price .t2o-amount {
    font-size: 2.5rem;
  }

  /* FAQ */
  .tap2order-landing .t2o-faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .tap2order-landing .t2o-faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }

  /* WhatsApp & top button */
  .tap2order-landing .t2o-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 16px;
    right: 16px;
  }

  .tap2order-landing .t2o-topbtn {
    width: 42px;
    height: 42px;
    bottom: 80px;
    right: 16px;
  }

  /* Contact details */
  .tap2order-landing .t2o-contact-details li {
    gap: 12px;
  }

  .tap2order-landing .t2o-contact-details li span {
    font-size: 0.85rem;
  }

  /* Footer */
  .tap2order-landing .t2o-footer-bottom-links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  /* Nav brand smaller on mobile */
  .tap2order-landing .t2o-brand {
    font-size: 1.2rem;
  }

  .tap2order-landing .t2o-brand img {
    height: 28px;
  }

  .tap2order-landing .t2o-header {
    height: 68px;
  }

  .tap2order-landing .t2o-header.menu-open .t2o-nav-menu {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  /* Testimonials card padding */
  .tap2order-landing .t2o-testimonial-card {
    padding: 24px 20px;
  }

  /* Video section */
  .tap2order-landing .video-section {
    padding: 48px 0;
  }

  .tap2order-landing .video-title {
    font-size: 1.3rem;
  }

  .tap2order-landing .video-subtitle {
    font-size: 0.9rem;
  }

  /* Hero stat numbers */
  .tap2order-landing .t2o-hero-stat .t2o-stat-number {
    font-size: 1.4rem;
  }

  .tap2order-landing .t2o-hero-stat .t2o-stat-label {
    font-size: 0.7rem;
  }
}

/* ------------------------------------------------------------
   26. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .tap2order-landing .t2o-header,
  .tap2order-landing .t2o-whatsapp,
  .tap2order-landing .t2o-topbtn {
    display: none !important;
  }

  .tap2order-landing .t2o-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .tap2order-landing .t2o-section {
    padding: 32px 0;
  }
}
