/* ============================================
   FoodPoint POS — Standard CSS
   Converted from Tailwind utility classes
   ============================================ */

/* ---- CSS Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; color: #091E42; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
::selection { background-color: #EA580C; color: #fff; }

/* ---- CSS Variables ---- */
:root {
  --brand-50: #F0F4FA;
  --brand-100: #DBE5F1;
  --brand-200: #B8CCE4;
  --brand-300: #8FA9D0;
  --brand-400: #5E80B5;
  --brand-500: #3D5F9A;
  --brand-600: #2A4678;
  --brand-700: #1A325A;
  --brand-800: #0F2348;
  --brand-900: #091E42;
  --brand-950: #050F28;
  --accent: #EA580C;
  --accent-light: #FB923C;
  --accent-dark: #C2410C;
  --accent-50: #FFF7ED;
  --accent-100: #FFEDD5;
  --white: #FFFFFF;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --red-400: #f87171;
  --red-500: #ef4444;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #091E42; }
::-webkit-scrollbar-thumb { background: #2A4678; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #3D5F9A; }

/* ---- Focus visible ---- */
*:focus-visible { outline: 2px solid #EA580C; outline-offset: 2px; }

/* ---- Utility: logo white filter ---- */
.logo-white { filter: brightness(0) invert(1); }
.text-balance { text-wrap: balance; }

/* ---- Layout helpers ---- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
.animate-scale-in { animation: scaleIn 0.3s ease-out forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-spin { animation: spin 0.8s linear infinite; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Icon sizing ---- */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 12px; height: 12px; }
.icon-fill-white { fill: #fff; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--brand-900);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(9, 30, 66, 0.95);
  box-shadow: 0 10px 30px rgba(5, 15, 40, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header nav {
  max-width: 80rem; margin: 0 auto; height: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  padding-left: 1rem; padding-right: 1rem;
}
@media (min-width: 640px) {
  .site-header nav { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .site-header nav { padding-left: 2rem; padding-right: 2rem; }
}
.brand-area { display: flex; align-items: center; gap: 0.75rem; }
.brand-area img { height: 1.75rem; width: auto; max-height: 28px; }
.brand-divider { display: none; height: 1.5rem; width: 1px; background: rgba(255,255,255,0.2); }
@media (min-width: 640px) { .brand-divider { display: block; } }
.brand-badge {
  display: inline-flex; align-items: center; border-radius: 0.375rem;
  background: var(--accent); padding: 0.25rem 0.625rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.025em;
  color: #fff; white-space: nowrap;
}

/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link {
  position: relative; border-radius: 0.375rem; padding: 0.5rem 0.75rem;
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ''; position: absolute; left: 0.75rem; right: 0.75rem; bottom: -0.125rem;
  height: 2px; border-radius: 9999px; background: var(--accent);
}

/* CTA area */
.cta-area { display: flex; align-items: center; gap: 0.5rem; }
.btn-trial-header {
  display: none; border-radius: 0.5rem; background: var(--accent);
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 12px rgba(234,88,12,0.2);
  transition: background 0.2s, box-shadow 0.2s;
}
@media (min-width: 640px) { .btn-trial-header { display: inline-block; } }
.btn-trial-header:hover { background: var(--accent-dark); box-shadow: 0 8px 20px rgba(234,88,12,0.3); }

.mobile-toggle {
  display: flex; border-radius: 0.5rem; padding: 0.5rem; color: #fff;
  transition: background 0.2s;
}
.mobile-toggle:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile menu */
.mobile-menu { display: none; }
@media (max-width: 1023px) { .mobile-menu.open { display: block; } }
.mobile-menu-inner {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--brand-900);
  padding: 1rem;
}
@media (min-width: 640px) { .mobile-menu-inner { padding: 1rem 1.5rem; } }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu-nav a {
  border-radius: 0.5rem; padding: 0.625rem 1rem;
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-menu .btn-trial-mobile {
  margin-top: 0.75rem; width: 100%; border-radius: 0.5rem;
  background: var(--accent); padding: 0.625rem 1rem;
  font-size: 0.875rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 12px rgba(234,88,12,0.2); transition: background 0.2s;
}
.mobile-menu .btn-trial-mobile:hover { background: var(--accent-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; overflow: hidden; background: var(--brand-900);
  padding-top: 6rem; padding-bottom: 4rem;
}
@media (min-width: 640px) { .hero { padding-top: 7rem; } }
@media (min-width: 1024px) { .hero { padding-top: 8rem; } }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg-blob1 { position: absolute; left: -8rem; top: 5rem; width: 18rem; height: 18rem; border-radius: 50%; background: rgba(61,95,154,0.1); filter: blur(64px); }
.hero-bg-blob2 { position: absolute; right: 0; top: 10rem; width: 24rem; height: 24rem; border-radius: 50%; background: rgba(234,88,12,0.05); filter: blur(64px); }
.hero-bg-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content { position: relative; max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .hero-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 0 2rem; } }
.hero-grid { display: grid; align-items: center; gap: 3rem; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.hero-left { text-align: center; }
@media (min-width: 1024px) { .hero-left { text-align: left; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
  padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.025em;
  color: rgba(255,255,255,0.8);
}

.hero-title {
  margin-top: 1.5rem; font-size: 2.25rem; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; color: #fff; text-wrap: balance;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 2.85rem; } }
.hero-title .text-accent { color: var(--accent); }

.hero-desc {
  margin: 1.5rem auto 0; max-width: 36rem; font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 1024px) { .hero-desc { margin-left: 0; margin-right: 0; } }

.hero-features { margin-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem 1.25rem; }
@media (min-width: 1024px) { .hero-features { justify-content: flex-start; } }
.hero-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.hero-check { display: flex; width: 1rem; height: 1rem; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent); }
.hero-check .icon { width: 10px; height: 10px; stroke-width: 3; }

.hero-cta-row { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; } }
@media (min-width: 1024px) { .hero-cta-row { justify-content: flex-start; } }

.btn-primary {
  display: inline-flex; width: 100%; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 0.75rem; background: var(--accent); padding: 0.875rem 1.5rem;
  font-size: 0.875rem; font-weight: 700; color: #fff;
  box-shadow: 0 10px 20px rgba(234,88,12,0.25); transition: all 0.2s;
}
@media (min-width: 640px) { .btn-primary { width: auto; } }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 15px 30px rgba(234,88,12,0.3); }

.btn-secondary {
  display: inline-flex; width: 100%; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05);
  padding: 0.875rem 1.5rem; font-size: 0.875rem; font-weight: 600; color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all 0.2s;
}
@media (min-width: 640px) { .btn-secondary { width: auto; } }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* Hero illustration */
.hero-right { position: relative; max-width: 28rem; margin: 0 auto; }
@media (min-width: 1024px) { .hero-right { max-width: none; } }

.ill-frame {
  border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(15,35,72,0.6); padding: 0.75rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.ill-browser-bar { display: flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.5rem 0.75rem; }
.ill-browser-bar .dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: rgba(255,255,255,0.15); }
.ill-browser-bar .url-bar { margin-left: 0.75rem; flex: 1; border-radius: 0.375rem; background: rgba(255,255,255,0.05); padding: 0.25rem 0.75rem; }
.ill-browser-bar .url-bar span { font-size: 10px; color: rgba(255,255,255,0.3); }

.ill-screen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
.ill-sidebar { grid-column: span 1; display: flex; flex-direction: column; gap: 0.5rem; }
.ill-sidebar-box { border-radius: 0.5rem; background: rgba(255,255,255,0.05); padding: 0.5rem; }
.ill-sidebar-header { margin-bottom: 0.375rem; height: 0.5rem; width: 3rem; border-radius: 0.25rem; background: rgba(255,255,255,0.2); }
.ill-sidebar-items { display: flex; flex-direction: column; gap: 0.375rem; }
.ill-sidebar-item { display: flex; align-items: center; gap: 0.375rem; border-radius: 0.25rem; padding: 0.25rem 0.375rem; background: rgba(255,255,255,0.05); }
.ill-sidebar-item.active { background: rgba(234,88,12,0.15); }
.ill-sidebar-item .sq { width: 0.75rem; height: 0.75rem; border-radius: 0.25rem; background: rgba(255,255,255,0.15); }
.ill-sidebar-item.active .sq { background: rgba(234,88,12,0.5); }
.ill-sidebar-item .bar { height: 0.375rem; flex: 1; border-radius: 0.25rem; background: rgba(255,255,255,0.1); }

.ill-main { grid-column: span 2; display: flex; flex-direction: column; gap: 0.625rem; }
.ill-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.ill-stat-card { border-radius: 0.5rem; background: rgba(255,255,255,0.05); padding: 0.625rem; }
.ill-stat-card .label { margin-bottom: 0.375rem; height: 0.375rem; width: 2.5rem; border-radius: 0.25rem; background: rgba(255,255,255,0.15); }
.ill-stat-card .val { height: 1rem; border-radius: 0.25rem; }
.ill-stat-card .val.orange { width: 4rem; background: rgba(234,88,12,0.4); }
.ill-stat-card .val.blue { width: 3.5rem; background: rgba(143,169,208,0.4); }
.ill-stat-card .sub { margin-top: 0.5rem; height: 0.25rem; width: 3rem; border-radius: 0.25rem; background: rgba(255,255,255,0.1); }

.ill-orders { border-radius: 0.5rem; background: rgba(255,255,255,0.05); padding: 0.625rem; }
.ill-orders-head { margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: space-between; }
.ill-orders-head .h { height: 0.375rem; width: 3.5rem; border-radius: 0.25rem; background: rgba(255,255,255,0.2); }
.ill-orders-head .tag { height: 0.75rem; width: 1.5rem; border-radius: 0.25rem; background: rgba(234,88,12,0.3); }
.ill-order-rows { display: flex; flex-direction: column; gap: 0.375rem; }
.ill-order-row { display: flex; align-items: center; gap: 0.5rem; border-radius: 0.25rem; padding: 0.375rem; background: rgba(255,255,255,0.03); }
.ill-order-row .sq { width: 0.625rem; height: 0.625rem; border-radius: 0.125rem; background: rgba(255,255,255,0.15); }
.ill-order-row .bar { height: 0.375rem; border-radius: 0.25rem; background: rgba(255,255,255,0.1); }
.ill-order-row .bar.flex1 { flex: 1; }
.ill-order-row .bar.w8 { width: 2rem; }
.ill-order-row .bar.orange { width: 2.5rem; background: rgba(234,88,12,0.25); }

/* Floating cards */
.ill-receipt {
  position: absolute; bottom: -1.25rem; left: -0.75rem; width: 8rem;
  border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.1);
  background: #fff; padding: 0.625rem; box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite; animation-delay: 1s;
}
@media (min-width: 640px) { .ill-receipt { left: -1.5rem; } }
.ill-receipt .h { height: 0.375rem; width: 4rem; border-radius: 0.25rem; background: rgba(9,30,66,0.15); margin-bottom: 0.375rem; }
.ill-receipt .divider { height: 1px; width: 100%; background: rgba(9,30,66,0.1); margin-bottom: 0.5rem; }
.ill-receipt .rows { display: flex; flex-direction: column; gap: 0.25rem; }
.ill-receipt .row { display: flex; justify-content: space-between; }
.ill-receipt .row .b { height: 0.25rem; border-radius: 0.25rem; background: rgba(9,30,66,0.15); }
.ill-receipt .row .b.w10 { width: 2.5rem; }
.ill-receipt .row .b.w6 { width: 1.5rem; }
.ill-receipt .row .b.w8 { width: 2rem; }
.ill-receipt .row .b.w7 { width: 1.75rem; }
.ill-receipt .row .b.w12 { width: 3rem; }
.ill-receipt .row .b.w5 { width: 1.25rem; }
.ill-receipt .row .b.orange { background: rgba(234,88,12,0.4); }
.ill-receipt .dashed { margin-top: 0.5rem; height: 0; width: 100%; border-top: 1px dashed rgba(9,30,66,0.15); }
.ill-receipt .total { margin-top: 0.375rem; display: flex; justify-content: space-between; }
.ill-receipt .total .b { height: 0.375rem; border-radius: 0.25rem; }
.ill-receipt .total .b.w8 { width: 2rem; background: rgba(9,30,66,0.25); }
.ill-receipt .total .b.w10 { width: 2.5rem; background: rgba(234,88,12,0.5); }

.ill-chart {
  position: absolute; top: -1rem; right: -0.5rem; width: 7rem;
  border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.1);
  background: #fff; padding: 0.625rem; box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite; animation-delay: 2s;
}
@media (min-width: 640px) { .ill-chart { right: -1.25rem; } }
.ill-chart .h { margin-bottom: 0.5rem; height: 0.375rem; width: 3rem; border-radius: 0.25rem; background: rgba(9,30,66,0.15); }
.ill-chart .bars { display: flex; align-items: flex-end; gap: 0.25rem; height: 2.5rem; }
.ill-chart .bars span { width: 0.625rem; border-radius: 0.125rem; }
.ill-chart .bars span:nth-child(1) { height: 40%; background: var(--brand-200); }
.ill-chart .bars span:nth-child(2) { height: 65%; background: var(--brand-300); }
.ill-chart .bars span:nth-child(3) { height: 50%; background: var(--brand-400); }
.ill-chart .bars span:nth-child(4) { height: 85%; background: var(--accent); }
.ill-chart .bars span:nth-child(5) { height: 60%; background: var(--brand-300); }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100);
  background: #fff; padding: 1.25rem 0;
}
.trust-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 640px) { .trust-strip-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .trust-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
@media (min-width: 1024px) { .trust-item { justify-content: flex-start; } }
.trust-icon {
  flex-shrink: 0; display: flex; width: 2.25rem; height: 2.25rem;
  align-items: center; justify-content: center; border-radius: 0.5rem;
  background: var(--brand-50); color: var(--brand-600);
}
.trust-icon .icon { width: 18px; height: 18px; }
.trust-label { font-size: 0.875rem; font-weight: 600; color: var(--brand-800); }

/* ============================================
   SECTION COMMON
   ============================================ */
.section-title-eyebrow { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.section-title { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 800; color: var(--brand-900); text-wrap: balance; line-height: 1.2; }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-desc { margin-top: 1rem; font-size: 1rem; color: var(--slate-500); line-height: 1.7; }
.section-header-center { max-width: 42rem; margin: 0 auto; text-align: center; }
.section-padding { padding: 5rem 0; }
@media (min-width: 640px) { .section-padding { padding: 6rem 0; } }

/* ============================================
   FEATURES
   ============================================ */
.features-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  height: 100%; border-radius: 1rem; border: 1px solid var(--slate-100);
  background: #fff; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--brand-200); box-shadow: 0 20px 30px rgba(9,30,66,0.05); }
.feature-icon {
  margin-bottom: 1rem; display: flex; width: 3rem; height: 3rem;
  align-items: center; justify-content: center; border-radius: 0.75rem;
  background: var(--brand-50); color: var(--brand-600); transition: background 0.3s, color 0.3s;
}
.feature-card:hover .feature-icon { background: var(--accent); color: #fff; }
.feature-icon .icon { width: 24px; height: 24px; stroke-width: 1.75; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--brand-900); line-height: 1.3; }
.feature-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-500); line-height: 1.7; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--brand-50); }
.steps-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-wrapper { position: relative; height: 100%; }
.step-connector { display: none; }
@media (min-width: 1024px) {
  .step-connector {
    display: block; position: absolute; top: 2rem; left: 60%;
    height: 2px; width: 80%;
    background: linear-gradient(to right, var(--brand-200), transparent);
  }
}
.step-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  border-radius: 1rem; border: 1px solid var(--slate-100); background: #fff;
  padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: box-shadow 0.3s;
  height: 100%;
}
.step-card:hover { box-shadow: 0 10px 20px rgba(9,30,66,0.05); }
.step-num {
  margin-bottom: 1rem; display: flex; width: 3.5rem; height: 3.5rem;
  align-items: center; justify-content: center; border-radius: 1rem;
  background: var(--brand-900); font-size: 1.25rem; font-weight: 800; color: #fff;
  box-shadow: 0 4px 12px rgba(9,30,66,0.2);
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--brand-900); line-height: 1.3; }
.step-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-500); line-height: 1.7; flex: 1; }
.step-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--accent); transition: color 0.2s; }
.step-link:hover { color: var(--accent-dark); }
.step-link .icon { width: 14px; height: 14px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative; height: 100%; border-radius: 1rem; border: 1px solid var(--slate-100);
  background: #fff; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.price-card:hover { box-shadow: 0 20px 30px rgba(0,0,0,0.08); }
.price-card.recommended { border-color: rgba(234,88,12,0.3); box-shadow: 0 10px 20px rgba(234,88,12,0.1); }
@media (min-width: 1024px) { .price-card.recommended { transform: scale(1.03); } }
.price-badge-recommended {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.25rem;
  border-radius: 9999px; background: var(--accent); padding: 0.25rem 0.75rem;
  font-size: 0.75rem; font-weight: 700; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.price-badge {
  display: inline-flex; border-radius: 0.375rem; padding: 0.25rem 0.625rem;
  font-size: 0.75rem; font-weight: 700;
}
.price-badge.blue { background: var(--brand-100); color: var(--brand-700); }
.price-badge.orange { background: var(--accent); color: #fff; }
.price-card h3 { margin-top: 0.75rem; font-size: 1.25rem; font-weight: 800; color: var(--brand-900); }
.price-amount { margin-top: 0.75rem; display: flex; align-items: baseline; gap: 0.5rem; }
.price-amount .val { font-size: 1.875rem; font-weight: 800; color: var(--brand-900); }
.price-amount .suffix { font-size: 0.875rem; font-weight: 500; color: var(--slate-400); }
.price-subtext { margin-top: 0.25rem; font-size: 0.875rem; color: var(--slate-500); }
.price-cta { margin-top: 1.25rem; width: 100%; border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 700; transition: all 0.2s; }
.price-cta.orange { background: var(--accent); color: #fff; box-shadow: 0 10px 20px rgba(234,88,12,0.2); }
.price-cta.orange:hover { background: var(--accent-dark); box-shadow: 0 15px 25px rgba(234,88,12,0.25); }
.price-cta.blue { background: var(--brand-900); color: #fff; }
.price-cta.blue:hover { background: var(--brand-800); }
.price-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--slate-600); }
.price-check { margin-top: 0.125rem; flex-shrink: 0; display: flex; width: 1rem; height: 1rem; align-items: center; justify-content: center; border-radius: 50%; }
.price-check.orange { background: rgba(234,88,12,0.15); color: var(--accent); }
.price-check.blue { background: var(--brand-50); color: var(--brand-600); }
.price-check .icon { width: 10px; height: 10px; stroke-width: 3; }
.price-addons { margin-top: 1.5rem; border-radius: 0.75rem; background: var(--brand-50); padding: 1rem; }
.price-addons-title { margin-bottom: 0.625rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.025em; color: var(--brand-700); }
.price-addons-list { display: flex; flex-direction: column; gap: 0.5rem; }
.price-addon { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 0.75rem; }
.price-addon .label { color: var(--slate-600); }
.price-addon .val { flex-shrink: 0; font-weight: 600; color: var(--brand-900); }
.price-disclaimer { margin: 2rem auto 0; max-width: 42rem; text-align: center; font-size: 0.75rem; color: var(--slate-400); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band { position: relative; overflow: hidden; background: var(--brand-900); padding: 4rem 0; }
@media (min-width: 640px) { .cta-band { padding: 5rem 0; } }
.cta-band-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-band-bg .blob1 { position: absolute; right: -5rem; top: 0; width: 18rem; height: 18rem; border-radius: 50%; background: rgba(234,88,12,0.1); filter: blur(64px); }
.cta-band-bg .blob2 { position: absolute; left: -5rem; bottom: 0; width: 18rem; height: 18rem; border-radius: 50%; background: rgba(61,95,154,0.1); filter: blur(64px); }
.cta-band-content { position: relative; max-width: 56rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
@media (min-width: 640px) { .cta-band-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .cta-band-content { padding: 0 2rem; } }
.cta-band h2 { font-size: 1.875rem; font-weight: 800; color: #fff; text-wrap: balance; }
@media (min-width: 640px) { .cta-band h2 { font-size: 2.25rem; } }
.cta-band h2 .text-accent { color: var(--accent); }
.cta-band p { margin-top: 1rem; font-size: 1rem; color: rgba(255,255,255,0.7); }
.cta-band-btns { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .cta-band-btns { flex-direction: row; } }

/* ============================================
   FAQ
   ============================================ */
.faq-container { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .faq-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .faq-container { padding: 0 2rem; } }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--slate-100); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item.open { border-color: var(--brand-200); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.faq-item:not(.open):hover { border-color: var(--slate-200); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; text-align: left; }
.faq-question span { font-size: 0.875rem; font-weight: 600; color: var(--brand-900); }
@media (min-width: 640px) { .faq-question span { font-size: 1rem; } }
.faq-chevron { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--brand-400); transition: transform 0.3s, color 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer-wrap { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.3s ease, opacity 0.3s ease; }
.faq-item.open .faq-answer-wrap { grid-template-rows: 1fr; opacity: 1; }
.faq-answer-inner { overflow: hidden; }
.faq-answer { padding: 0 1.25rem 1rem; font-size: 0.875rem; color: var(--slate-500); line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--brand-50); }
.contact-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.contact-form-card { border-radius: 1rem; border: 1px solid var(--slate-100); background: #fff; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
@media (min-width: 640px) { .contact-form-card { padding: 2rem; } }
.contact-form-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--brand-900); }
.contact-form-card .sub { margin-top: 0.25rem; font-size: 0.875rem; color: var(--slate-500); }
.contact-options { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.contact-option-card { border-radius: 1rem; border: 1px solid var(--slate-100); background: #fff; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: box-shadow 0.3s; }
.contact-option-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.contact-option-inner { display: flex; align-items: flex-start; gap: 1rem; }
.contact-option-icon { flex-shrink: 0; display: flex; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center; border-radius: 0.75rem; background: var(--brand-50); color: var(--brand-600); }
.contact-option-icon .icon { width: 20px; height: 20px; }
.contact-option-body { flex: 1; }
.contact-option-body h3 { font-size: 1rem; font-weight: 700; color: var(--brand-900); }
.contact-option-body p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--slate-500); }
.contact-option-body .email-link { margin-top: 0.25rem; display: block; font-size: 0.875rem; font-weight: 500; color: var(--accent); transition: color 0.2s; }
.contact-option-body .email-link:hover { color: var(--accent-dark); }
.btn-chat { margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 0.5rem; background: var(--brand-900); padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 700; color: #fff; transition: background 0.2s; }
.btn-chat:hover { background: var(--brand-800); }
.btn-feedback { margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 0.5rem; border: 1px solid var(--brand-200); background: var(--brand-50); padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-700); transition: background 0.2s; }
.btn-feedback:hover { background: var(--brand-100); }

/* ---- Forms ---- */
.form { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-label { margin-bottom: 0.375rem; font-size: 0.875rem; font-weight: 500; color: var(--brand-900); }
.form-label .req { color: var(--accent); }
.form-input {
  width: 100%; border-radius: 0.5rem; border: 1px solid var(--slate-200);
  padding: 0.625rem 1rem; font-size: 0.875rem; color: var(--brand-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: var(--slate-400); }
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px rgba(234,88,12,0.4); }
.form-input.error { border-color: var(--red-400); }
.form-input.error:focus { border-color: var(--red-500); box-shadow: 0 0 0 2px rgba(239,68,68,0.3); }
.form-textarea { resize: none; }
.form-error { margin-top: 0.25rem; font-size: 0.75rem; color: var(--red-500); }
.form-submit {
  display: flex; width: 100%; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 0.5rem; background: var(--accent); padding: 0.75rem 1.5rem;
  font-size: 0.875rem; font-weight: 700; color: #fff;
  box-shadow: 0 10px 20px rgba(234,88,12,0.2); transition: all 0.2s;
}
.form-submit:hover { background: var(--accent-dark); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--slate-400); }

/* ---- Form success state ---- */
.form-success { display: flex; flex-direction: column; align-items: center; padding: 2.5rem 0; text-align: center; }
.form-success-icon { margin-bottom: 1rem; display: flex; width: 4rem; height: 4rem; align-items: center; justify-content: center; border-radius: 50%; background: rgba(234,88,12,0.1); }
.form-success-icon .icon { width: 36px; height: 36px; color: var(--accent); }
.form-success h3 { font-size: 1.125rem; font-weight: 700; color: var(--brand-900); }
.form-success p { margin-top: 0.5rem; max-width: 24rem; font-size: 0.875rem; color: var(--slate-500); }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay[aria-hidden="true"] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,15,40,0.8); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: fadeIn 0.5s ease-out forwards; }
.modal-dialog {
  position: relative; width: 100%; max-width: 32rem; max-height: 90vh;
  overflow-y: auto; border-radius: 1rem; background: #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25); animation: scaleIn 0.3s ease-out forwards;
}
.modal-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid var(--slate-100); background: rgba(255,255,255,0.95);
  padding: 1.25rem 1.5rem; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.modal-header h2 { font-size: 1.25rem; font-weight: 700; color: var(--brand-900); }
.modal-header p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--slate-500); }
.modal-close { flex-shrink: 0; border-radius: 0.5rem; padding: 0.375rem; color: var(--slate-400); transition: background 0.2s, color 0.2s; }
.modal-close:hover { background: var(--slate-100); color: var(--brand-900); }
.modal-close .icon { width: 20px; height: 20px; }
.modal-body { padding: 1.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--brand-950); color: #fff; }
.footer-top { max-width: 80rem; margin: 0 auto; padding: 4rem 1rem; }
@media (min-width: 640px) { .footer-top { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .footer-top { padding: 4rem 2rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-brand-area { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand-area img { height: 1.75rem; width: auto; max-height: 28px; }
.footer-desc { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-heading { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }
.footer-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a, .footer-contact li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .icon { width: 16px; height: 16px; flex-shrink: 0; }
.footer-copyright { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-copyright-inner { max-width: 80rem; margin: 0 auto; padding: 1.25rem 1rem; }
@media (min-width: 640px) { .footer-copyright-inner { padding: 1.25rem 1.5rem; } }
@media (min-width: 1024px) { .footer-copyright-inner { padding: 1.25rem 2rem; } }
.footer-copyright p { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-partners { border-top: 1px solid rgba(255,255,255,0.05); }
.footer-partners-inner { max-width: 80rem; margin: 0 auto; padding: 2rem 1rem; }
@media (min-width: 640px) { .footer-partners-inner { padding: 2rem 1.5rem; } }
@media (min-width: 1024px) { .footer-partners-inner { padding: 2rem 2rem; } }
.footer-partners-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }
@media (min-width: 640px) { .footer-partners-row { gap: 2.5rem; } }
.footer-partner-link { transition: opacity 0.2s; opacity: 0.8; }
.footer-partner-link:hover { opacity: 1; }
.footer-partner-link img { width: auto; max-height: 23px; min-height: 17px; }
