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

:root {
  --primary: #0066FF;
  --primary-dark: #0052cc;
  --secondary: #00C9A7;
  --accent: #FF6B35;
  --dark: #0A0E1A;
  --dark-2: #111827;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --text: #1F2937;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,102,255,0.35); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: #f0f6ff; transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }
.logo em { color: var(--secondary); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--white); }
.hamburger { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A0E1A 0%, #0D1B3E 50%, #0A2240 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,167,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,102,255,0.15);
  color: #6BA8FF;
  border: 1px solid rgba(0,102,255,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.hero-trust span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 8px 0;
}
.stat:last-child { border-right: none; }
.stat strong {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.bg-light { background: var(--gray-light); }
.bg-dark { background: var(--dark-2); }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.55); }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
}
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ===== INTEGRATIONS ===== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.integration-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.25s;
}
.integration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.int-logo {
  width: 60px; height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
  letter-spacing: 0.5px;
}
.qne { background: linear-gradient(135deg, #0066FF, #0040CC); }
.lhdn { background: linear-gradient(135deg, #CC0000, #990000); }
.amadeus { background: linear-gradient(135deg, #00C9A7, #009980); }
.ipay { background: linear-gradient(135deg, #FF6B35, #CC4A1A); }
.autocount { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.sms { background: linear-gradient(135deg, #F59E0B, #D97706); }

.integration-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.integration-card p { font-size: 13px; color: var(--gray); }

/* ===== WHY SECTION ===== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  line-height: 1.15;
}
.why-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.why-list { margin-bottom: 36px; }
.why-list li {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.why-list li:last-child { border-bottom: none; }

/* Dashboard Mockup */
.dashboard-mockup {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.mock-bar {
  background: #1a2035;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}
.mock-bar span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-content { padding: 24px; }
.mock-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.mock-stat {
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.mock-stat strong { font-size: 22px; font-weight: 800; color: white; }
.mock-stat small { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.mock-stat.blue { background: rgba(0,102,255,0.2); border: 1px solid rgba(0,102,255,0.3); }
.mock-stat.green { background: rgba(0,201,167,0.2); border: 1px solid rgba(0,201,167,0.3); }
.mock-stat.orange { background: rgba(255,107,53,0.2); border: 1px solid rgba(255,107,53,0.3); }
.mock-stat.purple { background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.3); }
.mock-chart {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-top: 12px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.chart-bar:hover { opacity: 1; }
.mock-label { display: block; text-align: center; color: rgba(255,255,255,0.35); font-size: 11px; margin-top: 8px; }

/* ===== MODULES LIST ===== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.module-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
}
.module-item:hover {
  background: rgba(0,102,255,0.15);
  border-color: rgba(0,102,255,0.4);
  color: white;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #E84E1A);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.contact-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.contact-icon { font-size: 20px; }

/* Form */
.contact-form {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: white;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,102,255,0.1); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 12px; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.08);
}
.pricing-card.vip {
  background: linear-gradient(160deg, #0A0E1A, #0D1B3E);
  border-color: rgba(0,201,167,0.4);
}
.pricing-card.vip h3,
.pricing-card.vip .pricing-sub,
.pricing-card.vip .pricing-users { color: rgba(255,255,255,0.9) !important; }
.pricing-card.vip .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-card.vip .pricing-features li.yes::before { color: var(--secondary); }
.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}
.trial-badge { background: rgba(0,201,167,0.12); color: var(--secondary); border: 1px solid rgba(0,201,167,0.3); }
.popular-badge { background: rgba(0,102,255,0.1); color: var(--primary); border: 1px solid rgba(0,102,255,0.25); }
.vip-badge { background: rgba(0,201,167,0.15); color: var(--secondary); border: 1px solid rgba(0,201,167,0.3); }

.pricing-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.pricing-sub { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.pricing-price {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}
.price-rm { font-size: 16px; font-weight: 700; color: var(--gray); padding-bottom: 6px; }
.price-amount { font-size: 48px; font-weight: 900; color: var(--dark); letter-spacing: -2px; }
.price-period { font-size: 13px; color: var(--gray); padding-bottom: 8px; margin-left: 2px; }
.vip-price { align-items: center; }
.price-custom { font-size: 24px; font-weight: 800; color: var(--secondary); }
.pricing-users {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,102,255,0.08);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 20px;
  width: fit-content;
}
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { font-size: 12px; flex-shrink: 0; }
.pricing-features li.yes::before { content: '✓'; color: var(--secondary); font-weight: 700; }
.pricing-features li.no::before { content: '✕'; color: #CBD5E0; }
.pricing-features li.no { color: #CBD5E0; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 40px;
  padding: 16px 24px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
}

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== AI SECTION ===== */
.ai-section {
  background: linear-gradient(180deg, #06091a 0%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.ai-section .section-header { margin-bottom: 56px; }
.ai-section .section-header h2 {
  color: var(--white);
  font-size: clamp(30px, 4.5vw, 48px);
}
.ai-section .section-header p {
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto;
}

.ai-label {
  display: inline-block;
  background: rgba(0,102,255,0.15);
  color: #6BA8FF;
  border: 1px solid rgba(0,102,255,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ai-gradient {
  background: linear-gradient(90deg, #4d9fff, #00C9A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards grid */
.ai-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ai-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-card:hover {
  border-color: rgba(0,102,255,0.35);
  background: rgba(0,102,255,0.04);
}

.ai-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.ai-card__icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.ai-card__body { flex: 1; }

.ai-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.25);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.ai-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ai-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.ai-bullets {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-bullets li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
}

.ai-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Chat mockup */
.ai-chat {
  width: 300px;
  flex-shrink: 0;
  background: #0d1324;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  align-self: center;
}

.chat-header {
  background: rgba(0,102,255,0.15);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.chat-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.chat-header strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.chat-online {
  font-size: 11px;
  color: var(--secondary);
}

.chat-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  font-size: 12px;
  line-height: 1.55;
  padding: 10px 13px;
  border-radius: 12px;
  max-width: 90%;
}

.chat-msg.user {
  background: rgba(0,102,255,0.25);
  color: rgba(255,255,255,0.85);
  align-self: flex-end;
  border-radius: 12px 12px 3px 12px;
}

.chat-msg.bot {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  align-self: flex-start;
  border-radius: 12px 12px 12px 3px;
}

.chat-msg.bot strong { color: white; }

/* Weather alerts */
.ai-alert-demo {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 12px;
}

.alert-item span:first-child { font-size: 18px; flex-shrink: 0; }

.alert-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.alert-item small { color: inherit; opacity: 0.75; line-height: 1.4; }

.alert-warn {
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.25);
  color: #ffd866;
}

.alert-ok {
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.25);
  color: #5ee8ce;
}

.alert-info {
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.25);
  color: #7ab8ff;
}

/* Price comparison */
.price-comparison {
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}

.price-row:last-child { border-bottom: none; }

.header-row {
  background: rgba(255,255,255,0.04);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.price-best { color: var(--secondary); font-weight: 700; font-size: 13px; }
.price-save { color: #7ab8ff; font-weight: 600; font-size: 12px; }

/* Journey timeline */
.journey-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  justify-content: center;
}

.journey-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 20px;
}

.journey-step:last-child { padding-bottom: 0; }

.journey-step:not(:last-child) .journey-dot::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 10px;
  width: 1px;
  height: calc(100% - 8px);
  background: rgba(255,255,255,0.1);
}

.journey-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  border: 2px solid;
}

.journey-dot.confirmed { background: rgba(0,201,167,0.2); border-color: var(--secondary); }
.journey-dot.reminder  { background: rgba(255,193,7,0.2); border-color: #ffc107; }
.journey-dot.active    { background: rgba(0,102,255,0.3); border-color: var(--primary); }
.journey-dot.travelling{ background: rgba(124,58,237,0.2); border-color: #7c3aed; }
.journey-dot.home      { background: rgba(0,201,167,0.2); border-color: var(--secondary); }

.journey-content strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.journey-content p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
}

/* Bottom strip */
.ai-bottom-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ai-strip-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ai-strip-item strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.ai-strip-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.ai-bottom-strip .btn { margin-left: auto; }

/* AI section responsive */
@media (max-width: 1024px) {
  .ai-card--wide { flex-direction: column; }
  .ai-chat { width: 100%; }
}

@media (max-width: 768px) {
  .ai-cards { grid-template-columns: 1fr; }
  .ai-card--wide { grid-column: span 1; }
  .ai-bottom-strip { gap: 24px; }
  .ai-bottom-strip .btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* ===== UNIFIED MESSAGING ===== */
.umsg-section {
  background: #f8faff;
  position: relative;
}

.umsg-gradient {
  background: linear-gradient(90deg, #0066FF, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Channel pills */
.channel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 64px;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid;
}

.ch-icon { font-size: 15px; display: flex; align-items: center; }

.channel-pill.wa  { background: #e8f9f0; color: #1a7a4a; border-color: #a8dfc0; }
.channel-pill.tg  { background: #e8f4fd; color: #0088cc; border-color: #a0cde8; }
.channel-pill.wc  { background: #eaf7ea; color: #07c160; border-color: #a0dca0; }
.channel-pill.fb  { background: #e8eeff; color: #1877f2; border-color: #a8bef8; }
.channel-pill.ig  { background: #fce8f4; color: #c13584; border-color: #f0a8d8; }
.channel-pill.ln  { background: #e8fce8; color: #00b300; border-color: #a0dca0; }
.channel-pill.vb  { background: #f0e8ff; color: #7360f2; border-color: #c8b0f8; }
.channel-pill.em  { background: #fff4e8; color: #e07020; border-color: #f0c890; }
.channel-pill.sms-pill { background: #f0f0f0; color: #444; border-color: #ccc; }
.channel-pill.voip { background: #e8f0ff; color: #0044cc; border-color: #99bbff; }

/* Main layout */
.umsg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}

/* Inbox mockup */
.inbox-mockup {
  background: #0d1324;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 90px;
}

.inbox-topbar {
  background: #161e35;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.inbox-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
}

.inbox-badge {
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

.inbox-list { padding: 8px 0; }

.inbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.inbox-item:hover { background: rgba(255,255,255,0.04); }
.inbox-item.unread { background: rgba(0,102,255,0.06); }

.inbox-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.wa-bg   { background: #25d366; }
.tg-bg   { background: #0088cc; }
.em-bg   { background: #e07020; }
.ig-bg   { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wc-bg   { background: #07c160; }
.voip-bg { background: #0066ff; }

.inbox-body { flex: 1; min-width: 0; }

.inbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.inbox-meta strong { font-size: 12px; font-weight: 700; color: white; }
.inbox-meta span   { font-size: 10px; color: rgba(255,255,255,0.35); }

.inbox-body p {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-item.unread .inbox-body p { color: rgba(255,255,255,0.7); }

.inbox-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CRM panel inside mockup */
.inbox-crm {
  background: #0a1020;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
}

.crm-header {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.crm-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.crm-tag {
  font-size: 9px;
  font-weight: 700;
  background: rgba(0,201,167,0.15);
  color: var(--secondary);
  border: 1px solid rgba(0,201,167,0.3);
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.crm-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.crm-row {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px 10px;
}

.crm-row span  { display: block; font-size: 9px; color: rgba(255,255,255,0.3); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.crm-row strong { font-size: 11px; color: white; font-weight: 600; }

/* Features list */
.umsg-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.umsg-feature {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.umsg-feature:last-child { border-bottom: none; }

.umsg-feature__icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #eef2ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.umsg-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.umsg-feature p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* Strip */
.umsg-strip {
  background: var(--dark);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.umsg-strip__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.umsg-strip__channels span:not(:last-of-type) {}

/* Responsive */
@media (max-width: 1024px) {
  .umsg-layout { grid-template-columns: 1fr; }
  .inbox-mockup { position: static; }
}

@media (max-width: 768px) {
  .channel-pills { gap: 8px; }
  .channel-pill { font-size: 12px; padding: 6px 12px; }
  .umsg-strip { flex-direction: column; align-items: flex-start; }
  .umsg-strip .btn { width: 100%; justify-content: center; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-size: 20px; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 280px; line-height: 1.6; }
.footer-links h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: white; }
.footer-powered {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 24px;
}
.powered-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.powered-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.powered-company {
  display: flex;
  align-items: center;
  gap: 10px;
}
.powered-company strong {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}
.powered-company span {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}
.powered-divider {
  color: rgba(255,255,255,0.12);
  font-size: 16px;
}
.powered-address {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-style: normal;
  line-height: 1.5;
}
.footer-bottom {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-reg { margin-top: 4px; }

@media (max-width: 768px) {
  .powered-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .powered-divider { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(4, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hamburger { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .features-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-cta { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px; }
}
