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

:root {
  --primary: #0f62fe;
  --primary-dark: #0043ce;
  --primary-light: #dbeafe;
  --secondary: #161616;
  --accent: #f97316;
  --success: #16a34a;
  --warning: #d97706;
  --error: #dc2626;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --white: #ffffff;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--neutral-900);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--neutral-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 16px;
  color: var(--neutral-900);
}

.section-desc {
  color: var(--neutral-500);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-md { padding: 12px 24px; font-size: 15px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 4px 16px rgba(15,98,254,0.30); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: var(--neutral-100); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-secondary {
  background: var(--neutral-100);
  color: var(--neutral-800);
  border-color: var(--neutral-200);
}
.btn-secondary:hover { background: var(--neutral-200); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--neutral-900);
  line-height: 1.1;
  transition: color var(--transition);
}

.logo-sub {
  font-size: 10px;
  color: var(--neutral-500);
  font-weight: 400;
  line-height: 1.2;
}

.header:not(.scrolled) .logo-main { color: var(--white); }
.header:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.7); }

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

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover { color: var(--primary); background: var(--neutral-100); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.header:not(.scrolled) .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.10); }
.header:not(.scrolled) .nav-link.active { color: var(--white); background: rgba(255,255,255,0.12); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header:not(.scrolled) .hamburger span { background: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,24,42,0.88) 0%, rgba(15,24,42,0.65) 60%, rgba(15,24,42,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(15,98,254,0.25);
  border: 1px solid rgba(15,98,254,0.5);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 540px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--neutral-900);
}

.service-card p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-blue { background: #dbeafe; color: #1d4ed8; }
.feature-green { background: #dcfce7; color: #15803d; }
.feature-orange { background: #fff7ed; color: #c2410c; }

.feature-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--neutral-900);
}

.feature-item p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.65;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.brand-badge {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 100px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--neutral-700);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.brand-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  max-width: 230px;
  flex: 1 1 200px;
  min-width: 180px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--neutral-500);
  line-height: 1.6;
}

.step-arrow {
  font-size: 24px;
  color: var(--neutral-300);
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(24px, 4vw, 34px);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255,255,255,0.80);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   VENDOR CTA
   ============================================================ */
.vendor-cta-card {
  display: flex;
  align-items: center;
  gap: 56px;
  background: var(--neutral-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 56px;
}

.vendor-cta-text {
  flex: 1;
}

.vendor-cta-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--white);
  margin-bottom: 16px;
}

.vendor-cta-text p {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.vendor-cta-img {
  flex-shrink: 0;
  width: 360px;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}

.vendor-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--neutral-900);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-info span,
.footer-contact-info a {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}

.footer-contact-info a:hover { color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

.footer-bottom a {
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  padding: 140px 0 72px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.70);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a, .breadcrumb span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.30); }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-text .section-tag { margin-bottom: 12px; }

.about-intro-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 20px;
}

.about-intro-text p {
  color: var(--neutral-600);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-intro-text .btn { margin-top: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-md); }

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h4 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--neutral-500); line-height: 1.65; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-full-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body {
  padding: 28px 24px;
}

.service-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.service-card-body p { font-size: 14px; color: var(--neutral-500); line-height: 1.65; margin-bottom: 20px; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--neutral-100);
  color: var(--neutral-600);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================================
   VENDOR PAGE
   ============================================================ */
.vendor-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vendor-form-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.vendor-form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.vendor-form-card .form-subtitle {
  color: var(--neutral-500);
  font-size: 14px;
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--neutral-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,98,254,0.12);
}

.form-control::placeholder { color: var(--neutral-400); }

select.form-control { cursor: pointer; }

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h4 { font-size: 20px; margin-bottom: 8px; }
.form-success p { color: var(--neutral-500); font-size: 14px; }

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.benefit-item h4 { font-size: 16px; margin-bottom: 4px; }
.benefit-item p { font-size: 14px; color: var(--neutral-500); line-height: 1.55; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-md); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 14px; color: var(--neutral-500); transition: color var(--transition); }
.contact-card a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-form-card .form-subtitle { color: var(--neutral-500); font-size: 14px; margin-bottom: 28px; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--neutral-900);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }

.policy-content li {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy-meta {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--neutral-500);
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--neutral-900);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--error); }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.open { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vendor-hero-content { grid-template-columns: 1fr; }
  .vendor-cta-card { flex-direction: column; padding: 40px; }
  .vendor-cta-img { width: 100%; height: 240px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { min-height: unset; padding: 100px 0 60px; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 24px 40px;
    gap: 4px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
  }

  .nav.open { right: 0; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.open { pointer-events: auto; }

  .nav-link { color: var(--neutral-800) !important; background: transparent !important; width: 100%; }
  .nav-link.active { color: var(--primary) !important; background: var(--primary-light) !important; }
  .nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

  .hamburger { display: flex; z-index: 1001; position: relative; }

  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .step-card { max-width: 100%; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .vendor-form-card, .contact-form-card { padding: 24px; }
  .vendor-cta-card { padding: 28px; }
}
