/* ========================================
   NAOS POS Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
  /* Primary gradient colors: red-orange to golden yellow */
  --primary: #FA5D37;
  --primary-dark: #F99026;
  --primary-light: #FA7A2D;
  --primary-gold: #EEB110;
  --primary-amber: #F6A51C;

  /* Support colors */
  --cream: #FDE0AE;
  --cream-light: #FEF3E2;

  --success: #10b981;
  --warning: #F6A51C;
  --error: #ef4444;

  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Dark theme with warm undertones */
  --dark-bg: #1a1614;
  --dark-surface: #2a2420;
  --dark-card: #3a332e;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

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

.nav-btn {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: var(--transition);
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--gray-200);
}

.lang-btn.active {
  background: var(--gray-200);
}

.lang-btn svg {
  transition: var(--transition);
}

.lang-btn.active svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1001;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

.lang-option:hover {
  background: var(--cream-light);
  color: var(--primary);
}

.lang-option.active {
  background: var(--cream-light);
  color: var(--primary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  color: white;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(250, 93, 55, 0.5);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--gray-100);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(250, 93, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(238, 177, 16, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(246, 165, 28, 0.1) 0%, transparent 40%);
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(250, 93, 55, 0.2);
  border: 1px solid rgba(250, 93, 55, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-400);
}

/* Hero Mockup */
.hero-image {
  position: relative;
}

.hero-mockup {
  position: relative;
}

.mockup-frame {
  background: var(--dark-card);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-screen {
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-surface);
}

.mockup-screen img {
  width: 100%;
  display: block;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: -60px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: -40px;
  animation-delay: 1.5s;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 24px;
}

.card-icon.green { background: rgba(16, 185, 129, 0.1); }
.card-icon.orange { background: rgba(250, 93, 55, 0.1); }
.card-icon.gold { background: rgba(238, 177, 16, 0.1); }

.card-content {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 12px;
  color: var(--gray-500);
}

.card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* Geometric diagonal accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(250, 93, 55, 0.05) 50%, rgba(238, 177, 16, 0.08) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* ========================================
   TRUSTED BY
   ======================================== */
.trusted {
  padding: 60px 0;
  background: white;
}

.trusted-label {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trusted-logo {
  font-size: 18px;
  color: var(--gray-400);
  padding: 12px 24px;
  background: var(--gray-50);
  border-radius: var(--border-radius);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--cream-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
}

/* ========================================
   FEATURES
   ======================================== */
.features {
  padding: 100px 0;
  background: var(--cream-light);
  position: relative;
}

/* Diagonal accent stripe */
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 25%, var(--primary-dark) 50%, var(--primary-amber) 75%, var(--primary-gold) 100%);
}

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

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.feature-card:hover {
  border-left-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  border-radius: 12px;
  margin-bottom: 24px;
}

.feature-icon svg {
  color: white;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

/* ========================================
   SOLUTIONS
   ======================================== */
.solutions {
  padding: 100px 0;
  background: white;
}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-card.reverse {
  direction: rtl;
}

.solution-card.reverse > * {
  direction: ltr;
}

.solution-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.solution-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.solution-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.solution-desc {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-features li {
  font-size: 15px;
  color: var(--gray-700);
}

/* ========================================
   INDUSTRY SECTIONS (Restaurant & Retail)
   ======================================== */
.industry-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.industry-section.restaurant {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.industry-section.retail {
  background: var(--cream-light);
}

.industry-section .section-header {
  margin-bottom: 60px;
}

.industry-section.restaurant .section-badge {
  background: rgba(250, 93, 55, 0.2);
  color: var(--cream);
}

.industry-section.restaurant .section-title {
  color: white;
}

.industry-section.restaurant .section-subtitle {
  color: var(--gray-400);
}

.industry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.industry-content.reverse {
  direction: rtl;
}

.industry-content.reverse > * {
  direction: ltr;
}

.industry-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.industry-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
}

.industry-section.restaurant .industry-feature {
  background: rgba(255, 255, 255, 0.05);
}

.industry-section.restaurant .industry-feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.industry-section.retail .industry-feature {
  background: white;
  box-shadow: var(--shadow);
}

.industry-section.retail .industry-feature:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.industry-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 24px;
}

.industry-feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.industry-section.restaurant .industry-feature-content h4 {
  color: white;
}

.industry-section.retail .industry-feature-content h4 {
  color: var(--gray-900);
}

.industry-feature-content p {
  font-size: 14px;
  line-height: 1.5;
}

.industry-section.restaurant .industry-feature-content p {
  color: var(--gray-400);
}

.industry-section.retail .industry-feature-content p {
  color: var(--gray-500);
}

/* Industry Media */
.industry-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.industry-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.industry-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.industry-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.industry-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--dark-card);
}

.industry-video video {
  width: 100%;
  height: auto;
  display: block;
}

.industry-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
}

.video-placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: var(--primary);
}

.video-placeholder span {
  font-size: 16px;
  font-weight: 500;
}

/* Industry Gallery */
.industry-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.industry-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
}

.industry-gallery img:hover {
  transform: scale(1.05);
}

/* Industry CTA */
.industry-cta {
  margin-top: 32px;
}

.industry-section.restaurant .industry-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .industry-content,
  .industry-content.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .industry-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .industry-gallery {
    grid-template-columns: 1fr;
  }

  .industry-image img {
    height: 200px;
  }
}

/* ========================================
   APP SECTION
   ======================================== */
.app-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-info {
  color: white;
}

.app-info .section-badge {
  background: rgba(250, 93, 55, 0.2);
  color: var(--cream);
}

.app-info .section-title {
  color: white;
}

.app-desc {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-300);
}

.app-features svg {
  color: var(--success);
  flex-shrink: 0;
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: white;
  border-radius: var(--border-radius);
  color: var(--gray-900);
  transition: var(--transition);
}

.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.app-store-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.app-store-btn span {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
}

.app-store-btn strong {
  display: block;
  font-size: 16px;
}

.app-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  padding: 12px;
  background: var(--dark-card);
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-frame img {
  border-radius: 28px;
  display: block;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  padding: 100px 0;
  background: var(--cream-light);
}

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

.toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}

.toggle-label.active {
  color: var(--gray-900);
}

.discount-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--success);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-300);
  border-radius: 28px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(28px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: white;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%) border-box;
  border: 2px solid transparent;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-600);
}

.amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.period {
  font-size: 16px;
  color: var(--gray-500);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.plan-features li svg {
  flex-shrink: 0;
  color: var(--success);
}

.plan-features li.disabled {
  color: var(--gray-400);
}

.plan-features li.disabled svg {
  color: var(--gray-300);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 40px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: white;
}

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

.testimonial-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 8px;
  transition: var(--transition);
  border-top: 3px solid var(--primary-gold);
}

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

.testimonial-content {
  margin-bottom: 24px;
}

.stars {
  color: var(--primary-gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-content p {
  font-size: 15px;
  color: var(--gray-600);
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  color: white;
  font-weight: 600;
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 15px;
  color: var(--gray-900);
}

.author-info span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  position: relative;
  overflow: hidden;
}

/* Diagonal geometric overlay */
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(15deg);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(15deg);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-form {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-family: var(--font-family);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(250, 93, 55, 0.1);
}

.cta-form textarea {
  resize: vertical;
  margin-bottom: 16px;
}

.cta-form button {
  margin-top: 8px;
}

.cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

.cta-note a {
  color: white;
  text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 40px;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 24px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
  font-size: 14px;
}

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

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

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

  .solution-card,
  .solution-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .app-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-features {
    align-items: center;
  }

  .app-buttons {
    justify-content: center;
  }

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

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-btn {
    margin: 8px 0 0;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .lang-selector {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .lang-btn {
    width: 100%;
    justify-content: space-between;
  }

  .lang-dropdown {
    position: relative;
    top: 8px;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--gray-200);
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .section-title {
    font-size: 28px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

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

/* ========================================
   PAGE-SPECIFIC STYLES (Restaurant & Retail)
   ======================================== */

/* Page Hero */
.page-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.page-hero .hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}

.page-hero .hero-content {
  max-width: 600px;
}

.page-hero .hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-hero .hero-subtitle {
  font-size: 20px;
  color: var(--gray-300);
  margin-bottom: 32px;
  line-height: 1.6;
}

.page-hero .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.page-hero .mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Restaurant Hero specific */
.restaurant-hero {
  background: linear-gradient(135deg, #1a1614 0%, #2d2520 50%, #3a2e28 100%);
}

/* Retail Hero specific */
.retail-hero {
  background: linear-gradient(135deg, #141a1a 0%, #1e2a2a 50%, #283838 100%);
}

/* Restaurant/Retail Types Section */
.restaurant-types,
.retail-types {
  padding: 60px 0;
  background: var(--gray-50);
}

.types-label {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.type-icon {
  font-size: 32px;
}

.type-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  text-align: center;
}

/* Page Features Section */
.page-features {
  padding: 100px 0;
}

/* Feature Showcase */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-showcase:last-child {
  margin-bottom: 0;
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-showcase-content {
  max-width: 520px;
}

.feature-icon-large {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-showcase-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.feature-showcase-content > p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-details {
  list-style: none;
}

.feature-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-700);
}

.feature-details li:last-child {
  border-bottom: none;
}

.feature-details li svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}

.feature-showcase-media img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Feature showcase with phone frame */
.feature-showcase-media .phone-frame-wrapper {
  max-width: 280px;
  margin: 0 auto;
}

.feature-showcase-media .phone-frame-wrapper img {
  box-shadow: none;
  border-radius: 20px;
}

/* Feature showcase with tablet frame */
.feature-showcase-media .tablet-frame-wrapper {
  max-width: 100%;
}

.feature-showcase-media .tablet-frame-wrapper img {
  box-shadow: none;
}

/* Feature showcase with browser frame */
.feature-showcase-media .browser-frame-wrapper {
  max-width: 100%;
}

.feature-showcase-media .browser-frame-wrapper img {
  box-shadow: none;
}

/* Demo Section */
.demo-section {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--dark-surface);
}

.video-placeholder-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder-large .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-placeholder-large:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder-large .play-button svg {
  width: 32px;
  height: 32px;
  color: #fff;
  margin-left: 4px;
}

.video-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

/* Screenshots Section */
.screenshots-section {
  padding: 100px 0;
}

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

.screenshot-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.screenshot-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.screenshot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 40px 16px 12px;
  font-size: 14px;
  font-weight: 500;
}

/* Additional Features Grid (small cards) */
.additional-features {
  padding: 100px 0;
  background: var(--gray-50);
}

.features-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card-small {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.feature-card-small:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon-small {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card-small h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

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

/* Active nav link */
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   PAGE-SPECIFIC RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .page-hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero .hero-content {
    max-width: 100%;
  }

  .page-hero .hero-image {
    display: none;
  }

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

  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-showcase.reverse {
    direction: ltr;
  }

  .feature-showcase-content {
    max-width: 100%;
  }

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

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

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

  .page-hero .hero-subtitle {
    font-size: 16px;
  }

  .types-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .type-card {
    padding: 16px 8px;
  }

  .type-icon {
    font-size: 24px;
  }

  .type-name {
    font-size: 10px;
  }

  .feature-showcase-content h3 {
    font-size: 24px;
  }

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

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

@media (max-width: 480px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   PLATFORM SHOWCASE SECTION
   ======================================== */
.platform-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}

.showcase-block {
  margin-top: 60px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.showcase-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.showcase-icon {
  font-size: 48px;
  line-height: 1;
}

.showcase-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.showcase-desc {
  color: var(--gray-600);
  font-size: 16px;
}

/* Carousel */
.showcase-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--gray-100);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  font-size: 24px;
  color: var(--gray-700);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* Browser/Desktop Frame Styling */
.browser-frame-wrapper {
  position: relative;
  background: #2d2d2d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 20px 60px rgba(0,0,0,0.4);
}

/* Browser toolbar */
.browser-frame-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(180deg, #3d3d3d 0%, #2d2d2d 100%);
  z-index: 10;
}

/* Browser buttons (traffic lights) */
.browser-frame-wrapper::after {
  content: '';
  position: absolute;
  top: 11px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #ff5f57;
  border-radius: 50%;
  z-index: 11;
  box-shadow:
    16px 0 0 #ffbd2e,
    32px 0 0 #28ca41;
}

/* Browser screen */
.browser-frame-wrapper img {
  width: 100%;
  display: block;
  margin-top: 32px;
}

/* Tablet Frame Styling */
.tablet-frame-wrapper {
  position: relative;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 15px 50px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* Tablet camera */
.tablet-frame-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  z-index: 10;
}

/* Tablet screen */
.tablet-frame-wrapper img {
  border-radius: 8px;
  width: 100%;
  display: block;
}

/* Mobile Carousel Styles */
.mobile-carousel .mobile-track {
  gap: 24px;
  padding: 20px;
  align-items: flex-start;
  justify-content: center;
}

.mobile-carousel .mobile-slide {
  min-width: 160px;
  max-width: 180px;
  flex-shrink: 0;
}

/* Phone Frame Styling */
.mobile-carousel .phone-frame-wrapper {
  position: relative;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 8px 30px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* Phone notch/speaker */
.mobile-carousel .phone-frame-wrapper::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  z-index: 10;
}

/* Phone screen */
.mobile-carousel .mobile-slide img {
  border-radius: 20px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.mobile-carousel .mobile-slide .slide-caption {
  position: relative;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 8px;
  margin-top: 12px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .mobile-carousel .mobile-slide {
    min-width: 140px;
    max-width: 160px;
  }

  .mobile-carousel .mobile-slide img {
    max-height: 280px;
  }

  .mobile-carousel .phone-frame-wrapper {
    border-radius: 24px;
    padding: 6px;
  }

  .mobile-carousel .phone-frame-wrapper::before {
    width: 40px;
    height: 3px;
    top: 8px;
  }

  .mobile-carousel .mobile-slide img {
    border-radius: 18px;
  }
}

@media (max-width: 576px) {
  .mobile-carousel .mobile-slide {
    min-width: 120px;
    max-width: 140px;
  }

  .mobile-carousel .mobile-slide img {
    max-height: 240px;
  }

  .mobile-carousel .phone-frame-wrapper {
    border-radius: 20px;
    padding: 5px;
  }

  .mobile-carousel .phone-frame-wrapper::before {
    width: 32px;
    height: 3px;
    top: 7px;
  }

  .mobile-carousel .mobile-slide img {
    border-radius: 15px;
  }

  .showcase-block {
    padding: 24px;
  }

  .showcase-header {
    flex-direction: column;
    gap: 12px;
  }

  .showcase-icon {
    font-size: 36px;
  }

  .showcase-title {
    font-size: 22px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ========================================
   FISCAL SECTION
   ======================================== */
.fiscal-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.fiscal-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}

.fiscal-info .section-badge {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.fiscal-info .section-title {
  color: #fff;
}

.fiscal-desc {
  color: var(--gray-300);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.fiscal-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fiscal-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fiscal-features li svg {
  flex-shrink: 0;
  color: var(--success);
}

.fiscal-features li strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.fiscal-features li span {
  color: var(--gray-400);
  font-size: 14px;
}

.fiscal-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fiscal-badge-large {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(250, 93, 55, 0.4);
}

.fiscal-badge-large .flag {
  font-size: 48px;
  margin-bottom: 8px;
}

.fiscal-badge-large .text {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .fiscal-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fiscal-features li {
    text-align: left;
  }

  .fiscal-badge-large {
    width: 160px;
    height: 160px;
  }

  .fiscal-badge-large .flag {
    font-size: 36px;
  }

  .fiscal-badge-large .text {
    font-size: 16px;
  }
}
