/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --color-primary: #1D4ED8;
  --color-secondary: #0F172A;
  --color-accent: #22C55E;
  --color-background: #F8FAFC;
  --color-border: #E2E8F0;
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-400: #9CA3AF;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--color-background);
  color: var(--color-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 4rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.section-alt {
    background: #f8fafc;
}

/* ==========================================
   PROCUREMENT FLOW
   ========================================== */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-step {
    display: flex;
    align-items: center;
    flex: 1;
}

.flow-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    flex: 1;
}

.flow-arrow {
    padding: 0 0.5rem;
    color: #94a3b8;
}


/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.nav-menu {
  display: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-buttons {
  display: none;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 1.5rem;
  height: 2px;
  background: var(--color-secondary);
  transition: all 0.3s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -0.5rem;
}

.hamburger::after {
  top: 0.5rem;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  padding: 0.5rem 1rem;
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease;
}

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

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #1e40af;
  box-shadow: 0 10px 15px -3px rgba(29, 78, 216, 0.3);
}

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

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

.btn-secondary {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
}

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

.btn-gradient {
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  color: white;
}

.btn-gradient:hover {
  box-shadow: 0 20px 25px -5px rgba(29, 78, 216, 0.3);
}

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

.btn-white:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-light {
  background: var(--color-background);
  color: var(--color-secondary);
  border: 2px solid var(--color-border);
}

.btn-light:hover {
  background: var(--color-border);
}

.btn-whatsapp {
  background: #dcfce7;
  color: #15803d;
  border: 2px solid #86efac;
}

.btn-whatsapp:hover {
  background: #bbf7d0;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================
   BADGES
   ========================================== */

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

.badge-secondary {
    background: #f1f5f9;
    color: #475569;
}

.badge-small {
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    margin-left: auto;
}
.badges {
    display: flex;
    gap: 0.75rem;
}

/* ===== Hero Section ===== */
.hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, white, var(--color-background));
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--color-primary);
  width: fit-content;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-secondary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-mockup {
  position: relative;
}

.dashboard-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--color-border);
}

.dashboard-mock {
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 2rem;
    background: #f8fafc;
}

.mock-chart {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.mock-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.mock-graph {
    height: 8rem;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.kpi-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.kpi-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid;
}

.kpi-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.kpi-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.kpi-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
}

.kpi-green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-color: #86efac;
}

.kpi-purple {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  border-color: #d8b4fe;
}

.kpi-orange {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  border-color: #fdba74;
}

.kpi-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.kpi-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.kpi-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.kpi-change {
  font-size: 0.75rem;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.kpi-change-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.kpi-subtitle {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.table-preview {
  background: var(--color-background);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.table-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.table-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.table-row-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.status-yellow {
  background: #eab308;
}

.status-green {
  background: #22c55e;
}

.status-blue {
  background: #3b82f6;
}

.row-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.row-subtitle {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.status-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-approved {
  background: #dcfce7;
  color: #166534;
}

.status-delivered {
  background: #dbeafe;
  color: #1e40af;
}

/* ===== Trust Section ===== */
.trust {
  padding: 3rem 0;
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-title {
  text-align: center;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
  color: var(--color-gray-700);
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

/* ===== Features Section ===== */
.features {
  padding: 4rem 0;
  background: var(--color-background);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.feature-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.feature-icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.feature-icon-orange {
  background: #ffedd5;
  color: #ea580c;
}

.feature-icon-cyan {
  background: #cffafe;
  color: #0891b2;
}

.feature-icon-pink {
  background: #fce7f3;
  color: #db2777;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ===== How It Works Section ===== */
.how-it-works {
  padding: 4rem 0;
  background: white;
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

.step-card {
  position: relative;
  background: white;
  padding: 1.5rem;
  border: 2px solid var(--color-border);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(29, 78, 216, 0.3);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 1.5rem 0;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ===== Integrations Section ===== */
.integrations {
  padding: 4rem 0;
  background: linear-gradient(to bottom, white, var(--color-background));
}

.api-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #dbeafe, #dcfce7);
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-top: 1rem;
}

.api-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.integration-card {
  background: white;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.integration-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.integration-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.integration-card:hover .integration-icon {
  transform: scale(1.1);
}

.integration-icon svg {
  width: 2rem;
  height: 2rem;
}

.integration-icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.integration-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.integration-icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.integration-icon-emerald {
  background: #d1fae5;
  color: #059669;
}

.integration-icon-orange {
  background: #ffedd5;
  color: #ea580c;
}

.integration-icon-cyan {
  background: #cffafe;
  color: #0891b2;
}

.integration-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.integration-description {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.api-card {
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  color: white;
}

.api-card-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.api-card-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 4rem 0;
  background: var(--color-background);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  position: relative;
  background: white;
  padding: 2rem;
  border: 2px solid var(--color-border);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
  border-color: var(--color-primary);
  box-shadow: 0 25px 50px -12px rgba(29, 78, 216, 0.2);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(29, 78, 216, 0.3);
}

.popular-badge svg {
  width: 1rem;
  height: 1rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-gray-700);
  font-size: 0.875rem;
  line-height: 1.6;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background: #dcfce7;
  color: var(--color-accent);
  border-radius: 50%;
  padding: 0.125rem;
}

.pricing-footer {
  text-align: center;
  color: var(--color-gray-600);
}

.pricing-footer a {
  color: var(--color-primary);
  font-weight: 600;
}

.pricing-footer a:hover {
  text-decoration: underline;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 4rem 0;
  background: white;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.faq-item {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--color-background);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 24rem;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.faq-contact {
  text-align: center;
}

.faq-contact-title {
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.faq-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--color-background), white);
}

.cta-card {
  position: relative;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cta-benefit span {
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-secondary);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

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

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-contact {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-icon:has(+ div a[href^="mailto"]) {
  color: var(--color-primary);
}

.contact-icon:has(+ div a[href^="tel"]) {
  color: var(--color-accent);
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p:last-child {
  color: white;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

/* ===== Responsive Design ===== */

/* Tablet: 768px */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

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

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

  .trust-card p {
    font-size: 0.875rem;
  }

  .trust-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

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

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

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

  .pricing-card-popular {
    grid-column: span 2;
    max-width: 28rem;
    margin: 0 auto;
  }

  .cta-benefits {
    flex-direction: row;
    justify-content: center;
  }

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-copyright {
    text-align: left;
  }

  .faq-contact-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Desktop: 1024px */
@media (min-width: 1024px) {
  .navbar-content {
    height: 5rem;
  }

  .nav-menu {
    display: flex;
  }

  .nav-buttons {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .trust-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
  }

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

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

  .integrations-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .pricing-card-popular {
    grid-column: auto;
    transform: scale(1.05);
  }

  .cta-card {
    padding: 3rem 2.5rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .cta-description {
    font-size: 1.25rem;
  }

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

/* Large Desktop: 1440px */
@media (min-width: 1440px) {
  .section-title {
    font-size: 3.5rem;
  }
}
.product-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.2s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .product-card:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        }

        .product-image-container {
            position: relative;
            margin-bottom: 12px;
        }

        .product-image {
            width: 100%;
            height: 112px;
            object-fit: cover;
            border-radius: 8px;
        }

        .product-type-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

        .vendor-info {
            margin-bottom: 8px;
        }

        .umkm-badge {
            display: inline-block;
            background: #dcfce7;
            color: #166534;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 4px;
        }

        .vendor-name {
            font-size: 12px;
            color: #6b7280;
        }

        .product-name {
            font-size: 14px;
            margin-bottom: 8px;
            height: 40px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .product-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 8px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .icon-sm {
            width: 12px;
            height: 12px;
        }

        .tax-badge {
            display: inline-block;
            border: 1px solid #d1d5db;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .footer-note {
            text-align: center;
            font-size: 12px;
            color: #6b7280;
            padding: 16px;
        }

        .footer-note p {
            margin: 4px 0;
        }

        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 16px;
            }

            .header-content {
                padding: 0 16px;
            }

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

            .form-row {
                flex-direction: column;
            }
        }
        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.2s;
        }

        .btn-primary {
            background: #2563eb;
            color: white;
        }

        .btn-primary:hover {
            background: #1d4ed8;
        }

        .btn-primary:disabled {
            background: #d1d5db;
            color: #9ca3af;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: white;
            color: #2563eb;
            border: 1px solid #2563eb;
        }

        .btn-secondary:hover {
            background: #eff6ff;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .section-header h3 {
            font-size: 18px;
        }

        .section-header a {
            color: #2563eb;
            text-decoration: none;
            font-size: 14px;
        }

        .section-header a:hover {
            text-decoration: underline;
        }