/* ==========================================================================
   DAINTY POS F&B - MODERN HIGH-CONVERSION STYLESHEET
   Clean, Premium, High-Energy Red/Black/White Theme for F&B Restaurant POS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand Red Palette */
  --red-primary: #E6182B;
  --red-light: #FF2E44;
  --red-dark: #B91422;
  --red-glow: rgba(230, 24, 43, 0.3);
  --red-glow-subtle: rgba(230, 24, 43, 0.08);
  --red-gradient: linear-gradient(135deg, #FF2E44 0%, #E6182B 60%, #B30E1D 100%);
  --red-gradient-soft: linear-gradient(135deg, rgba(230, 24, 43, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%);

  /* Fresh Modern Light Palette */
  --bg-main: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-surface: #FFFFFF;
  --bg-surface-2: #F1F5F9;
  --bg-surface-3: #E2E8F0;

  /* Deep Black & Dark Accents */
  --bg-dark: #0F172A;
  --bg-darker: #090B10;
  --bg-card-dark: #1E293B;

  /* Typography Colors */
  --text-heading: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  /* Borders & Dividers */
  --border-subtle: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-red: rgba(230, 24, 43, 0.25);
  --border-red-strong: rgba(230, 24, 43, 0.6);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.09);
  --shadow-red: 0 10px 30px rgba(230, 24, 43, 0.28);
  --shadow-red-strong: 0 15px 40px rgba(230, 24, 43, 0.4);
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-body);
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--bg-main);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-primary);
}

/* Container */
.dainty-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   UTILITY & DECORATIVE CLASSES
   ========================================================================== */
.text-red { color: var(--red-primary) !important; }
.text-red-light { color: var(--red-light) !important; }
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-red { background-color: var(--red-primary) !important; }
.bg-white { background-color: var(--bg-white) !important; }
.bg-light { background-color: var(--bg-surface-2) !important; }

.gradient-text-red {
  background: linear-gradient(135deg, #E6182B 0%, #FF2E44 50%, #990B18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(230, 24, 43, 0.08);
  border: 1px solid rgba(230, 24, 43, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red-primary);
}

.badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-primary);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 24, 43, 0.6); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(230, 24, 43, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 24, 43, 0); }
}

.section-padding {
  padding: 85px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 14px;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-dainty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-dainty-primary {
  background: var(--red-gradient);
  color: var(--text-white);
  box-shadow: var(--shadow-red);
}

.btn-dainty-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-strong);
  color: var(--text-white);
}

.btn-dainty-secondary {
  background: #0F172A;
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-dainty-secondary:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  color: var(--text-white);
}

.btn-dainty-outline {
  background: #FFFFFF;
  color: var(--text-heading);
  border: 1.5px solid var(--border-medium);
}

.btn-dainty-outline:hover {
  border-color: #0F172A;
  background: var(--bg-surface-2);
  transform: translateY(-2px);
}

.btn-dainty-white {
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-dainty-white:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: #0F172A;
}

.btn-dainty-outline-red {
  background: rgba(230, 24, 43, 0.05);
  color: var(--red-primary);
  border: 1.5px solid var(--red-primary);
}

.btn-dainty-outline-red:hover {
  background: var(--red-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ==========================================================================
   CLEAN FULL-WIDTH NAVBAR (NO OVERFLOW, PROPER SPACING)
   ========================================================================== */
.dainty-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
  padding: 10px 0;
}

.dainty-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.brand-title span {
  color: var(--red-primary);
}

/* Center Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  padding: 6px 2px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--red-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--red-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: #0F172A;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Menu Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 65px;
  left: 16px;
  right: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(-15px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #0F172A;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-link:hover {
  color: var(--red-primary);
}

/* ==========================================================================
   HERO SECTION (SELLING POS SOFTWARE + HARDWARE LOUD & CLEAR)
   ========================================================================== */
.dainty-hero {
  position: relative;
  padding-top: 135px;
  padding-bottom: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 15%, #FFF2F3 0%, #F8FAFC 60%, #F1F5F9 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 610px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 18px;
  color: #0F172A;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.hero-feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
}

.hero-feature-pill svg {
  color: var(--red-primary);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Hero Visual / Mockup Frame */
.hero-visual-wrapper {
  position: relative;
}

.hero-mockup-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 35px rgba(230, 24, 43, 0.08);
  transition: var(--transition-slow);
}

.hero-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16), 0 0 45px rgba(230, 24, 43, 0.15);
  border-color: rgba(230, 24, 43, 0.4);
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Badges on Hero */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatUpDown 6s ease-in-out infinite;
}

.floating-badge-top-left {
  top: -16px;
  left: -16px;
}

.floating-badge-bottom-right {
  bottom: -16px;
  right: -16px;
  animation-delay: -3s;
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}

.badge-text-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.86rem;
  color: #0F172A;
}

.badge-text-sub {
  font-size: 0.75rem;
  color: #64748B;
}

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

/* ==========================================================================
   WHAT WE SELL: PRODUCT ECOSYSTEM SHOWCASE
   (Highlighting the 4 core products: PC POS, Mobile App, Hardware Handheld, Cloud)
   ========================================================================== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.ecosystem-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.ecosystem-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(230, 24, 43, 0.12);
}

.ecosystem-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.ecosystem-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}

.ecosystem-card-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.ecosystem-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 18px;
}

.ecosystem-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #334155;
  font-weight: 600;
}

.ecosystem-bullet svg {
  color: var(--red-primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ==========================================================================
   METRICS / STATS SECTION
   ========================================================================== */
.stats-bar-section {
  padding: 32px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 6px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--red-primary);
}

.stat-label {
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 600;
}

/* ==========================================================================
   BENTO GRID: TRANSFORMASI OPERASIONAL RESTORAN
   Modern, Sleek, Problem vs Solution Showcase
   ========================================================================== */
.bento-transform-section {
  background: #F8FAFC;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bento-transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bento-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  border-color: rgba(230, 24, 43, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.bento-card-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bento-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(230, 24, 43, 0.08);
  color: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.bento-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
}

.bento-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.bento-metric-badge.highlight-red {
  background: var(--red-primary);
}

.bento-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bento-contrast-col {
  padding: 14px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-contrast-col.before {
  background: #F8FAFC;
  border: 1px dashed var(--border-medium);
}

.bento-contrast-col.after {
  background: #FFF5F6;
  border: 1px solid rgba(230, 24, 43, 0.2);
}

.contrast-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contrast-label.before {
  color: #64748B;
}

.contrast-label.after {
  color: var(--red-primary);
}

.contrast-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #334155;
}

.contrast-text strong {
  color: #0F172A;
}

/* ==========================================================================
   HARDWARE SPOTLIGHT BANNER
   ========================================================================== */
.hardware-spotlight-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #3B0B13 100%);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  color: #FFFFFF;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  margin-top: 40px;
}

.hardware-spotlight-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.hardware-spotlight-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hardware-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.hardware-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #F1F5F9;
  font-weight: 600;
}

.hardware-spec-item svg {
  color: var(--red-light);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   BUSINESS TYPES / COCOK UNTUK
   ========================================================================== */
.business-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.biz-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.biz-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(230, 24, 43, 0.12);
}

.biz-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(230, 24, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 2px;
  transition: var(--transition-fast);
}

.biz-card:hover .biz-icon {
  background: var(--red-gradient);
  box-shadow: var(--shadow-red);
  transform: scale(1.06);
}

.biz-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
}

/* ==========================================================================
   SUPER FEATURES GRID (FITUR UNGGULAN)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.feature-card:hover {
  border-color: rgba(230, 24, 43, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08), 0 0 25px rgba(230, 24, 43, 0.08);
}

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

.feature-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(230, 24, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  margin-bottom: 18px;
  transition: var(--transition-normal);
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-card-icon {
  background: var(--red-gradient);
  color: var(--text-white);
  box-shadow: var(--shadow-red);
  transform: scale(1.05);
}

.feature-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.feature-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.feature-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #334155;
  font-weight: 600;
}

.feature-highlight-item svg {
  color: var(--red-primary);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   DUAL HARDWARE & APP SHOWCASE
   ========================================================================== */
.showcase-tab-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.tab-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  padding: 11px 24px;
  border-radius: var(--radius-full);
  color: #475569;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.tab-btn svg {
  width: 18px;
  height: 18px;
}

.tab-btn.active, .tab-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
}

.tab-btn.active svg {
  color: var(--red-primary);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}

.tab-pane.active {
  display: block;
}

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

.showcase-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.showcase-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.showcase-title {
  font-size: 1.85rem;
  color: #0F172A;
  margin-bottom: 12px;
}

.showcase-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
}

.showcase-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.showcase-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #1E293B;
  font-weight: 500;
}

.showcase-point-item svg {
  color: var(--red-primary);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Gallery Grid / Screenshot Slider */
.screenshots-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mobile-phone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  cursor: pointer;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery-item.phone-frame {
  aspect-ratio: 9 / 17;
  border-radius: 20px;
  border: 2px solid #E2E8F0;
  background: #0F172A;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-item.phone-frame img {
  object-fit: contain;
  background: #FFFFFF;
}

.gallery-item.tablet-frame {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 2px solid #E2E8F0;
}

.gallery-item.tablet-frame img {
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 40%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  transition: var(--transition-fast);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--red-primary);
  box-shadow: 0 14px 30px rgba(230, 24, 43, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
}

.gallery-overlay-sub {
  font-size: 0.78rem;
  color: #FFA3AC;
}

/* ==========================================================================
   VIDEO DEMO SECTION
   ========================================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.video-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.video-card:hover {
  border-color: rgba(230, 24, 43, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.video-thumb-container {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0F172A;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: var(--transition-normal);
}

.video-thumb-container:hover .video-thumb-img {
  opacity: 1;
  transform: scale(1.03);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: 0 0 25px var(--red-primary);
  transition: var(--transition-fast);
}

.video-play-button svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.video-thumb-container:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 35px var(--red-light);
}

.video-info {
  padding: 20px 22px;
}

.video-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0F172A;
}

.video-desc {
  font-size: 0.88rem;
  color: #64748B;
}

/* ==========================================================================
   PRICING TABLE SECTION (MODERN F&B PLANS)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-hardware-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: #FFFFFF;
  border: 2px solid var(--red-primary);
  box-shadow: 0 15px 40px rgba(230, 24, 43, 0.12), 0 8px 25px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 50px rgba(230, 24, 43, 0.2);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-gradient);
  color: var(--text-white);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-red);
}

.pricing-header {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 0.86rem;
  color: #64748B;
  min-height: 38px;
}

.pricing-price-box {
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red-primary);
}

.amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
}

.period {
  font-size: 0.86rem;
  color: #64748B;
  font-weight: 600;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
}

.pricing-feature-item svg {
  color: var(--red-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-item.disabled {
  color: #94A3B8;
  text-decoration: line-through;
}

.pricing-feature-item.disabled svg {
  color: #CBD5E1;
}

.pricing-notes {
  text-align: center;
  max-width: 700px;
  margin: 26px auto 0 auto;
  font-size: 0.84rem;
  color: #64748B;
}

.pricing-consult-box {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(230, 24, 43, 0.25);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-consult-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 24, 43, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-consult-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pricing-consult-icon {
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.08);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-consult-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.pricing-consult-desc {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1050px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item.active {
  border-color: var(--red-primary);
  box-shadow: 0 8px 25px rgba(230, 24, 43, 0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  background: var(--red-primary);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 18px;
}

/* ==========================================================================
   CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
}

.contact-info-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-sm);
}

.contact-info-header h3 {
  font-size: 1.6rem;
  color: #0F172A;
  margin-bottom: 6px;
}

.contact-info-header p {
  color: #64748B;
  font-size: 0.9rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.channel-card:hover {
  border-color: var(--red-primary);
  transform: translateX(3px);
  background: #FFFFFF;
  box-shadow: 0 6px 18px rgba(230, 24, 43, 0.08);
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(230, 24, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  flex-shrink: 0;
}

.channel-icon svg {
  width: 20px;
  height: 20px;
}

.channel-label {
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.channel-value {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
}

/* Contact Form */
.contact-form-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 15px;
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #0F172A;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(230, 24, 43, 0.15);
  background: #FFFFFF;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #94A3B8;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Map Embed */
.map-embed-wrapper {
  margin-top: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 180px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   CALL TO ACTION (CTA BANNER)
   ========================================================================== */
.cta-banner-wrapper {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B24 40%, #8A0B16 100%);
  border-radius: var(--radius-xl);
  padding: 50px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  text-align: center;
}

.cta-banner-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 14px;
}

.cta-banner-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
  line-height: 1.7;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.dainty-footer {
  background: #0B0D13;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 65px 0 26px 0;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 45px;
}

.footer-brand-col p {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-top: 12px;
  margin-bottom: 18px;
  line-height: 1.65;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: #94A3B8;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--red-light);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: #64748B;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   FLOATING WHATSAPP CTA
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
  text-decoration: none;
}

.floating-wa-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
}

.floating-wa-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   MODAL LIGHTBOX
   ========================================================================== */
.dainty-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.dainty-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-box {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: var(--transition-normal);
}

.dainty-modal.open .modal-content-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: none;
  font-size: 1.3rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--red-primary);
}

.modal-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.modal-image-view {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.modal-caption {
  padding: 12px 18px;
  background: #111319;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-cta-group, .hero-badges-row {
    justify-content: center;
  }

  .floating-badge {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 10px auto;
    display: inline-flex;
  }

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

  .business-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .showcase-content-grid {
    grid-template-columns: 1fr;
  }

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

  .hardware-spotlight-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hardware-spec-grid {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 32px auto;
  }

  .pricing-hardware-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .contact-section-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .pricing-consult-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .pricing-consult-content {
    flex-direction: column;
    text-align: center;
  }

  .pricing-consult-desc {
    max-width: 100%;
  }

  .nav-menu, .nav-actions .btn-dainty-primary, .nav-actions .btn-dainty-secondary {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-drawer {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

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

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

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

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

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

  .gallery-item.tablet-frame {
    grid-column: span 2;
  }

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

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

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

  .cta-banner-title {
    font-size: 1.9rem;
  }

  .cta-banner-wrapper {
    padding: 36px 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .btn-dainty {
    width: 100%;
  }

  .screenshots-gallery-grid {
    grid-template-columns: 1fr;
  }

  .mobile-phone-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tablet-frame {
    grid-column: span 1;
  }

  .floating-wa-btn span {
    display: none;
  }

  .floating-wa-btn {
    padding: 12px;
    border-radius: 50%;
    bottom: 16px;
    right: 16px;
  }
}
