/* ============================================
   WOWL Global Supply Chain Management Platform
   Homepage Redesign - Matching Reference Design
   ============================================ */

/* CSS Variables */
:root {
  --orange: #F26522;
  --orange-dark: #D4551A;
  --orange-light: #FFF0E8;
  --orange-mid: #F9845A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #AAAAAA;
  --gray-500: #8A8A8A;
  --gray-700: #444444;
  --gray-900: #1A1A1A;
  --navy: #0F1B2D;
  --max-w: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Common Components */
.tag,
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-tag-dark {
  background: rgba(242,101,34,0.2);
  color: var(--orange-mid);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--white);
}

.section-sub,
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.7;
}

.section-subtitle-light {
  color: rgba(255,255,255,0.55);
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

/* ===================
   NAVIGATION
   =================== */

.wowl-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-bar {
  border-bottom: 1px solid var(--gray-100);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}

.logo-img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
}

.nav-links a,
.nav-link {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-link:hover {
  color: var(--orange);
  background: var(--orange-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-login {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  white-space: nowrap;
}

.nav-login:hover {
  color: var(--orange);
}

.nav-demo-btn {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-demo-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Hamburger Button - hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger animation when open */
.menu-open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu - hidden on desktop */
.mobile-menu {
  display: none;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .nav-container {
    height: 50px;
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 12px 1rem 20px;
  }

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

  .mobile-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    padding: 12px 8px;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
  }

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

  .mobile-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    margin-top: 4px;
  }

  .mobile-auth .nav-demo-btn {
    flex: 1;
    text-align: center;
  }
}

/* ===================
   HERO SECTION
   =================== */

.hero,
.hero-section {
  background: linear-gradient(160deg, #fff8f4 0%, #ffffff 60%);
  padding: 96px 2rem 0;
  overflow: hidden;
}

.hero-inner,
.hero-container .hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  padding-bottom: 80px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1,
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.hero h1 em,
.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-ctas,
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}

.hero-social-proof strong,
.proof-item strong {
  color: var(--gray-700);
}

.hero-proof-divider,
.proof-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
}

.hero-visual {
  position: relative;
  padding-bottom: 40px;
}

/* Dashboard Mockup */
.dashboard-mockup,
.hero-image-wrapper img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}

.dashboard-mockup {
  background: var(--navy);
  overflow: hidden;
}

.dash-topbar {
  background: #182940;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
}

.dash-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dash-stat {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px;
}

.dash-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.dash-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.dash-stat-change {
  font-size: 0.65rem;
  color: #22c55e;
  margin-top: 4px;
}

.dash-map {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  height: 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-map-lines {
  position: absolute;
  inset: 0;
}

.dash-shipments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dash-ship-row {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-ship-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-ship-info {
  flex: 1;
}

.dash-ship-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.dash-ship-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
}

.dash-ship-eta {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--orange);
}

.hero-float-card,
.hero-floating-card {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gray-200);
}

.hero-float-dot,
.floating-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.hero-float-card p,
.floating-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
}

.hero-float-card span,
.floating-card-subtitle {
  font-size: 0.72rem;
  color: var(--gray-400);
}

@media (max-width: 860px) {
  .hero-inner,
  .hero-container .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    padding-bottom: 60px;
  }
}

/* ===================
   TRUST BAR
   =================== */

.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 2rem;
}

.trust-bar-inner,
.trust-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-stat-num,
.trust-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.trust-stat-txt,
.trust-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.3;
}

/* ===================
   FEATURES SECTION
   =================== */

.what-section,
.features-section {
  padding: 96px 2rem;
}

.what-inner,
.features-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.what-header,
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.what-header .section-sub,
.section-header .section-sub,
.section-subtitle {
  margin: 0 auto;
  text-align: center;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(242,101,34,0.1);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.feature-card p,
.feature-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 820px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================
   PLATFORM SHOWCASE
   =================== */

.showcase-section,
.platform-section {
  background: var(--navy);
  padding: 96px 2rem;
  overflow: hidden;
}

.showcase-inner,
.platform-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.showcase-header,
.section-header-dark {
  text-align: center;
  margin-bottom: 56px;
}

.showcase-header .tag {
  background: rgba(242,101,34,0.2);
  color: var(--orange-mid);
}

.showcase-header .section-title {
  color: var(--white);
}

.showcase-header .section-sub {
  color: rgba(255,255,255,0.55);
  margin: 0 auto;
  text-align: center;
}

.showcase-main,
.platform-main-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.showcase-main {
  background: #182940;
  overflow: hidden;
}

.sc-topbar {
  background: #0d1e32;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sc-topbar-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
  flex: 1;
}

.sc-topbar-actions {
  display: flex;
  gap: 8px;
}

.sc-tab {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.sc-tab.active {
  background: var(--orange);
  color: white;
}

.sc-body {
  padding: 20px;
}

.sc-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.sc-kpi {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 14px 12px;
  border-top: 2px solid transparent;
}

.sc-kpi.orange { border-top-color: var(--orange); }
.sc-kpi.green { border-top-color: #22c55e; }
.sc-kpi.blue { border-top-color: #3b82f6; }
.sc-kpi.yellow { border-top-color: #f59e0b; }
.sc-kpi.purple { border-top-color: #8b5cf6; }

.sc-kpi-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.sc-kpi-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

.showcase-cards,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.showcase-card,
.platform-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #182940;
}

.platform-card img,
.showcase-card img {
  width: 100%;
  display: block;
  max-height: 220px;
  object-fit: cover;
}

.showcase-card-label,
.platform-card-label {
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
}

.showcase-card-label p,
.platform-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.showcase-card-label span,
.platform-card-subtitle {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 680px) {
  .showcase-cards,
  .platform-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================
   REAL VALUE SECTION
   =================== */

.value-section {
  padding: 96px 2rem;
  background: var(--white);
}

.value-inner,
.value-container .value-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.value-graphic,
.value-image img {
  width: 100%;
  border-radius: 16px;
}

.value-graphic {
  background: linear-gradient(135deg, #fff3eb 0%, #fde8d8 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(242,101,34,0.15);
}

.vg-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vg-owl {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vg-owl svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vg-header-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.vg-header-sub {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.vg-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.vg-stat {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.vg-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
}

.vg-stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 3px;
}

.vg-progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vg-prog-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vg-prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
}

.vg-prog-track {
  height: 7px;
  background: rgba(242,101,34,0.12);
  border-radius: 99px;
  overflow: hidden;
}

.vg-prog-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--orange);
}

.value-content .section-sub,
.value-subtitle {
  margin-bottom: 36px;
}

.value-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.value-list li,
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-list-icon,
.value-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-list-icon svg,
.value-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-list li p,
.value-item p {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}

.value-list li strong,
.value-item strong {
  color: var(--gray-900);
}

@media (max-width: 820px) {
  .value-inner,
  .value-container .value-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================
   HOW IT WORKS
   =================== */

.how-section {
  padding: 96px 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.how-inner,
.how-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.how-steps,
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.how-steps::before,
.how-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-light));
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step-num,
.how-number {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(242,101,34,0.3);
}

.how-step h4,
.how-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.how-step p,
.how-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .how-steps,
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-steps::before,
  .how-grid::before {
    display: none;
  }
}

/* ===================
   WHY WOWL SECTION
   =================== */

.why-section {
  padding: 96px 2rem;
  background: var(--navy);
}

.why-inner,
.why-container .why-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.why-left .tag {
  background: rgba(242,101,34,0.2);
  color: var(--orange-mid);
}

.why-left h2,
.why-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.why-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
}

.why-pillar p {
  color: inherit;
}

.why-pillar-dot,
.why-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.why-quote-block,
.why-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  padding: 44px 48px;
  position: relative;
}

.why-quote-mark {
  font-size: 6rem;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.3;
  font-family: Georgia, serif;
  position: absolute;
  top: 28px;
  left: 40px;
}

.why-quote-text,
.why-quote blockquote,
.why-quote-block blockquote {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.why-quote-text strong,
.why-quote blockquote strong,
.why-quote-block blockquote strong {
  color: var(--white);
  font-style: normal;
}

.why-quote-author,
.why-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-quote-avatar,
.why-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-quote-avatar svg,
.why-avatar svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-quote-author-name,
.why-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.why-quote-author-role,
.why-author-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 820px) {
  .why-inner,
  .why-container .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================
   CASE STUDIES
   =================== */

.proof-section,
.cases-section {
  padding: 96px 2rem;
  background: var(--white);
}

.proof-inner,
.cases-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.proof-header {
  text-align: center;
  margin-bottom: 56px;
}

.proof-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.proof-grid,
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.proof-card,
.case-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.proof-card:hover,
.case-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(242,101,34,0.08);
}

.proof-card-tag,
.case-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.proof-card h3,
.case-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin: 0;
}

.proof-stats,
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.proof-stat,
.case-stat {
  border-left: 3px solid var(--orange);
  padding-left: 12px;
}

.proof-stat-num,
.case-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  line-height: 1;
}

.proof-stat-label,
.case-stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.3;
}

.proof-card-link,
.case-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.proof-card-link:hover,
.case-link:hover {
  color: var(--orange-dark);
}

.proof-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 680px) {
  .proof-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================
   CTA BANNER
   =================== */

.cta-banner,
.cta-section {
  background: var(--orange);
  padding: 96px 2rem;
}

.cta-banner-inner,
.cta-container .cta-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-banner h2,
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-banner p,
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0;
}

.cta-banner-btns,
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cta-btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.cta-btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

@media (max-width: 720px) {
  .cta-banner-inner,
  .cta-container .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-banner-btns,
  .cta-buttons {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* ===================
   FOOTER
   =================== */

.wowl-footer,
footer {
  background: var(--navy);
  padding: 60px 2rem 32px;
  color: rgba(255,255,255,0.45);
}

.footer-inner,
.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
}

.footer-desc,
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4,
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul,
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom span,
.footer-copyright span {
  color: var(--orange);
}

@media (max-width: 820px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ===================
   FOOTER LEGAL LINKS
   =================== */

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* =========================================
   MOBILE RESPONSIVE OVERRIDES (max-width: 768px)
   ========================================= */

@media (max-width: 768px) {

  /* --- HERO --- */
  .hero,
  .hero-section {
    padding: 60px 1.25rem 0;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero h1,
  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-ctas,
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-cta .btn-primary {
    text-align: center;
    width: fit-content;
  }

  .hero-cta .btn-outline {
    text-align: center;
    width: fit-content;
  }

  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
  }

  .hero-proof-divider,
  .proof-divider {
    display: none;
  }

  /* --- TRUST BAR --- */
  .trust-bar {
    padding: 32px 1.25rem;
  }

  .trust-bar-inner,
  .trust-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .trust-label {
    width: 100%;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
  }

  .trust-stat {
    gap: 12px;
  }

  .trust-stat-num,
  .trust-number {
    font-size: 1.5rem;
    min-width: 80px;
  }

  /* --- FEATURES --- */
  .what-section,
  .features-section {
    padding: 64px 1.25rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .section-subtitle {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    border-color: var(--orange);
    border-width: 1.5px;
    padding: 28px 24px;
  }

  /* --- PLATFORM SHOWCASE --- */
  .showcase-section,
  .platform-section {
    padding: 64px 1.25rem;
  }

  .section-header-dark {
    margin-bottom: 40px;
  }

  .section-title-light {
    color: var(--white);
  }

  .section-subtitle-light {
    font-size: 0.92rem;
    text-align: center;
  }

  .platform-main-image img {
    border-radius: 12px;
  }

  .showcase-cards,
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .platform-card-title {
    font-size: 0.85rem;
  }

  /* --- VALUE SECTION --- */
  .value-section {
    padding: 64px 1.25rem;
  }

  .value-inner,
  .value-container .value-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-graphic {
    padding: 28px;
    border-radius: 14px;
  }

  .vg-header-text {
    font-size: 1.05rem;
  }

  .vg-stat-num {
    font-size: 1.4rem;
  }

  .vg-stat-label {
    font-size: 0.72rem;
  }

  .value-title {
    font-size: 1.45rem;
  }

  .value-subtitle {
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  .value-item p {
    font-size: 0.9rem;
  }

  /* --- HOW IT WORKS --- */
  .how-section {
    padding: 64px 1.25rem;
  }

  .how-steps,
  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .how-steps::before,
  .how-grid::before {
    display: none;
  }

  .how-step-num,
  .how-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .how-step h4,
  .how-title {
    font-size: 0.88rem;
  }

  .how-step p,
  .how-desc {
    font-size: 0.82rem;
  }

  /* --- WHY WOWL --- */
  .why-section {
    padding: 64px 1.25rem;
  }

  .why-inner,
  .why-container .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-left h2,
  .why-title {
    font-size: 1.5rem;
  }

  .why-pillar {
    font-size: 0.85rem;
  }

  .why-quote-block,
  .why-right {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .why-quote-mark {
    font-size: 4rem;
    top: 20px;
    left: 20px;
  }

  .why-quote-text,
  .why-quote blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* --- CASE STUDIES --- */
  .proof-section,
  .cases-section {
    padding: 64px 1.25rem;
  }

  .proof-grid,
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proof-card,
  .case-card {
    padding: 28px 24px;
  }

  .case-title {
    font-size: 1rem;
  }

  /* --- CTA BANNER --- */
  .cta-banner,
  .cta-section {
    padding: 64px 1.25rem;
  }

  .cta-banner-inner,
  .cta-container .cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .cta-subtitle {
    font-size: 0.92rem;
  }

  .cta-banner-btns,
  .cta-buttons {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-btn-primary {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .cta-btn-ghost {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* --- FOOTER --- */
  .wowl-footer,
  footer {
    padding: 48px 1.25rem 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal {
    gap: 16px;
  }
}
