/**
 * Soft Futura - WhatsApp CRM & Automation Page Styles
 * File: whatsapp-crm.css
 */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

/* ==============================================================================
   1. ROOT VARIABLES & THEME TOKENS
   ============================================================================== */
:root {
  --wa-green: #22c55e;
  --wa-green-hover: #16a34a;
  --wa-green-dark: #075e54;
  --wa-green-bubble: #d9fdd3;
  --wa-green-badge: #ecfdf5;
  --wa-blue-primary: #0070f3;
  --wa-blue-hover: #005bb5;
  --wa-blue-light: #eff6ff;
  --wa-blue-strip: #f0f7ff;
  --wa-navy-hero: #040d21;
  --wa-navy-card: #071530;
  --wa-navy-dark: #020713;
  --wa-border: #e2e8f0;
  --wa-border-light: #f1f5f9;
  --wa-border-dark: rgba(255, 255, 255, 0.12);
  --wa-text-dark: #0f172a;
  --wa-text-muted: #64748b;
  --wa-text-light: #94a3b8;
  --wa-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --wa-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --wa-font-script: 'Caveat', cursive, sans-serif;
}

/* Page Base */
body.wa-page,
.wa-page,
main#main-content {
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  color: var(--wa-text-dark);
  font-family: var(--wa-font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* All Sections Full Width 100% */
.wa-page section,
.wa-hero,
.wa-benefits-strip,
.wa-about,
.wa-features,
.wa-industries,
.wa-demo-faq-section,
.wa-final-cta {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.wa-container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

/* ==============================================================================
   2. HERO SECTION
   ============================================================================== */
.wa-hero {
  position: relative;
  background-color: var(--wa-navy-hero);
  background-image:
    radial-gradient(circle at 75% 35%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 15% 85%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #030a1a 0%, #040d21 50%, #030a1a 100%);
  padding-top: 130px;
  padding-bottom: 70px;
  color: #ffffff;
  overflow: hidden;
}

.wa-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 40px;
  align-items: center;
}

.wa-hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 16px;
}

.wa-hero-title {
  font-family: var(--wa-font-heading);
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.wa-text-green {
  color: var(--wa-green);
  text-shadow: 0 0 24px rgba(34, 197, 94, 0.35);
}

.wa-hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0 0 32px 0;
  max-width: 500px;
}

.wa-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.wa-btn-primary {
  background: var(--wa-blue-primary);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0, 112, 243, 0.45);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.wa-btn-primary:hover {
  background: var(--wa-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.6);
}

.wa-btn-brochure {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.wa-btn-brochure:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.wa-btn-brochure svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* 4 Capabilities row */
.wa-hero-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wa-indicator-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-indicator-icon {
  width: 32px;
  height: 32px;
  color: #38bdf8;
  display: flex;
  align-items: center;
}

.wa-indicator-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.wa-indicator-text {
  font-size: 0.775rem;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.35;
  margin: 0;
}

/* ==============================================================================
   HERO VISUAL: LAPTOP + SMARTPHONE MOCKUP
   ============================================================================== */
.wa-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 480px;
}

.wa-mockups-container {
  position: relative;
  width: 100%;
  max-width: 720px;
}

/* Ambient backlight glow */
.wa-mockups-container::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 65%;
  height: 70%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(34, 197, 94, 0.15) 50%, transparent 75%);
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

/* 1. MacBook Laptop Frame */
.wa-macbook-wrap {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 630px;
}

.wa-laptop-lid {
  background: #0a0e1a;
  border-radius: 14px 14px 2px 2px;
  padding: 6px 7px 0 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
  width: 92%;
  margin: 0 auto;
  box-sizing: border-box;
}

.wa-lid-top-bezel {
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0e1a;
}

.wa-camera-dot {
  width: 4px;
  height: 4px;
  background: #1e293b;
  border-radius: 50%;
  box-shadow: inset 0 0 1px #64748b;
}

.wa-lid-bottom-bezel {
  height: 8px;
  background: #0a0e1a;
  border-radius: 0 0 2px 2px;
}

/* Laptop Inner Screen */
.wa-crm-screen {
  display: grid;
  grid-template-columns: 88px 165px 1fr;
  height: 345px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.72rem;
  overflow: hidden;
}

/* Screen Left Sidebar */
.wa-screen-sidebar {
  background: #0b192e;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  padding: 10px 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.wa-brand-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.wa-brand-badge {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--wa-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wa-sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wa-sidebar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.15s;
}

.wa-sidebar-item.active {
  background: var(--wa-blue-primary);
  color: #ffffff;
}

.wa-sidebar-item svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Screen Middle Chat List */
.wa-chat-list-panel {
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wa-chat-search {
  padding: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.wa-search-box {
  background: #f1f5f9;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.6rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-search-box svg {
  width: 11px;
  height: 11px;
  stroke: #94a3b8;
}

.wa-chats-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.wa-chat-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-bottom: 1px solid #f8fafc;
  cursor: pointer;
  transition: background 0.15s;
}

.wa-chat-entry.active {
  background: #eff6ff;
  border-left: 3px solid var(--wa-blue-primary);
}

.wa-chat-avatar {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.wa-online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa-green);
  border: 1.5px solid #ffffff;
}

.wa-chat-info {
  flex: 1;
  min-width: 0;
}

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

.wa-chat-name {
  font-size: 0.62rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-chat-time {
  font-size: 0.52rem;
  color: #94a3b8;
}

.wa-chat-snippet {
  font-size: 0.55rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.wa-chat-badge {
  background: var(--wa-green);
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 9999px;
  flex-shrink: 0;
}

/* Screen Right Conversation Panel */
.wa-chat-main-view {
  background: #efeae2;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wa-chat-header {
  background: #f0f2f5;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
}

.wa-chat-header-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-chat-header-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
}

.wa-chat-header-sub {
  font-size: 0.55rem;
  color: #64748b;
}

.wa-assignee-tag {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.52rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 9999px;
}

/* Message stream */
.wa-messages-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.wa-msg {
  max-width: 82%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.6rem;
  line-height: 1.35;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wa-msg.inbound {
  align-self: flex-start;
  background: #ffffff;
  color: #0f172a;
  border-top-left-radius: 2px;
}

.wa-msg.outbound {
  align-self: flex-end;
  background: var(--wa-green-bubble);
  color: #0f172a;
  border-top-right-radius: 2px;
}

.wa-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 0.5rem;
  color: #64748b;
  margin-top: 3px;
}

.wa-msg-checks {
  color: #38bdf8;
  font-size: 0.55rem;
}

.wa-doc-attachment {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 5px 8px;
  margin-top: 5px;
}

.wa-doc-icon {
  width: 18px;
  height: 18px;
  color: #dc2626;
}

.wa-doc-name {
  font-size: 0.58rem;
  font-weight: 700;
  color: #0f172a;
}

/* Laptop Metallic Base & Shadow */
.wa-laptop-metallic-base {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  width: 100%;
}

.wa-base-top-edge {
  height: 4px;
  background: linear-gradient(90deg, #334155 0%, #64748b 20%, #cbd5e1 50%, #64748b 80%, #334155 100%);
  border-radius: 2px 2px 0 0;
}

.wa-base-body {
  height: 12px;
  background: linear-gradient(180deg, #94a3b8 0%, #cbd5e1 30%, #64748b 75%, #334155 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
  position: relative;
  display: flex;
  justify-content: center;
}

.wa-base-thumb-notch {
  width: 68px;
  height: 4.5px;
  background: #1e293b;
  border-radius: 0 0 5px 5px;
}

.wa-laptop-desk-shadow {
  position: absolute;
  bottom: -10px;
  left: 4%;
  width: 92%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 75%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

/* 2. Smartphone Mockup beside laptop */
.wa-phone-hero {
  position: absolute;
  right: -8px;
  bottom: 12px;
  z-index: 4;
  width: 140px;
  background: #0f172a;
  border: 4px solid #1e293b;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 20px rgba(34, 197, 94, 0.2);
  overflow: hidden;
  padding: 5px 4px;
  box-sizing: border-box;
}

.wa-phone-speaker {
  width: 28px;
  height: 3px;
  background: #334155;
  border-radius: 9999px;
  margin: 2px auto 5px;
}

.wa-phone-hero-screen {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 8px 14px;
  text-align: center;
  height: auto;
  box-sizing: border-box;
}

.wa-phone-icon-center {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.wa-phone-icon-center svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.wa-phone-hero-text {
  text-align: center;
  font-family: var(--wa-font-heading);
  font-size: 0.825rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 12px;
}

.wa-phone-hero-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--wa-green);
  font-weight: 700;
  margin-top: 2px;
}

.wa-phone-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-phone-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #1e293b;
}

.wa-bullet-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-bullet-check svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  stroke-width: 3;
}

/* ==============================================================================
   3. BENEFITS STRIP
   ============================================================================== */
.wa-benefits-strip {
  background-color: var(--wa-blue-strip);
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
  padding: 28px 0;
}

.wa-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wa-benefit-col {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  color: var(--wa-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

.wa-benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.wa-benefit-info {
  display: flex;
  flex-direction: column;
}

.wa-benefit-title {
  font-family: var(--wa-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

.wa-benefit-sub {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

/* ==============================================================================
   4. ABOUT OUR WHATSAPP CRM (Two Column: Interactive Phone + Copy)
   ============================================================================== */
.wa-about {
  padding: 95px 0;
  background-color: #ffffff;
  position: relative;
}

.wa-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

/* Left: Phone Mockup with 6 floating feature badges */
.wa-about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.wa-phone-wrapper {
  position: relative;
  width: 280px;
  background: #ffffff;
  border: 7px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25),
              0 0 35px rgba(37, 99, 235, 0.08);
  overflow: hidden;
  z-index: 2;
}

.wa-phone-camera-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background: #1e293b;
  border-radius: 9999px;
  z-index: 5;
}

.wa-phone-screen {
  background: #efeae2;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.wa-app-topbar {
  background: var(--wa-green-dark);
  color: #ffffff;
  padding: 24px 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-app-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--wa-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

.wa-app-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.wa-app-status {
  font-size: 0.6rem;
  color: #a7f3d0;
}

.wa-app-chat-body {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.wa-chat-bubble {
  max-width: 86%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wa-chat-bubble.customer {
  align-self: flex-start;
  background: #ffffff;
  color: #0f172a;
  border-top-left-radius: 2px;
}

.wa-chat-bubble.bot {
  align-self: flex-end;
  background: var(--wa-green-bubble);
  color: #0f172a;
  border-top-right-radius: 2px;
}

.wa-bot-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.wa-bot-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--wa-blue-primary);
  text-align: center;
  cursor: pointer;
}

.wa-app-input-bar {
  background: #f0f2f5;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-input-fake {
  flex: 1;
  background: #ffffff;
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 0.68rem;
  color: #94a3b8;
}

.wa-mic-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-mic-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Floating Badges */
.wa-floating-badge {
  position: absolute;
  z-index: 3;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-size: 0.775rem;
  font-weight: 700;
  color: #0f172a;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.wa-floating-badge:hover {
  transform: translateY(-4px);
}

.wa-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-badge-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.wa-badge-green { background: #dcfce7; color: #16a34a; }
.wa-badge-blue { background: #eff6ff; color: #2563eb; }
.wa-badge-purple { background: #faf5ff; color: #9333ea; }
.wa-badge-orange { background: #fff7ed; color: #ea580c; }
.wa-badge-cyan { background: #ecfeff; color: #0891b2; }

/* Positions of 6 Floating Badges */
.badge-pos-1 { top: 40px; left: 0px; }
.badge-pos-2 { top: 190px; left: -20px; }
.badge-pos-3 { bottom: 60px; left: -10px; }

.badge-pos-4 { top: 60px; right: 0px; }
.badge-pos-5 { top: 210px; right: -15px; }
.badge-pos-6 { bottom: 80px; right: -10px; }

/* Right Column: Copy */
.wa-about-content {
  position: relative;
}

.wa-about-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wa-blue-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.wa-about-heading {
  font-family: var(--wa-font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.wa-about-desc {
  font-size: 1.025rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 28px 0;
}

.wa-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.wa-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.wa-check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--wa-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-check-circle svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 3;
}

/* Handwritten script badge */
.wa-handwritten-badge {
  position: absolute;
  right: 15px;
  bottom: 25px;
  font-family: var(--wa-font-script);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1e3a8a;
  transform: rotate(-4deg);
  text-align: center;
  pointer-events: none;
}

.wa-handwritten-badge svg {
  display: block;
  margin: 2px auto 0;
  width: 110px;
  height: 16px;
  stroke: #2563eb;
  stroke-width: 3;
  fill: none;
}

/* ==============================================================================
   5. KEY FEATURES (8-Card Grid)
   ============================================================================== */
.wa-features {
  padding: 95px 0;
  background-color: var(--wa-border-light);
}

.wa-section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.wa-section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wa-blue-primary);
  margin-bottom: 10px;
  display: inline-block;
}

.wa-section-title {
  font-family: var(--wa-font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

.wa-section-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.wa-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.wa-feature-card {
  background: #ffffff;
  border: 1px solid var(--wa-border);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.wa-feature-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.09);
}

.wa-feature-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wa-feature-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.wa-feature-title {
  font-family: var(--wa-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.wa-feature-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Feature Icon Colors */
.icon-bg-green { background: #dcfce7; color: #16a34a; }
.icon-bg-blue { background: #eff6ff; color: #2563eb; }
.icon-bg-emerald { background: #ecfdf5; color: #059669; }
.icon-bg-orange { background: #fff7ed; color: #ea580c; }
.icon-bg-purple { background: #faf5ff; color: #9333ea; }
.icon-bg-navy { background: #e2e8f0; color: #0f172a; }
.icon-bg-indigo { background: #eef2ff; color: #4f46e5; }
.icon-bg-teal { background: #f0fdfa; color: #0d9488; }

/* ==============================================================================
   6. INDUSTRIES (Built for Every Business)
   ============================================================================== */
.wa-industries {
  padding: 90px 0;
  background-color: #ffffff;
  position: relative;
}

.wa-industries-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.wa-industries-left {
  max-width: 600px;
}

.wa-script-right {
  font-family: var(--wa-font-script);
  font-size: 1.85rem;
  font-weight: 700;
  color: #1e3a8a;
  transform: rotate(-3deg);
  text-align: right;
  line-height: 1.1;
  pointer-events: none;
}

.wa-script-right svg {
  display: block;
  margin: 4px 0 0 auto;
  width: 120px;
  height: 16px;
  stroke: #2563eb;
  stroke-width: 3;
  fill: none;
}

.wa-industries-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.wa-industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.25s ease;
  cursor: pointer;
}

.wa-industry-item:hover {
  background: #ffffff;
  border-color: #bfdbfe;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.wa-industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--wa-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.wa-industry-item:hover .wa-industry-icon {
  background: var(--wa-blue-primary);
  color: #ffffff;
}

.wa-industry-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.wa-industry-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

/* ==============================================================================
   7. DEMO FORM + TESTIMONIALS + FAQ (Two-Column Section)
   ============================================================================== */
.wa-demo-faq-section {
  padding: 95px 0;
  background-color: var(--wa-border-light);
}

.wa-demo-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left: Dark Navy Demo Form Card */
.wa-form-card {
  background: var(--wa-navy-card);
  border: 1px solid var(--wa-border-dark);
  border-radius: 20px;
  padding: 40px 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.wa-form-title {
  font-family: var(--wa-font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.wa-form-subtitle {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0 0 26px 0;
}

.wa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.wa-form-group {
  margin-bottom: 14px;
}

.wa-form-input,
.wa-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  font-family: var(--wa-font-body);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.wa-form-input:focus,
.wa-form-textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.wa-form-textarea {
  min-height: 90px;
  resize: vertical;
}

.wa-form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--wa-blue-primary);
  color: #ffffff;
  font-size: 0.975rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 112, 243, 0.4);
  transition: all 0.25s ease;
  margin-top: 6px;
}

.wa-form-submit-btn:hover {
  background: var(--wa-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.55);
}

.wa-form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 14px;
  margin-bottom: 0;
}

/* Right Column: Client Success Stories & FAQ */
.wa-right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Testimonials Top Bar */
.wa-stories-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.wa-stories-title {
  font-family: var(--wa-font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.wa-stories-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin: 2px 0 0;
}

.wa-carousel-btns {
  display: flex;
  gap: 8px;
}

.wa-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.wa-arrow-btn:hover {
  background: var(--wa-blue-primary);
  border-color: var(--wa-blue-primary);
  color: #ffffff;
}

/* Testimonial Cards Grid */
.wa-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wa-testimonial-card {
  background: #ffffff;
  border: 1px solid var(--wa-border);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.wa-quote-mark {
  color: var(--wa-blue-primary);
  font-size: 1.6rem;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.wa-testimonial-text {
  font-size: 0.825rem;
  line-height: 1.55;
  color: #334155;
  margin: 0 0 16px 0;
  flex: 1;
}

.wa-author-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.wa-author-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wa-author-role {
  font-size: 0.725rem;
  color: #64748b;
}

/* FAQ Section */
.wa-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wa-faq-title {
  font-family: var(--wa-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.wa-faq-all-link {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--wa-blue-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wa-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-faq-item {
  background: #ffffff;
  border: 1px solid var(--wa-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.wa-faq-item.is-active {
  border-color: #93c5fd;
}

.wa-faq-btn {
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--wa-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  gap: 12px;
}

.wa-faq-chevron {
  width: 16px;
  height: 16px;
  stroke: #64748b;
  stroke-width: 2.5;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.wa-faq-item.is-active .wa-faq-chevron {
  transform: rotate(180deg);
  stroke: var(--wa-blue-primary);
}

.wa-faq-answer {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.825rem;
  line-height: 1.6;
  color: #475569;
}

.wa-faq-item.is-active .wa-faq-answer {
  display: block;
}

/* ==============================================================================
   8. FINAL CTA (Full-Width Dark Navy)
   ============================================================================== */
.wa-final-cta {
  background-color: var(--wa-navy-dark);
  background-image:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 65%),
    linear-gradient(180deg, #020713 0%, #040e24 100%);
  padding: 42px 0;
  color: #ffffff;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.wa-cta-text-wrap {
  max-width: 680px;
}

.wa-cta-eyebrow {
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 6px;
  display: inline-block;
}

.wa-cta-heading {
  font-family: var(--wa-font-heading);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.wa-cta-desc {
  font-size: 0.925rem;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}

.wa-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.wa-cta-actions .wa-btn-primary {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.wa-cta-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.wa-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ==============================================================================
   9. RESPONSIVE BREAKPOINTS (Mobile, Tablet, Desktop)
   ============================================================================== */
@media (max-width: 1199px) {
  .wa-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wa-hero-visual {
    justify-content: center;
  }

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

  .wa-industries-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .wa-hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .wa-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .wa-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .wa-hero-actions {
    justify-content: center;
  }

  /* Keep mobile hero clean - hide heavy device mockup on smaller screens */
  .wa-hero-visual {
    display: none !important;
  }

  .wa-hero-indicators {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .wa-indicator-item {
    align-items: center;
  }

  .wa-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wa-about-content {
    text-align: center;
  }

  .wa-checklist {
    justify-content: center;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .wa-handwritten-badge {
    position: static;
    margin-top: 24px;
    transform: none;
  }

  .wa-demo-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wa-cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .wa-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .wa-final-cta {
    padding: 34px 0;
  }

  /* Benefits Strip: 2x2 grid */
  .wa-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .wa-benefit-col {
    padding: 6px;
  }

  .wa-benefit-icon {
    width: 38px;
    height: 38px;
  }

  .wa-benefit-icon svg {
    width: 18px;
    height: 18px;
  }

  .wa-benefit-title {
    font-size: 0.85rem;
  }

  .wa-benefit-sub {
    font-size: 0.725rem;
  }

  /* Features: 2x2 grid on mobile */
  .wa-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wa-feature-card {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .wa-feature-icon-wrap {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .wa-feature-icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .wa-feature-title {
    font-size: 0.925rem;
    margin-bottom: 6px;
  }

  .wa-feature-desc {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* Industries */
  .wa-industries-header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .wa-script-right {
    text-align: center;
    transform: none;
  }

  .wa-script-right svg {
    margin: 4px auto 0;
  }

  .wa-industries-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .wa-industry-item {
    padding: 12px 6px;
  }

  .wa-industry-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .wa-industry-icon svg {
    width: 18px;
    height: 18px;
  }

  .wa-industry-label {
    font-size: 0.725rem;
  }

  /* Form & Testimonials */
  .wa-form-card {
    padding: 28px 20px;
  }

  .wa-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wa-testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* About Phone floating cards - scale comfortably */
  .wa-about-visual {
    transform: scale(0.9);
  }

  .badge-pos-1 { left: -10px; }
  .badge-pos-2 { left: -20px; }
  .badge-pos-3 { left: -10px; }
  .badge-pos-4 { right: -10px; }
  .badge-pos-5 { right: -20px; }
  .badge-pos-6 { right: -10px; }
}

@media (max-width: 480px) {
  .wa-hero-title {
    font-size: 2.15rem;
  }

  .wa-about-visual {
    transform: scale(0.8);
    margin: -30px 0;
  }

  .wa-industries-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .wa-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .wa-btn-primary,
  .wa-btn-brochure,
  .wa-cta-btn-outline {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
