/* Sample 1: Modern Corporate — Varied backgrounds for visual rhythm */
:root {
  --navy: #1a2744;
  --navy-light: #2a3a5c;
  --navy-tint: #f0f3f8;
  --amber: #e8a838;
  --amber-dark: #c78d2a;
  --amber-tint: #fef8ee;
  --white: #ffffff;
  --off-white: #f9fafb;
  --cream: #faf8f5;
  --warm-gray: #f5f3f0;
  --light-gray: #eef0f4;
  --mid-gray: #8892a4;
  --dark-gray: #4a5568;
  --text: #2d3748;
  --border: #e2e6ee;
  --success: #38b275;
  --success-tint: #f0faf5;
  --warning: #e8a838;
  --danger: #e85454;
  --shadow-sm: 0 1px 3px rgba(26,39,68,0.08);
  --shadow-md: 0 4px 16px rgba(26,39,68,0.1);
  --shadow-lg: 0 8px 32px rgba(26,39,68,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 2.2rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--dark-gray); }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--dark-gray); text-decoration: none; font-size: 0.95rem;
  font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--amber); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--navy); color: var(--white) !important; padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm); font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  padding: 10rem 2rem 6rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, #244a6e 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 { color: var(--white); font-size: 3.2rem; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--amber); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin-bottom: 2rem; max-width: 520px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--amber); color: var(--navy); padding: 0.85rem 2rem;
  border-radius: var(--radius-sm); font-weight: 700; text-decoration: none;
  font-size: 1rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,168,56,0.3); }
.btn-secondary {
  background: rgba(255,255,255,0.1); color: var(--white); padding: 0.85rem 2rem;
  border-radius: var(--radius-sm); font-weight: 600; text-decoration: none;
  font-size: 1rem; transition: var(--transition); border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* Hero Visual */
.hero-visual {
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1); padding: 2rem;
  backdrop-filter: blur(8px);
}
.hero-chat { display: flex; flex-direction: column; gap: 1rem; }
.chat-msg {
  padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: 0.95rem;
  max-width: 85%; animation: fadeInUp 0.6s ease forwards; opacity: 0;
}
.chat-msg.user {
  background: rgba(255,255,255,0.12); color: var(--white);
  align-self: flex-end; animation-delay: 0.2s;
}
.chat-msg.ai {
  background: rgba(232,168,56,0.15); color: rgba(255,255,255,0.95);
  border-left: 3px solid var(--amber); animation-delay: 0.5s;
}
.chat-msg.ai .metric {
  display: inline-block; background: rgba(232,168,56,0.25); padding: 0.15rem 0.6rem;
  border-radius: 4px; font-weight: 700; color: var(--amber); margin: 0.2rem 0.1rem;
}
.chat-input-demo {
  display: flex; gap: 0.5rem; margin-top: 0.5rem;
  animation: fadeInUp 0.6s ease 0.8s forwards; opacity: 0;
}
.chat-input-demo input {
  flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem; color: var(--white);
  font-size: 0.9rem; outline: none;
}
.chat-input-demo input::placeholder { color: rgba(255,255,255,0.4); }
.chat-input-demo button {
  background: var(--amber); border: none; border-radius: var(--radius-sm);
  padding: 0.75rem 1.2rem; cursor: pointer; color: var(--navy); font-weight: 700;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 2rem; margin-top: -2rem; position: relative; z-index: 2;
  border-radius: var(--radius); max-width: 1100px; margin-left: auto; margin-right: auto;
  box-shadow: var(--shadow-lg);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center;
}
.stat-item h3 { font-size: 2rem; color: var(--navy); }
.stat-item h3 span { color: var(--amber); }
.stat-item p { font-size: 0.85rem; color: var(--mid-gray); margin-top: 0.25rem; }

/* ---- Section Common ---- */
section { padding: 5rem 2rem; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 1rem; color: var(--navy); }
.section-header p { font-size: 1.05rem; }
.section-label {
  display: inline-block; background: rgba(232,168,56,0.12); color: var(--amber-dark);
  padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}

/* ========================================
   VARIED SECTION BACKGROUNDS
   ======================================== */

/* ---- Services: White bg ---- */
.services { background: var(--white); }
.services-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.service-card {
  background: var(--off-white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--amber);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--amber);
}
.service-card h3 { margin-bottom: 0.6rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; line-height: 1.6; }
.service-card .tag {
  display: inline-block; background: rgba(232,168,56,0.1); color: var(--amber-dark);
  padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
  margin-top: 1rem;
}

/* ---- How It Works: Light blue tint bg ---- */
.how-it-works {
  background: var(--navy-tint);
  border-top: 1px solid #e0e5ef;
  border-bottom: 1px solid #e0e5ef;
}
.steps-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.step-card { text-align: center; padding: 1.5rem; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  box-shadow: 0 4px 12px rgba(26,39,68,0.2);
}
.step-card h4 { color: var(--navy); margin-bottom: 0.4rem; }
.step-card p { font-size: 0.85rem; color: var(--mid-gray); }
.step-arrow {
  position: absolute; top: 28px; right: -18px;
  color: var(--amber); font-size: 1.2rem; font-weight: 700;
}

/* ---- AI Demo: Warm cream bg ---- */
.ai-demo { background: var(--cream); }
.ai-demo-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.ai-features { display: flex; flex-direction: column; gap: 1.2rem; }
.ai-feature {
  display: flex; gap: 1rem; padding: 1.2rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--white); transition: var(--transition);
  cursor: default;
}
.ai-feature:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.ai-feature-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: var(--amber-tint);
}
.ai-feature h4 { margin-bottom: 0.25rem; color: var(--navy); }
.ai-feature p { font-size: 0.85rem; color: var(--mid-gray); }

.ai-dashboard {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--border);
  padding: 1.5rem; box-shadow: var(--shadow-md);
}
.dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.dash-header h4 { color: var(--navy); }
.dash-badge {
  background: rgba(56,178,117,0.1); color: var(--success); padding: 0.25rem 0.75rem;
  border-radius: 12px; font-size: 0.75rem; font-weight: 600;
}
.dash-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.dash-metric {
  background: var(--off-white); border-radius: var(--radius-sm); padding: 1rem;
  border: 1px solid var(--border);
}
.dash-metric .label { font-size: 0.75rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.dash-metric .value { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 0.25rem 0; }
.dash-metric .change { font-size: 0.8rem; font-weight: 600; }
.dash-metric .change.up { color: var(--success); }
.dash-metric .change.down { color: var(--danger); }
.dash-chart { margin-bottom: 1.5rem; }
.dash-chart h4 { font-size: 0.85rem; color: var(--dark-gray); margin-bottom: 0.8rem; }
.bar-chart { display: flex; align-items: flex-end; gap: 0.5rem; height: 120px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.bar { width: 100%; border-radius: 4px 4px 0 0; transition: 0.8s ease; min-height: 8px; }
.bar.fill-1 { height: 45%; background: var(--navy); }
.bar.fill-2 { height: 70%; background: var(--navy); }
.bar.fill-3 { height: 55%; background: var(--navy); }
.bar.fill-4 { height: 90%; background: var(--amber); }
.bar.fill-5 { height: 65%; background: var(--navy); }
.bar.fill-6 { height: 80%; background: var(--navy); }
.bar-label { font-size: 0.7rem; color: var(--mid-gray); }
.dash-alert {
  background: rgba(232,168,56,0.08); border: 1px solid rgba(232,168,56,0.25);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem;
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.dash-alert .icon { font-size: 1.1rem; flex-shrink: 0; }
.dash-alert p { font-size: 0.8rem; color: var(--dark-gray); }
.dash-alert strong { color: var(--navy); }

/* ---- Why Choose Us: Amber tint bg ---- */
.why-us {
  background: var(--amber-tint);
  border-top: 1px solid #f0e4d0;
  border-bottom: 1px solid #f0e4d0;
}
.why-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem;
}
.why-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid #f0e4d0;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-sm); border-color: var(--amber); }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: var(--amber-tint);
  border: 1px solid rgba(232,168,56,0.2);
}
.why-card h4 { color: var(--navy); margin-bottom: 0.3rem; }
.why-card p { font-size: 0.88rem; color: var(--mid-gray); }

/* ---- Warehouse Map: White bg ---- */
.warehouse-map { background: var(--white); }
.map-container {
  max-width: 1240px; margin: 0 auto;
  background: var(--navy-tint); border-radius: var(--radius); border: 1px solid #d8dde8;
  padding: 3rem; position: relative; min-height: 400px;
}
.map-visual {
  width: 100%; height: 350px; position: relative;
  background:
    radial-gradient(ellipse at 30% 45%, rgba(26,39,68,0.06) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 55%, rgba(26,39,68,0.04) 0%, transparent 60%);
  border-radius: var(--radius-sm);
}
.map-point { position: absolute; cursor: pointer; }
.map-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--navy);
  border: 3px solid var(--white); box-shadow: var(--shadow-sm);
  position: relative; z-index: 2;
}
.map-dot.active { background: var(--amber); }
.map-pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 30px; height: 30px; border-radius: 50%; background: rgba(232,168,56,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}
.map-label {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--white); padding: 0.25rem 0.6rem;
  border-radius: 4px; font-size: 0.7rem; font-weight: 600; white-space: nowrap;
}
.map-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem;
}
.map-card {
  background: var(--white); border-radius: var(--radius-sm); padding: 1.2rem;
  border: 1px solid var(--border); transition: var(--transition);
}
.map-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.map-card h4 { color: var(--navy); margin-bottom: 0.3rem; font-size: 1rem; }
.map-card p { font-size: 0.8rem; color: var(--mid-gray); }
.map-card .coverage {
  display: inline-block; margin-top: 0.6rem; font-size: 0.75rem; font-weight: 600;
  color: var(--success); background: var(--success-tint); padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ---- Testimonials: Warm gray bg ---- */
.testimonials { background: var(--warm-gray); }
.testimonials-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--dark-gray); line-height: 1.7;
  margin-bottom: 1.2rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy-tint);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); font-size: 1rem;
}
.author-info .name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-info .role { font-size: 0.8rem; color: var(--mid-gray); }

/* ---- Partners/Trust: White bg with top accent ---- */
.trust-strip {
  background: var(--white); padding: 3rem 2rem;
  border-top: 3px solid var(--amber);
  text-align: center;
}
.trust-strip p {
  font-size: 0.82rem; color: var(--mid-gray); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600; margin-bottom: 1.5rem;
}
.trust-logos {
  display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap;
  max-width: 900px; margin: 0 auto;
}
.trust-logo {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.trust-logo-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem;
  background: var(--off-white); border: 1px solid var(--border);
}
.trust-logo span {
  font-size: 0.75rem; font-weight: 600; color: var(--mid-gray);
}

/* ---- CTA: Navy gradient ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  text-align: center; padding: 5rem 2rem;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-light {
  background: var(--white); color: var(--navy); padding: 0.85rem 2rem;
  border-radius: var(--radius-sm); font-weight: 700; text-decoration: none;
  font-size: 1rem; transition: var(--transition);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---- Footer: Dark bg ---- */
.footer {
  background: #111827; color: rgba(255,255,255,0.6); padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 3rem;
}
.footer-brand .logo {
  font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 0.8rem;
}
.footer-brand .logo span { color: var(--amber); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1240px; margin: 2.5rem auto 0;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%); animation: slideUp 0.5s ease 1s forwards;
}
@keyframes slideUp { to { transform: translateY(0); } }
.cookie-banner p { font-size: 0.85rem; color: var(--dark-gray); max-width: 700px; }
.cookie-banner a { color: var(--navy); font-weight: 600; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.5rem 1.2rem; border-radius: var(--radius-sm); font-size: 0.85rem;
  font-weight: 600; cursor: pointer; transition: var(--transition); border: none;
}
.cookie-accept { background: var(--navy); color: var(--white); }
.cookie-accept:hover { background: var(--navy-light); }
.cookie-decline { background: var(--light-gray); color: var(--dark-gray); }
.cookie-decline:hover { background: var(--border); }

/* ---- Page Content ---- */
.page-header {
  background: var(--navy); padding: 8rem 2rem 3rem; text-align: center;
}
.page-header h1 { color: var(--white); font-size: 2.4rem; }
.page-header p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }
.page-content {
  max-width: 800px; margin: 0 auto; padding: 3rem 2rem;
}
.page-content h2 { font-size: 1.4rem; color: var(--navy); margin: 2rem 0 0.8rem; }
.page-content h3 { font-size: 1.1rem; color: var(--navy); margin: 1.5rem 0 0.6rem; }
.page-content p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.page-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.page-content li { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--dark-gray); }
.page-content table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.page-content th, .page-content td {
  padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border);
}
.page-content th { background: var(--light-gray); color: var(--navy); font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .step-arrow { display: none; }
  .ai-demo-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .map-cards { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .hero h1 { font-size: 2.4rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .map-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
