/* ============================================
   NEW OFFERS WEB — Light Theme Redesign
   Clean, Modern Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Brand Colors from Logo --- */
:root {
  /* Brand palette — New Theme (#72274e) */
  --brand-purple: #72274e;
  --brand-purple-light: #9c4a6f;
  --brand-purple-dark: #5a1f3e;
  --brand-magenta: #c23a6a;
  --brand-coral: #e85b7a;
  --brand-orange: #e8712b;
  --brand-yellow: #f5b731;

  /* Functional colors */
  --primary: #72274e;
  --primary-light: #f8e9ef;
  --primary-50: rgba(114, 39, 78, 0.05);
  --primary-100: rgba(114, 39, 78, 0.08);
  --primary-200: rgba(114, 39, 78, 0.12);

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-page: #FAFBFC;
  --bg-section: #F5F6F8;
  --bg-card: #FFFFFF;

  /* Text */
  --text-heading: #1A1D2B;
  --text-body: #4A4F65;
  --text-muted: #8690A2;
  --text-white: #FFFFFF;

  /* Borders */
  --border-light: #E8EBF0;
  --border-medium: #D1D6E0;

  /* Gradient */
  --gradient-brand: linear-gradient(135deg, #72274e 0%, #c23a6a 50%, #e8712b 100%);
  --gradient-brand-subtle: linear-gradient(135deg, rgba(114, 39, 78, 0.06) 0%, rgba(194, 58, 106, 0.04) 50%, rgba(232, 113, 43, 0.03) 100%);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-secondary: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 30px rgba(114, 39, 78, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 200ms var(--ease);
  --t-base: 350ms var(--ease);
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Header --- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-100);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.section-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-title .highlight {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--t-base);
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--brand-purple-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border-medium);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--t-base);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 18px;
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--t-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t-fast);
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-btn svg {
  width: 16px;
  height: 16px;
}

.nav-cta {
  padding: 9px 22px;
  font-size: 0.85rem;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: var(--t-fast);
}

/* Mobile nav — hidden by default */
.mobile-nav-overlay {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--bg-white);
  overflow: hidden;
}

/* Subtle decorative shapes */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--brand-purple);
  filter: blur(50px);
  top: -200px;
  right: -200px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--brand-orange);
  bottom: -100px;
  left: -150px;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: var(--brand-magenta);
  top: 40%;
  left: 30%;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

/* Hero Text Blocks - Stacked text sections */
.hero-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.hero-text-block {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.hero-text-block h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-text-block .hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: var(--primary-100);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease-out;
}

.hero-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-icon svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-buttons .btn {
  padding: 14px 30px;
  font-size: 0.95rem;
}

/* Scroll indicator */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.scroll-hint-line {
  width: 32px;
  height: 2px;
  background: var(--border-medium);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Hero visual - phone mockup area */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeInRight 0.9s ease-out 0.3s both;
}

.hero-phone {
  position: relative;
  z-index: 2;
}

.hero-phone img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 60px rgba(114, 39, 78, 0.15));
}

.hero-phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 39, 78, 0.08), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 1;
}

/* Floating info cards */
.info-card {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-card 5s ease-in-out infinite alternate;
}

.info-card-1 {
  top: 12%;
  left: -15%;
  animation-delay: 0s;
}

.info-card-2 {
  bottom: 18%;
  right: -10%;
  animation-delay: 2.5s;
}

.info-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.info-card-icon.orange {
  background: rgba(232, 113, 43, 0.1);
}

.info-card-icon.orange svg {
  color: var(--brand-orange);
}

.info-card-text .ic-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
}

.info-card-text .ic-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float-card {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes colorShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   TRUST BAR / STATS
   ============================================ */
.trust-bar {
  padding: 64px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.trust-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--t-base);
}

.trust-stat:hover {
  border-color: rgba(114, 39, 78, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.trust-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-stat-icon svg {
  width: 24px;
  height: 24px;
}

.trust-stat-icon.purple {
  background: var(--primary-light);
}

.trust-stat-icon.purple svg {
  color: var(--brand-purple);
}

.trust-stat-icon.magenta {
  background: rgba(196, 43, 108, 0.08);
}

.trust-stat-icon.magenta svg {
  color: var(--brand-magenta);
}

.trust-stat-icon.orange {
  background: rgba(232, 113, 43, 0.08);
}

.trust-stat-icon.orange svg {
  color: var(--brand-orange);
}

.trust-stat-icon.yellow {
  background: rgba(245, 183, 49, 0.1);
}

.trust-stat-icon.yellow svg {
  color: var(--brand-yellow);
}

.trust-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(114, 39, 78, 0.15);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}



.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--t-base);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
}

.feature-card:hover .feature-icon svg {
  color: #fff;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Mid-CTA inside features */
.mid-cta {
  margin-top: 48px;
  text-align: center;
  padding: 40px;
  background: var(--gradient-brand-subtle);
  border: 1px solid rgba(114, 39, 78, 0.08);
  border-radius: var(--radius-xl);
}

.mid-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.mid-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ============================================
   CTA CARDS — Merchants & Customers
   ============================================ */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cta-card {
  padding: 40px 36px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: var(--t-base);
}

.cta-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-card-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.cta-card.merchant .cta-card-icon {
  background: var(--primary);
}

.cta-card.customer .cta-card-icon {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
}

.cta-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.cta-card>p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-card ul {
  margin-bottom: 24px;
}

.cta-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.cta-card ul li .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(114, 39, 78, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card ul li .check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.fab-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--t-base);
}

.fab svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.fab:hover {
  transform: scale(1.1);
}

.fab-call {
  background: var(--brand-purple);
}

.fab-visit {
  background: var(--brand-orange);
}

/* ============================================
   DOWNLOAD APP MODAL (iOS / Android)
   ============================================ */
.download-app-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.download-app-modal[hidden] {
  display: none !important;
}

.download-app-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 29, 43, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.download-app-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px 24px;
  text-align: center;
  animation: downloadModalIn 0.28s var(--ease);
}

@keyframes downloadModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.download-app-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  transition: var(--t-fast);
}

.download-app-modal__close:hover {
  background: var(--primary-50);
  border-color: var(--primary);
  color: var(--primary);
}

.download-app-modal__close svg {
  width: 18px;
  height: 18px;
}

[dir="rtl"] .download-app-modal__close {
  right: auto;
  left: 12px;
}

.download-app-modal__icon-wrap {
  margin-bottom: 12px;
}

.download-app-modal__logo {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.download-app-modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.download-app-modal__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.download-app-modal__stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-app-modal__store {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-align: start;
  transition: var(--t-fast);
  border: 1px solid var(--border-light);
  color: var(--text-heading);
}

.download-app-modal__store:hover {
  border-color: rgba(114, 39, 78, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.download-app-modal__store--ios {
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: #fff;
}

.download-app-modal__store--ios:hover {
  border-color: #444;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.download-app-modal__store--android {
  background: #e8f5e9;
  border-color: #c8e6c9;
  color: #1b5e20;
}

.download-app-modal__store--android:hover {
  border-color: #81c784;
}

.download-app-modal__store-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-app-modal__store-icon svg {
  width: 28px;
  height: 28px;
}

.download-app-modal__store-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.download-app-modal__store-small {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.download-app-modal__store--android .download-app-modal__store-small {
  color: #2e7d32;
}

.download-app-modal__store-big {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.download-app-modal__store--ios .download-app-modal__store-big {
  color: #fff;
}

@media (max-width: 480px) {
  .download-app-modal__panel {
    padding: 24px 18px 20px;
  }

  .download-app-modal__title {
    font-size: 1.1rem;
  }
}

/* Nav download as button — match link styling */
button.nav-cta {
  font: inherit;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 72px 0 0;
  background: var(--text-heading);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo img {
  height: 36px;
  filter: none;
}

.footer-brand .footer-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--t-fast);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--t-fast);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--t-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

.reveal-d6 {
  transition-delay: 0.6s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-text-blocks {
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .hero-text-block {
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 2px solid var(--primary-200);
  }

  .hero-text-block:first-child {
    border-top: none;
    padding-top: 0;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .scroll-hint {
    justify-content: center;
  }

  /* Show phone mockup on tablet/mobile — scaled so layout stays balanced */
  .hero-visual {
    display: flex;
    margin-top: 28px;
    padding: 0 12px;
    max-width: 100%;
  }

  .hero-phone img {
    max-width: min(300px, 88vw);
    margin: 0 auto;
  }

  .hero-phone-glow {
    width: min(240px, 70vw);
    height: min(240px, 70vw);
  }

  .info-card-1 {
    left: 0;
  }

  .info-card-2 {
    right: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* --- Tablet portrait & small tablets --- */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links,
  .lang-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  /* Mobile sidebar drawer */
  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 300px;
    max-width: 85vw;
    background: #fff;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
  }

  .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-nav-logo img {
    height: 30px;
    width: auto;
  }

  .mobile-nav-logo span {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-heading);
  }

  .mobile-nav-close {
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    font-size: 0;
    color: var(--text-heading);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-fast);
  }

  .mobile-nav-close:hover {
    background: var(--primary-50);
    border-color: var(--primary);
  }

  .mobile-nav-close svg {
    width: 18px;
    height: 18px;
    color: var(--text-heading);
  }

  .mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    overflow-y: auto;
  }

  .mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-body);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: var(--t-fast);
  }

  .mobile-nav-links a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a:active {
    background: var(--primary-50);
    color: var(--primary);
  }

  .mobile-nav-links a:hover svg,
  .mobile-nav-links a:active svg {
    color: var(--primary);
  }

  .mobile-nav-links a.active {
    background: var(--primary-light);
    color: var(--primary);
  }

  .mobile-nav-links a.active svg {
    color: var(--primary);
  }

  .mobile-nav-footer {
    padding: 16px 16px 24px;
    border-top: 1px solid var(--border-light);
  }

  .mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-text-block h1 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  /* Trust */
  .trust-bar {
    padding: 48px 0;
  }

  .trust-header h2 {
    font-size: 1.25rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-stat {
    padding: 20px 14px;
  }

  .trust-stat .stat-number {
    font-size: 1.8rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .mid-cta {
    padding: 28px 20px;
    margin-top: 32px;
  }

  /* CTA Cards */
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 28px 24px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* --- Small phones --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 90px 0 48px;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .hero-phone img {
    max-width: min(260px, 92vw);
  }

  .info-card {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-text-block h1 {
    font-size: 1.4rem;
  }

  .hero-text-blocks {
    gap: 18px;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px 5px 5px;
  }

  .hero-badge-icon {
    width: 22px;
    height: 22px;
  }

  .scroll-hint {
    font-size: 0.75rem;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-stat {
    padding: 18px 10px;
  }

  .trust-stat .stat-number {
    font-size: 1.5rem;
  }

  .trust-stat .stat-label {
    font-size: 0.78rem;
  }

  .trust-stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .trust-stat-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Features */
  .feature-card {
    padding: 22px 18px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-card h3 {
    font-size: 0.98rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* CTA */
  .cta-card {
    padding: 24px 18px;
  }

  .cta-card h3 {
    font-size: 1.15rem;
  }

  .cta-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .cta-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .cta-card ul li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  /* Section badge & titles */
  .section-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .mid-cta h3 {
    font-size: 1.05rem;
  }

  .mid-cta p {
    font-size: 0.88rem;
  }

  /* Footer */
  .footer-col h4 {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .footer-col ul li a {
    font-size: 0.85rem;
  }

  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 0.78rem;
  }
}

/* --- Very small phones (320px) --- */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .nav-logo-text {
    font-size: 0.88rem;
  }

  .nav-logo img {
    height: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat .stat-number {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .btn {
    font-size: 0.82rem;
    padding: 11px 18px;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

::selection {
  background: rgba(114, 39, 78, 0.15);
  color: var(--text-heading);
}
/* ============================================
   FAQ PAGE — Styles
   ============================================ */

/* PAGE HEADER - Pure webb.png background (no color) for desktop & mobile */
.page-header {
  position: relative;
  padding: 140px 0 72px;
  background-image: url('../imgs/webb.png');
  background-repeat: repeat;
  background-size: 200px 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.page-header-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-header-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.page-header-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--brand-purple);
  filter: blur(15px);
  top: -200px;
  right: -100px;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FAQ LIST ===== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t-base);
}

.faq-item:hover {
  border-color: rgba(107, 47, 160, 0.15);
}

.faq-item.open {
  border-color: rgba(107, 47, 160, 0.2);
  box-shadow: 0 4px 20px rgba(107, 47, 160, 0.08);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  transition: var(--t-fast);
}

.faq-question:hover {
  background: var(--primary-50);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-base);
}

.faq-q-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.faq-item.open .faq-q-icon {
  background: var(--primary);
}

.faq-item.open .faq-q-icon svg {
  color: #fff;
}

.faq-question span {
  flex: 1;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.faq-chevron svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-chevron svg {
  color: var(--primary);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px 80px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ===== CONTACT CTA ===== */
.faq-contact-cta {
  padding: 0 0 100px;
  background: var(--bg-white);
}

.faq-contact-inner {
  text-align: center;
  padding: 56px 40px;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: var(--t-base);
}

.faq-contact-inner:hover {
  box-shadow: var(--shadow-card-hover);
}

.faq-contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-contact-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.faq-contact-inner h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.faq-contact-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-header {
    padding: 110px 0 48px;
  }

  .page-header-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-header-desc {
    font-size: 0.95rem;
  }

  .faq-section {
    padding: 56px 0;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-question {
    padding: 16px 18px;
    gap: 12px;
  }

  .faq-question span {
    font-size: 0.92rem;
  }

  .faq-answer p {
    padding: 0 18px 16px 66px;
    font-size: 0.88rem;
  }

  .faq-q-icon {
    width: 36px;
    height: 36px;
  }

  .faq-q-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-contact-cta {
    padding: 0 0 64px;
  }

  .faq-contact-inner {
    padding: 40px 24px;
  }

  .faq-contact-inner h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 100px 0 40px;
  }

  .page-header-title {
    font-size: 1.5rem;
  }

  .page-header-desc {
    font-size: 0.88rem;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 14px 14px;
    gap: 10px;
  }

  .faq-question span {
    font-size: 0.88rem;
  }

  .faq-answer p {
    padding: 0 14px 14px 14px;
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .faq-q-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .faq-q-icon svg {
    width: 16px;
    height: 16px;
  }

  .faq-chevron {
    width: 24px;
    height: 24px;
  }

  .faq-chevron svg {
    width: 16px;
    height: 16px;
  }

  .faq-contact-inner {
    padding: 32px 18px;
  }

  .faq-contact-inner h3 {
    font-size: 1.1rem;
  }

  .faq-contact-inner p {
    font-size: 0.88rem;
  }

  .faq-contact-icon {
    width: 52px;
    height: 52px;
  }

  .faq-contact-icon svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   ABOUT PAGE — Styles
   ============================================ */

/* ===== PAGE HEADER ===== (overridden by rule above - pure image only) */

.page-header-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-header-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.page-header-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--brand-purple);
  filter: blur(15px);
  top: -200px;
  right: -100px;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content .section-title {
  text-align: left;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-heading);
}

.mh-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Mission visual card */
.mission-visual {
  display: flex;
  justify-content: center;
}

.mission-visual-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  max-width: 340px;
  width: 100%;
  transition: var(--t-base);
}

.mission-visual-card:hover {
  border-color: rgba(107, 47, 160, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.mvc-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvc-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.mvc-stat {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.mvc-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--t-base);
}

.why-card:hover {
  border-color: rgba(107, 47, 160, 0.15);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-base);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card-icon.purple {
  background: var(--primary-light);
}

.why-card-icon.purple svg {
  color: var(--brand-purple);
}

.why-card-icon.magenta {
  background: rgba(196, 43, 108, 0.08);
}

.why-card-icon.magenta svg {
  color: var(--brand-magenta);
}

.why-card-icon.orange {
  background: rgba(232, 113, 43, 0.08);
}

.why-card-icon.orange svg {
  color: var(--brand-orange);
}

.why-card-icon.yellow {
  background: rgba(245, 183, 49, 0.1);
}

.why-card-icon.yellow svg {
  color: var(--brand-yellow);
}

.why-card:hover .why-card-icon {
  background: var(--primary);
}

.why-card:hover .why-card-icon svg {
  color: #fff;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-base);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.step-card:hover .step-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.step-card:hover .step-icon svg {
  color: #fff;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  width: 60px;
  color: var(--border-medium);
}

.step-connector svg {
  width: 100%;
  height: 2px;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 100px 0;
  background: var(--bg-section);
}

.contact-cta-inner {
  text-align: center;
  padding: 56px 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: var(--t-base);
}

.contact-cta-inner:hover {
  box-shadow: var(--shadow-card-hover);
}

.contact-cta-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cta-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.contact-cta-inner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.contact-cta-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-content .section-title {
    text-align: center;
  }

  .mission-content {
    text-align: center;
  }

  .mission-highlights {
    align-items: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 110px 0 48px;
  }

  .page-header-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-header-desc {
    font-size: 0.95rem;
  }

  .mission-section {
    padding: 64px 0;
  }

  .mission-text {
    font-size: 0.95rem;
  }

  .mission-visual-card {
    padding: 36px 28px;
  }

  .mvc-stat {
    font-size: 2.2rem;
  }

  .why-section {
    padding: 64px 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-card {
    padding: 28px 18px;
  }

  .how-section {
    padding: 64px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    padding: 24px 16px;
  }

  .contact-cta {
    padding: 64px 0;
  }

  .contact-cta-inner {
    padding: 40px 24px;
  }

  .contact-cta-inner h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 100px 0 40px;
  }

  .page-header-title {
    font-size: 1.5rem;
  }

  .page-header-desc {
    font-size: 0.88rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 24px 16px;
  }

  .why-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .why-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon svg {
    width: 26px;
    height: 26px;
  }

  .mission-visual-card {
    padding: 28px 20px;
  }

  .mvc-icon {
    width: 56px;
    height: 56px;
  }

  .mvc-stat {
    font-size: 2rem;
  }

  .contact-cta-inner {
    padding: 32px 18px;
  }

  .contact-cta-icon {
    width: 52px;
    height: 52px;
  }

  .contact-cta-icon svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms) — pattern bg
   ============================================ */
.legal-page {
  background-color: var(--bg-white);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.93) 100%),
    url('../imgs/webb.png');
  background-repeat: repeat, repeat;
  background-size: auto, auto;
}

.legal-page .page-header {
  background: transparent;
  border-bottom: 1px solid var(--border-light);
}

.legal-page-updated {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-page-content {
  position: relative;
  z-index: 1;
}
