/* ============================================
   FulfilLink · Brand Website Stylesheet
   ============================================ */

:root {
  /* Brand Colors */
  --color-primary: #062871;
  --color-primary-dark: #041a4d;
  --color-gradient-start: #1B267C;
  --color-gradient-mid: #0FAAD8;
  --color-gradient-end: #751BA9;
  --color-accent: #0FAAD8;
  --color-accent-purple: #751BA9;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-text: #1A1B1C;
  --color-text-secondary: #5A6472;
  --color-text-light: #8B95A5;
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F5F7FA;
  --color-bg-dark: #062871;
  --color-border: #E4E8EE;
  --color-border-light: #EEF1F5;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #062871 0%, #0FAAD8 50%, #751BA9 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(6,40,113,0.08) 0%, rgba(15,170,216,0.06) 50%, rgba(117,27,169,0.08) 100%);
  --gradient-hero: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;
  --font-size-5xl: 52px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(6,40,113,0.08);
  --shadow-lg: 0 8px 32px rgba(6,40,113,0.12);
  --shadow-xl: 0 16px 48px rgba(6,40,113,0.16);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 104px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--color-bg-secondary);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--color-white);
}

.section-dark p {
  opacity: 0.85;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  height: 124px;
}

.nav-logo img {
  height: 124px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: var(--transition-base);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-gradient:hover {
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: var(--font-size-base);
}

.btn-sm {
  padding: 8px 18px;
  font-size: var(--font-size-xs);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--gradient-brand-soft);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: rgba(6,40,113,0.08);
  border: 1px solid rgba(6,40,113,0.12);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

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

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

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero h1 .gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-item .stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item .stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-header .eyebrow {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--font-size-lg);
}

/* ============================================
   Cards Grid
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6,40,113,0.15);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 28px;
}

.card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

.card ul {
  margin-top: var(--space-md);
}

.card ul li {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================
   Steps / How It Works
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  position: relative;
}

.step {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-base);
  margin-bottom: var(--space-lg);
}

.step h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.step p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* ============================================
   Platform Logos
   ============================================ */
.platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
}

.platform-item {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-light);
  opacity: 0.6;
  transition: all var(--transition-base);
  letter-spacing: -0.01em;
}

.platform-item:hover {
  opacity: 1;
  color: var(--color-primary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.cta-section .btn {
  position: relative;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) 0;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}

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

.faq-question .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition-base);
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-question .icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-question .icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.open .faq-question .icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

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

.pricing-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.pricing-price .period {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-text-secondary);
}

.pricing-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================
   Contact / Form
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-xl);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-detail h4 {
  font-size: var(--font-size-sm);
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--font-size-sm);
  font-family: var(--font-sans);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6,40,113,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-lg);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.value-item h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.value-item p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand img {
  height: 40px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
}

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

/* ============================================
   Page Header (inner pages)
   ============================================ */
.page-header {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--gradient-hero);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: var(--space-md);
}

.page-header p {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--font-size-2xl);
  margin: var(--space-2xl) 0 var(--space-md);
}

.legal-content h3 {
  font-size: var(--font-size-lg);
  margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content p,
.legal-content li {
  font-size: var(--font-size-sm);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: var(--space-sm);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --space-4xl: 64px;
    --space-3xl: 48px;
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: var(--space-md);
  }

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

  .hero-cta .btn {
    width: 100%;
  }

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

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

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

  .cta-section {
    padding: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   v2 新增模块样式
   ============================================ */

/* 信任证据区块 */
.trust-section {
  background: var(--color-bg-secondary);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.trust-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}
.trust-item .trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  background: var(--gradient-brand-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.trust-item h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
}
.trust-item p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* 客户评价卡片 */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.testimonial-card .stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}
.testimonial-card .quote {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.testimonial-card .author-info h5 {
  font-size: var(--font-size-sm);
  margin-bottom: 2px;
}
.testimonial-card .author-info p {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* 报价透明度模块 */
.transparency-section {
  background: var(--color-white);
}
.data-table-wrap {
  overflow-x: auto;
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}
.data-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: var(--font-size-sm);
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:hover td {
  background: var(--color-bg-secondary);
}
.data-table .highlight {
  color: var(--color-primary);
  font-weight: 600;
}

/* 报价示例卡片 */
.quote-example {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}
.quote-example h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}
.quote-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: var(--font-size-sm);
}
.quote-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--font-size-base);
  padding-top: 12px;
}
.quote-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

/* 品牌化区块 */
.brand-section {
  background: linear-gradient(135deg, #062871 0%, #1B267C 50%, #751BA9 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  margin: var(--space-2xl) 0;
}
.brand-section h2, .brand-section h3, .brand-section p {
  color: #fff;
}
.brand-section p {
  opacity: 0.9;
}
.brand-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.brand-feature {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
}
.brand-feature h4 {
  color: #fff;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xs);
}
.brand-feature p {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  margin-bottom: 0;
}

/* 平台集成改进 */
.platform-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}
.platform-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}
.platform-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.platform-card .platform-name {
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.platform-card .platform-type {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.platform-card .platform-features {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* 服务可交付成果 */
.service-deliverable {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}
.service-deliverable:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.service-deliverable h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.service-deliverable .service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand-soft);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-deliverable .deliverable-list {
  margin-top: var(--space-md);
}
.service-deliverable .deliverable-list li {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
}
.service-deliverable .deliverable-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* 异常件处理规则 */
.exception-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.exception-item {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border-left: 3px solid var(--color-accent);
}
.exception-item h4 {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}
.exception-item p {
  font-size: var(--font-size-xs);
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* 占位图片区块 */
.placeholder-image {
  background: var(--gradient-brand-soft);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  padding: var(--space-lg);
}
.placeholder-image .ph-icon {
  font-size: 36px;
  margin-bottom: 8px;
  opacity: 0.5;
}

/* 首屏承诺标签 */
.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.hero-promise {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  background: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
}
.hero-promise .check {
  color: var(--color-accent);
  font-weight: 700;
}

/* 响应式补充 */
@media (max-width: 768px) {
  .brand-section {
    padding: var(--space-xl);
  }
  .data-table {
    font-size: var(--font-size-xs);
  }
  .data-table th, .data-table td {
    padding: 10px 12px;
  }
}

/* ============================================
   v3 高转化率首页样式
   ============================================ */

/* Hero v3 */
.hero-v3 {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(6,40,113,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-v3 .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #062871;
  background: rgba(6,40,113,0.06);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-v3 h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #0a0e1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-v3 .hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: #4a5568;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}
.hero-v3 .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-v3 .low-friction {
  font-size: 14px;
  color: #5A6472;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-v3 .low-friction a {
  color: #062871;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero 两栏布局 */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-left {
  min-width: 0;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual {
  width: 100%;
  max-width: 440px;
  position: relative;
}
#globeCanvas {
  width: 100%;
  height: auto;
  display: block;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
#globeCanvas:active {
  cursor: grabbing;
}
.globe-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #8B95A5;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* 地球信息卡片 */
.globe-info-card {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(20,12,45,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(147,112,219,0.3);
  border-radius: 14px;
  padding: 16px 18px;
  z-index: 10;
}
.globe-card-icon {
  color: #b8a4ff;
  margin-bottom: 8px;
}
.globe-card-label {
  font-size: 10px;
  font-weight: 700;
  color: #b8a4ff;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.globe-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.globe-card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.network-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 节点脉冲动画 */
@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.node-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: nodePulse 2.5s ease-in-out infinite;
}

/* 中心节点呼吸动画 */
@keyframes coreBreath {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(15,170,216,0.4)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 16px rgba(15,170,216,0.7)); }
}
.node-core {
  transform-origin: center;
  transform-box: fill-box;
  animation: coreBreath 3s ease-in-out infinite;
}

/* 环形扩散动画 */
@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ring-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: ringPulse 2.5s ease-out infinite;
}

/* 流动光点 */
.flow-dot {
  filter: drop-shadow(0 0 4px rgba(15,170,216,0.8));
}

/* 移动端响应式 */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    order: -1;
  }
  .hero-visual {
    max-width: 320px;
  }
}

/* Trust Bar */
.trust-bar {
  border-top: 1px solid #e8eaf0;
  border-bottom: 1px solid #e8eaf0;
  padding: 24px 0;
  background: #fff;
}
.trust-bar .trust-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b95a7;
  text-align: center;
  margin-bottom: 16px;
}
.trust-bar .platform-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.trust-bar .platform-name {
  font-size: 16px;
  font-weight: 700;
  color: #a0aec0;
  letter-spacing: -0.01em;
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background: #fff;
}
.problem-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.25;
}
.problem-section .problem-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 48px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.problem-card {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #eef0f5;
}
.problem-card .problem-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #c53030;
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0;
}
.problem-solution {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #062871;
  padding: 20px;
  background: linear-gradient(135deg, rgba(6,40,113,0.04), rgba(15,170,216,0.06));
  border-radius: 12px;
}

/* Core Solution Flow */
.core-solution {
  padding: 80px 0;
  background: #f8f9fc;
}
.core-solution h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  margin-bottom: 12px;
}
.core-solution .cs-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 48px;
}
.flow-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}
.flow-step {
  flex: 1 1 120px;
  min-width: 100px;
  max-width: 180px;
  text-align: center;
  padding: 16px 8px;
  position: relative;
}
.flow-step .flow-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #062871, #0FAAD8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.flow-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.flow-step p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 0;
}
.flow-arrow {
  display: flex;
  align-items: center;
  color: #cbd5e0;
  font-size: 16px;
  padding: 0 2px;
  flex: 0 0 auto;
}

/* Why Cards v3 */
.why-section {
  padding: 80px 0;
  background: #fff;
}
.why-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  margin-bottom: 12px;
}
.why-section .why-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 48px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s ease;
}
.why-card:hover {
  border-color: #062871;
  box-shadow: 0 8px 30px rgba(6,40,113,0.08);
}
.why-card .why-num {
  font-size: 13px;
  font-weight: 700;
  color: #0FAAD8;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.why-card .why-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: #062871;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Photo Required Banner */
.photo-required {
  background: #fff8e6;
  border: 1px dashed #ecc94b;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  color: #975a16;
  font-size: 14px;
  font-weight: 500;
}
.photo-required .pr-icon {
  font-size: 28px;
  margin-bottom: 8px;
  opacity: 0.6;
}

/* Workflow Timeline */
.workflow-section {
  padding: 80px 0;
  background: #f8f9fc;
}
.workflow-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  margin-bottom: 12px;
}
.workflow-section .wf-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 48px;
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #062871, #0FAAD8, #751BA9);
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .tl-dot {
  position: absolute;
  left: 14px;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid #062871;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item .tl-num {
  font-size: 12px;
  font-weight: 700;
  color: #0FAAD8;
  margin-bottom: 2px;
}
.timeline-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}
.timeline-item p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Sourcing + QC split */
.split-section {
  padding: 80px 0;
  background: #fff;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.split-col h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0a0e1a;
  margin-bottom: 16px;
}
.split-col p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}
.qc-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.qc-step {
  background: #f0f4ff;
  color: #062871;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}
.qc-note {
  margin-top: 16px;
  font-size: 13px;
  color: #062871;
  background: rgba(6,40,113,0.05);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}

/* Shipping Module */
.shipping-section {
  padding: 80px 0;
  background: #f8f9fc;
}
.shipping-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  margin-bottom: 12px;
}
.shipping-section .ship-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 40px;
}
.ship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.ship-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.ship-card .ship-country {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}
.ship-card .ship-time {
  font-size: 20px;
  font-weight: 800;
  color: #062871;
}
.ship-card .ship-unit {
  font-size: 11px;
  color: #8b95a7;
  margin-top: 2px;
}
.ship-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #8b95a7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Branding Section */
.branding-section {
  padding: 80px 0;
  background: #062871;
  color: #fff;
  border-radius: 0;
}
.branding-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.branding-section .brand-sub {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 40px;
}
.brand-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.brand-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
}
.branding-section .brand-cta {
  text-align: center;
}

/* Technology Section */
.tech-section {
  padding: 80px 0;
  background: #fff;
}
.tech-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  margin-bottom: 12px;
}
.tech-section .tech-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 40px;
}
.tech-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 32px;
}
.tech-node {
  background: #f0f4ff;
  border: 1px solid #d6e0ff;
  color: #062871;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
}
.tech-node.primary {
  background: linear-gradient(135deg, #062871, #0FAAD8);
  color: #fff;
  border: none;
}
.tech-arrow {
  color: #cbd5e0;
  font-size: 18px;
}

/* Pricing Simplified */
.pricing-simple {
  padding: 80px 0;
  background: #f8f9fc;
}
.pricing-simple h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  margin-bottom: 12px;
}
.pricing-simple .ps-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 40px;
}
.ps-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 32px;
}
.ps-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
}
.ps-card .ps-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8b95a7;
  margin-bottom: 8px;
}
.ps-card .ps-title {
  font-size: 20px;
  font-weight: 800;
  color: #062871;
  margin-bottom: 8px;
}
.ps-card .ps-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}
.ps-equals {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #0FAAD8;
}
.ps-total {
  background: linear-gradient(135deg, #062871, #751BA9);
  color: #fff;
  border: none;
}
.ps-total .ps-label, .ps-total .ps-desc { color: rgba(255,255,255,0.7); }
.ps-total .ps-title { color: #fff; }
.ps-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.ps-feature {
  font-size: 14px;
  font-weight: 600;
  color: #062871;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Who We Are For */
.who-section {
  padding: 80px 0;
  background: #fff;
}
.who-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0a0e1a;
  text-align: center;
  margin-bottom: 40px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.who-card {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid #0FAAD8;
}
.who-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}
.who-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #062871 0%, #1B267C 50%, #751BA9 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .flow-arrow { display: none; }
  .ps-equals { display: none; }
  .hero-v3 { padding: 48px 0 40px; }
  .problem-section, .core-solution, .why-section, .workflow-section,
  .split-section, .shipping-section, .tech-section, .pricing-simple,
  .who-section, .final-cta { padding: 56px 0; }
}

/* ============================================
   V10 — Brand Upgrade Styles
   ============================================ */

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(6,40,113,0.12);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover { color: #062871; background: #f0f7ff; }

/* Buttons */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; }

/* SECTION 01 — Hero V10 */
.hero-v10 {
  padding: calc(var(--nav-height) + 48px) 0 64px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-v10-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-v10-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0FAAD8;
  margin-bottom: 20px;
}
.hero-v10-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #0a0e1a;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}
.hero-v10-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-v10-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-v10-supporting {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #718096;
  font-weight: 500;
}
.hero-v10-supporting .dot { color: #cbd5e0; }
.hero-v10-right { display: flex; justify-content: center; }
.hero-v10-globe-wrap {
  position: relative;
  text-align: center;
}
.hero-v10-globe-label {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.globe-label-big {
  font-size: 22px;
  font-weight: 800;
  color: #062871;
  letter-spacing: -0.3px;
}

/* SECTION 02 — Trust Bar V10 */
.trust-bar-v10 {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
}
.trust-bar-v10-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a0aec0;
  margin-bottom: 24px;
}
.trust-bar-v10-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.trust-bar-v10-items .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
}
.trust-bar-v10-items .trust-item .trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e6f4ff, #f0e6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #062871;
  flex-shrink: 0;
  margin: 0;
}
.trust-bar-v10-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid #edf0f5;
}
.trust-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-stat strong {
  font-size: 32px;
  font-weight: 800;
  color: #062871;
  letter-spacing: -0.5px;
}
.trust-stat span {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
}

/* SECTION 03 — Problem V10 */
.problem-v10 {
  padding: 80px 0;
  background: #fafbfc;
}
.problem-v10-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.problem-v10-header h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: #0a0e1a;
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}
.problem-v10-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}
.problem-v10-highlight {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 48px;
  background: linear-gradient(135deg, #062871, #0a3d91);
  border-radius: 16px;
  text-align: center;
}
.problem-v10-highlight p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* SECTION 04 — Positioning V10 */
.positioning-v10 {
  padding: 80px 0;
  background: #fff;
}
.positioning-v10-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.positioning-v10-header h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: #0a0e1a;
  margin: 0 0 16px;
}
.positioning-v10-header p {
  font-size: 16px;
  color: #718096;
  margin: 0;
}
.positioning-v10-compare {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 56px;
}
.compare-col {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e8eaf0;
  background: #fafbfc;
}
.compare-col-primary {
  border: 2px solid #062871;
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
  box-shadow: 0 4px 24px rgba(6,40,113,0.08);
}
.compare-col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #718096;
  margin-bottom: 20px;
}
.compare-col-primary .compare-col-title { color: #062871; }
.compare-flow-simple {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 20px;
}
.compare-flow-simple .arrow { color: #cbd5e0; }
.compare-desc {
  font-size: 14px;
  color: #718096;
  line-height: 1.7;
  margin: 0 0 20px;
}
.compare-pain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #718096;
  line-height: 1.5;
}
.pain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e0;
  flex-shrink: 0;
}
.compare-flow-full {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  width: 100%;
}
.compare-flow-full .flow-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #edf0f5;
  width: 100%;
  box-sizing: border-box;
}
.compare-flow-full .flow-step-name {
  font-size: 12px;
  font-weight: 800;
  color: #062871;
  letter-spacing: 0.5px;
  padding-top: 1px;
  word-break: keep-all;
}
.compare-flow-full .flow-step-desc {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.55;
  word-break: break-word;
}
.positioning-v10-bottom {
  text-align: center;
  padding-top: 16px;
}
.positioning-v10-bottom .big-text {
  font-size: 28px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0;
  line-height: 1.3;
}

/* SECTION 05 — Solutions V10 */
.solutions-v10 {
  padding: 80px 0;
  background: #fafbfc;
}
.solutions-v10-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.solutions-v10-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 12px;
}
.solutions-v10-header p {
  font-size: 16px;
  color: #718096;
  margin: 0;
}
.solutions-v10-list {
  max-width: 900px;
  margin: 0 auto;
}
.solution-row {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid #e8eaf0;
  align-items: flex-start;
}
.solution-row:last-child { border-bottom: none; }
.solution-num {
  font-size: 14px;
  font-weight: 800;
  color: #0FAAD8;
  min-width: 32px;
  padding-top: 4px;
}
.solution-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 10px;
  line-height: 1.35;
}
.solution-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 12px;
}
.solution-link {
  font-size: 14px;
  font-weight: 600;
  color: #062871;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.solution-link:hover { gap: 8px; }

/* SECTION 06 — Operations V10 */
.operations-v10 {
  padding: 80px 0;
  background: #fff;
}
.operations-v10-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.operations-v10-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 16px;
  line-height: 1.25;
}
.operations-v10-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}
.operations-v10-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.op-step {
  padding: 24px 20px;
  background: #fafbfc;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  text-align: center;
}
.op-step-num {
  font-size: 12px;
  font-weight: 800;
  color: #0FAAD8;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.op-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 8px;
}
.op-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #718096;
  margin: 0;
}
.operations-v10-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 24px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  text-align: center;
}
.operations-v10-note p {
  font-size: 13px;
  color: #92400e;
  margin: 0;
  line-height: 1.6;
}

/* SECTION 07 — How It Works V10 */
.howitworks-v10 {
  padding: 80px 0;
  background: #fafbfc;
}
.howitworks-v10-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.howitworks-v10-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0;
}
.howitworks-v10-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.hiw-step {
  padding: 24px;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  position: relative;
}
.hiw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #062871, #0FAAD8);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
}
.hiw-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 8px;
}
.hiw-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #718096;
  margin: 0;
}
.howitworks-v10-bottom {
  text-align: center;
}
.howitworks-v10-bottom .big-text {
  font-size: 28px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0;
  line-height: 1.3;
}

/* SECTION 08 — Why V10 */
.why-v10 {
  padding: 80px 0;
  background: #fff;
}
.why-v10-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.why-v10-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 12px;
}
.why-v10-header p {
  font-size: 16px;
  color: #718096;
  margin: 0;
}
.why-v10-table-wrap {
  max-width: 800px;
  margin: 0 auto 48px;
  overflow-x: auto;
}
.why-v10-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.why-v10-table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #718096;
  border-bottom: 2px solid #062871;
}
.why-v10-table th:last-child { color: #062871; }
.why-v10-table td {
  padding: 14px 24px;
  border-bottom: 1px solid #edf0f5;
  color: #4a5568;
}
.why-v10-table td:last-child {
  color: #0a0e1a;
  font-weight: 500;
  background: #f8fbff;
}
.why-v10-bottom {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.why-v10-bottom .big-text {
  font-size: 24px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0;
  line-height: 1.4;
}

/* SECTION 09 — Cases V10 */
.cases-v10 {
  padding: 80px 0;
  background: #fafbfc;
}
.cases-v10-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.cases-v10-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 12px;
}
.cases-v10-header p {
  font-size: 16px;
  color: #718096;
  margin: 0;
}
.cases-v10-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.case-card {
  padding: 28px;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}
.case-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0FAAD8;
  margin-bottom: 16px;
}
.case-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 16px;
  line-height: 1.4;
}
.case-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: #718096;
  margin-bottom: 16px;
  font-weight: 500;
}
.case-flow span:last-child { color: #062871; font-weight: 700; }
.case-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
  margin-top: auto;
}
.case-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.case-before, .case-after {
  padding: 14px;
  border-radius: 10px;
  font-size: 13px;
}
.case-before {
  background: #fafbfc;
  border: 1px solid #edf0f5;
  color: #718096;
}
.case-before strong { display: block; margin-bottom: 8px; color: #4a5568; }
.case-before ul { margin: 0; padding-left: 16px; line-height: 1.8; }
.case-after {
  background: linear-gradient(135deg, #062871, #0a3d91);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.case-after strong { display: block; margin-bottom: 8px; opacity: 0.8; }
.case-after-brand {
  font-size: 22px;
  font-weight: 800;
  margin: 0 !important;
}

/* SECTION 10 — Pricing V10 */
.pricing-v10 {
  padding: 80px 0;
  background: #fff;
}
.pricing-v10-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.pricing-v10-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 12px;
  line-height: 1.25;
}
.pricing-v10-header p {
  font-size: 16px;
  color: #718096;
  margin: 0;
}
.pricing-v10-structure {
  max-width: 480px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.price-line {
  width: 100%;
  padding: 14px 24px;
  background: #fafbfc;
  border: 1px solid #edf0f5;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
}
.price-plus, .price-equals {
  font-size: 18px;
  font-weight: 700;
  color: #0FAAD8;
}
.price-total {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #062871, #0a3d91);
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.pricing-v10-promises {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
}
.promise-item svg { color: #25D366; }
.pricing-v10-bottom {
  text-align: center;
}
.pricing-v10-bottom .big-text {
  font-size: 26px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 24px;
}

/* SECTION 11 — FAQ V10 */
.faq-v10 {
  padding: 80px 0;
  background: #fafbfc;
}
.faq-v10-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.faq-v10-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0;
}
.faq-v10-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-item {
  padding: 24px;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 12px;
}
.faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 10px;
  line-height: 1.4;
}
.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* SECTION 12 — Final CTA V10 */
.finalcta-v10 {
  padding: 80px 0;
  background: linear-gradient(135deg, #062871 0%, #0a1a3d 100%);
  position: relative;
  overflow: hidden;
}
.finalcta-v10::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15,170,216,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.finalcta-v10-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.finalcta-v10-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.finalcta-v10-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
}
.finalcta-v10-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.finalcta-v10-footer p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.5px;
}

/* Footer V10 */
.footer-v10 {
  background: #050d1f;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}
.footer-v10-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-slogan {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 8px;
  line-height: 1.4;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.6;
}
.footer-v10-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px;
}
.footer-v10-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-v10-col a:hover { color: #0FAAD8; }
.footer-cta-link {
  font-weight: 600 !important;
  color: #0FAAD8 !important;
}
.footer-contact {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 8px 0 0;
}
.footer-v10-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 16px;
}
.footer-v10-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-v10-legal {
  display: flex;
  gap: 20px;
}
.footer-v10-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-v10-legal a:hover { color: rgba(255,255,255,0.7); }

/* V10 Responsive */
@media (max-width: 1024px) {
  .hero-v10-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-v10-title { font-size: 40px; }
  .operations-v10-steps { grid-template-columns: repeat(3, 1fr); }
  .howitworks-v10-steps { grid-template-columns: repeat(2, 1fr); }
  .cases-v10-list { grid-template-columns: 1fr; }
  .positioning-v10-compare { grid-template-columns: 1fr; }
  .footer-v10-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-v10-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-v10 { padding: calc(var(--nav-height) + 32px) 0 48px; }
  .hero-v10-title { font-size: 32px; }
  .hero-v10-sub { font-size: 15px; }
  .hero-v10-cta .btn { width: 100%; justify-content: center; }
  .trust-bar-v10-items { gap: 16px; grid-template-columns: 1fr; }
  .trust-bar-v10-stats { gap: 24px; }
  .trust-stat strong { font-size: 26px; }
  .problem-v10, .positioning-v10, .solutions-v10, .operations-v10,
  .howitworks-v10, .why-v10, .cases-v10, .pricing-v10, .faq-v10, .finalcta-v10 { padding: 56px 0; }
  .problem-v10-header h2, .positioning-v10-header h2, .solutions-v10-header h2,
  .operations-v10-header h2, .howitworks-v10-header h2, .why-v10-header h2,
  .cases-v10-header h2, .pricing-v10-header h2, .faq-v10-header h2 { font-size: 26px; }
  .problem-v10-highlight { padding: 24px; }
  .problem-v10-highlight p { font-size: 18px; }
  .operations-v10-steps { grid-template-columns: 1fr; }
  .howitworks-v10-steps { grid-template-columns: 1fr; }
  .faq-v10-list { grid-template-columns: 1fr; }
  .finalcta-v10-content h2 { font-size: 28px; }
  .finalcta-v10-buttons .btn { width: 100%; justify-content: center; }
  .footer-v10-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-v10-bottom { flex-direction: column; text-align: center; }
  .solution-row { flex-direction: column; gap: 12px; }
  .nav-dropdown-menu { display: none !important; }
}
