/* ==========================================================================
   LION AUTOMATIONS - DESIGN SYSTEM & MASTER STYLESHEET
   Matches Desktop Mockup and Mobile 8-Screen Mockup
   ========================================================================== */

/* --- 1. CSS VARIABLES & DESIGN TOKENS --- */
:root {
  /* Color Palette */
  --bg-black: #030712;
  --bg-deep: #050b17;
  --bg-surface: #0a1324;
  --bg-card: rgba(10, 20, 38, 0.7);
  --bg-card-hover: rgba(14, 28, 54, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Primary Brand Colors */
  --blue-primary: #0077ff;
  --blue-light: #0099ff;
  --blue-hover: #0062d6;
  --cyan-neon: #00d2ff;
  --cyan-bright: #38bdf8;
  --orange-lion: #ff7700;

  /* Borders & Glows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(0, 140, 255, 0.16);
  --border-card-hover: rgba(0, 166, 255, 0.45);
  --glow-blue: 0 0 25px rgba(0, 119, 255, 0.4);
  --glow-cyan: 0 0 30px rgba(0, 210, 255, 0.35);
  --glow-btn: 0 4px 20px rgba(0, 119, 255, 0.45);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-light-blue: #7dd3fc;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* --- 2. BASE RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- 3. AMBIENT BACKGROUND GLOWS --- */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(130px);
  opacity: 0.35;
  will-change: transform;
}

.glow-top-left {
  top: -15%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #0055ff 0%, rgba(0, 119, 255, 0) 70%);
}

.glow-top-right {
  top: 5%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #0077ff 0%, rgba(0, 210, 255, 0.05) 65%);
}

.glow-middle-center {
  top: 45%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0044bb 0%, rgba(0, 85, 255, 0) 70%);
  opacity: 0.25;
}

.glow-bottom-center {
  bottom: 5%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0066ff 0%, rgba(0, 210, 255, 0) 75%);
  opacity: 0.3;
}

/* --- 4. CONTAINER & UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-highlight {
  background: linear-gradient(135deg, #0084ff 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.flex-accent {
  color: #38bdf8;
  font-weight: 600;
}

/* --- 5. BUTTON STYLES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0077ff 0%, #0060db 100%);
  color: #ffffff;
  box-shadow: var(--glow-btn);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0088ff 0%, #006ce6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 119, 255, 0.65);
}

.btn-glass {
  background: rgba(10, 20, 36, 0.6);
  border: 1px solid rgba(0, 140, 255, 0.35);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 180, 255, 0.7);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* --- 6. SITE HEADER / NAVBAR --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(3, 7, 18, 0.92);
  border-bottom-color: rgba(0, 140, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 119, 255, 0.4));
  transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo {
  transform: scale(1.05);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.brand-highlight {
  color: #0077ff;
}

/* Desktop Nav */
.desktop-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0077ff;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* Mobile Hamburger Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* --- 7. MOBILE DRAWER MENU (Mockup Mobile Screen 7) --- */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 380px;
  height: 100vh;
  background: #040915;
  border-left: 1px solid rgba(0, 140, 255, 0.2);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 115;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.is-open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-main-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #38bdf8;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 140, 255, 0.15);
}

.drawer-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 12px;
}

.drawer-sublinks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-sublinks a {
  font-size: 0.95rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-sublinks a span {
  color: #0077ff;
  font-weight: bold;
}

.drawer-sublinks a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.drawer-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.drawer-plat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 140, 255, 0.15);
  border-radius: 6px;
  padding: 6px 4px;
  font-size: 0.75rem;
  text-align: center;
  color: #cbd5e1;
  font-weight: 500;
}

.drawer-plat-pill.flex-pill {
  background: #0077ff;
  color: #ffffff;
  font-weight: 700;
}

.drawer-cta-wrap {
  margin-top: 8px;
}

.drawer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-socials a {
  color: #94a3b8;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-socials a:hover {
  color: #0077ff;
  border-color: #0077ff;
}

.drawer-copyright {
  font-size: 0.75rem;
  text-align: center;
  color: #64748b;
}

/* --- 8. HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 60px 0 90px;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 119, 255, 0.1);
  border: 1px solid rgba(0, 140, 255, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan-neon);
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--cyan-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-neon);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Trust Bar / Hero Pillars */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #cbd5e1;
}

.trust-icon {
  color: #0077ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Right: Mockup Showcase */
.hero-visual {
  position: relative;
  width: 100%;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
}

.mockup-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.35) 0%, rgba(0, 210, 255, 0.1) 50%, rgba(3, 7, 18, 0) 75%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Laptop Mockup */
.device-laptop {
  position: absolute;
  left: 0;
  top: 20px;
  width: 440px;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.laptop-screen {
  background: #090e1a;
  border-radius: 12px 12px 2px 2px;
  border: 2px solid #1e293b;
  box-shadow: inset 0 0 15px rgba(0, 140, 255, 0.2);
  padding: 8px;
  aspect-ratio: 16 / 10;
}

.laptop-base {
  height: 12px;
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border-radius: 0 0 8px 8px;
  position: relative;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #0f172a;
  border-radius: 0 0 4px 4px;
}

.dash-window {
  height: 100%;
  background: #060b17;
  border-radius: 6px;
  border: 1px solid rgba(0, 140, 255, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dash-header {
  height: 28px;
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #10b981; }

.dash-status-pill {
  font-size: 0.65rem;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.pulse-indicator {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: pulseDot 1.5s infinite;
}

.dash-body {
  flex: 1;
  display: flex;
  padding: 10px;
  gap: 12px;
}

.dash-sidebar {
  width: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.sidebar-item {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.sidebar-item.active {
  background: #0077ff;
}

.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-top-metrics {
  display: flex;
  gap: 10px;
}

.mini-metric {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 140, 255, 0.12);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
}

.m-label {
  font-size: 0.58rem;
  color: #64748b;
}

.m-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #38bdf8;
}

.dash-chart {
  flex: 1;
  background: rgba(0, 119, 255, 0.04);
  border: 1px solid rgba(0, 140, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 10px 8px;
  gap: 8px;
}

.chart-bar {
  width: 16px;
  height: var(--h);
  background: rgba(0, 140, 255, 0.35);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

.chart-bar.active-bar {
  background: linear-gradient(180deg, #00d2ff 0%, #0066ff 100%);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* Smartphone Mockup */
.device-smartphone {
  position: absolute;
  right: 40px;
  top: 50px;
  width: 140px;
  height: 270px;
  background: #080f1d;
  border: 3px solid #334155;
  border-radius: 24px;
  padding: 8px;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(0, 140, 255, 0.3);
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-screen {
  background: #030814;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(0, 140, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
}

.phone-notch {
  width: 40px;
  height: 4px;
  background: #1e293b;
  border-radius: 4px;
  margin-bottom: 20px;
}

.phone-status {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.status-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1.5px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.phone-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
}

.phone-sub {
  font-size: 0.55rem;
  color: #64748b;
}

.phone-metric-bars {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.p-fill {
  height: 100%;
  background: linear-gradient(90deg, #0077ff, #00e5ff);
  border-radius: 3px;
}

/* Floating Connected Integration Badges */
.floating-badge {
  position: absolute;
  background: rgba(8, 16, 33, 0.85);
  border: 1px solid rgba(0, 140, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 140, 255, 0.25);
  backdrop-filter: blur(8px);
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.floating-badge:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.6);
  border-color: #00d2ff;
}

.badge-flex {
  top: 0;
  left: 20px;
  padding: 6px 14px;
  background: #0077ff;
  border-color: #38bdf8;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  animation: floatOrb 5s ease-in-out infinite;
}

.badge-whatsapp {
  top: -15px;
  left: 170px;
  width: 40px;
  height: 40px;
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.4);
  animation: floatOrb 6s ease-in-out 1s infinite;
}

.badge-meta {
  top: -15px;
  right: 170px;
  width: 44px;
  height: 40px;
  color: #0081fb;
  border-color: rgba(0, 129, 251, 0.4);
  animation: floatOrb 5.5s ease-in-out 0.5s infinite;
}

.badge-insta {
  top: 5px;
  right: 10px;
  width: 40px;
  height: 40px;
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.4);
  animation: floatOrb 7s ease-in-out 1.5s infinite;
}

.badge-shopify {
  bottom: 80px;
  left: -20px;
  width: 42px;
  height: 42px;
  border-color: rgba(149, 191, 71, 0.4);
  animation: floatOrb 6s ease-in-out 2s infinite;
}

.badge-tiktok {
  bottom: 10px;
  left: 25px;
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.3);
  animation: floatOrb 5.8s ease-in-out 0.8s infinite;
}

.badge-google {
  top: 90px;
  right: -25px;
  width: 42px;
  height: 42px;
  animation: floatOrb 6.5s ease-in-out 2.5s infinite;
}

.badge-woo {
  bottom: 60px;
  right: -20px;
  width: 46px;
  height: 38px;
  background: #7f54b3;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  border-color: #9d71d3;
  animation: floatOrb 5.2s ease-in-out 1.2s infinite;
}

.badge-n8n {
  bottom: 5px;
  right: 5px;
  padding: 6px 12px;
  background: #ea4c46;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.78rem;
  border-color: #ff706a;
  animation: floatOrb 6.2s ease-in-out 1.8s infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- 9. SECTION HEADERS --- */
.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan-neon);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
}

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

.section-action {
  margin-top: 24px;
}

/* Split Header (Plataformas) */
.section-header-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 48px;
}

.split-side-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- 10. SOLUTIONS SECTION (6 Cards) --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 140, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 119, 255, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 119, 255, 0.15);
  border: 1px solid rgba(0, 140, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .card-icon-wrap {
  background: #0077ff;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 119, 255, 0.6);
  transform: scale(1.05);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- 11. PLATFORMS SECTION --- */
.platforms-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: rgba(10, 20, 38, 0.6);
  border: 1px solid rgba(0, 140, 255, 0.2);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-height: 52px;
}

.platform-badge:hover {
  border-color: rgba(0, 210, 255, 0.6);
  background: rgba(14, 28, 54, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 119, 255, 0.3);
}

.platform-flex {
  background: #0077ff;
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(0, 119, 255, 0.45);
}

.platform-flex .plat-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.platform-flex:hover {
  background: #0088ff;
  box-shadow: 0 0 30px rgba(0, 119, 255, 0.7);
}

.platform-wa {
  color: #25d366;
}

.platform-meta {
  color: #0081fb;
}

.platform-ig {
  color: #e1306c;
}

.platform-tt {
  color: #ffffff;
}

.platform-woo {
  background: #7f54b3;
  border-color: #9d71d3;
}

.badge-woo-text {
  font-weight: 800;
  font-size: 1.1rem;
}

.platform-n8n {
  gap: 8px;
}

.n8n-nodes-icon {
  display: flex;
  gap: 3px;
  align-items: center;
}

.n8n-nodes-icon span {
  width: 6px;
  height: 6px;
  background: #ea4c46;
  border-radius: 50%;
}

.plat-n8n-name {
  color: #ea4c46;
  font-weight: 700;
}

.platform-more {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Mobile Highlight Banner (Mockup Screen 3 & 4) */
.mobile-highlight-banner {
  display: none;
  background: radial-gradient(circle at center, rgba(0, 119, 255, 0.25) 0%, rgba(5, 11, 23, 0.95) 75%);
  border: 1px solid rgba(0, 140, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-top: 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 119, 255, 0.2);
}

.banner-lion-crest {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 15px rgba(0, 119, 255, 0.6));
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.banner-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- 12. BENEFITS SECTION (4 Differential Cards) --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 119, 255, 0.2);
}

.benefit-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #0077ff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(0, 119, 255, 0.5);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon-box {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 119, 255, 0.8);
}

.benefit-info {
  flex: 1;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- 13. TESTIMONIALS SECTION --- */
.testimonials-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 20, 38, 0.8);
  border: 1px solid rgba(0, 140, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: #0077ff;
  border-color: #38bdf8;
  box-shadow: 0 0 15px rgba(0, 119, 255, 0.5);
}

.testimonials-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 119, 255, 0.2);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0077ff;
  box-shadow: 0 0 12px rgba(0, 119, 255, 0.4);
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

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

.testimonial-quote {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Testimonial Dots (Mobile) */
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots .dot.active {
  background: #0077ff;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 119, 255, 0.5);
}

/* --- 14. CTA BANNER (PRONTO PARA AUTOMATIZAR) --- */
.cta-banner-section {
  padding: 60px 0 90px;
}

.cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 18, 38, 0.95) 0%, rgba(3, 7, 18, 0.95) 100%);
  border: 1px solid rgba(0, 140, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 40px rgba(0, 119, 255, 0.15);
}

.cta-banner-glow {
  position: absolute;
  top: -50%;
  left: 20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 119, 255, 0.25) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.cta-crest-wrap {
  position: relative;
  flex-shrink: 0;
}

.crest-halo {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.5) 0%, transparent 70%);
  animation: pulseHalo 3s ease-in-out infinite;
}

@keyframes pulseHalo {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

.cta-crest-img {
  position: relative;
  width: 84px;
  height: 84px;
  filter: drop-shadow(0 0 20px rgba(0, 119, 255, 0.7));
}

.cta-text-wrap {
  flex: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cta-action-wrap {
  flex-shrink: 0;
}

.btn-cta {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Checklist Mobile (Mockup Screen 6) */
.cta-checklist {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.2);
  border: 1.5px solid #0077ff;
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 15. CONTACT FORM SECTION (Fale Conosco) --- */
.contact-section {
  padding: 40px 0 90px;
}

.contact-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 119, 255, 0.15);
}

.contact-header {
  text-align: center;
  margin-bottom: 36px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #64748b;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color 0.25s ease;
}

.form-input {
  width: 100%;
  background: rgba(7, 14, 27, 0.85);
  border: 1px solid rgba(0, 140, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px 13px 46px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 15px rgba(0, 119, 255, 0.35);
  background: rgba(10, 20, 38, 0.95);
}

.input-icon-wrap:focus-within .input-icon {
  color: #0077ff;
}

.select-wrap {
  position: relative;
}

.form-select {
  width: 100%;
  background: rgba(7, 14, 27, 0.85);
  border: 1px solid rgba(0, 140, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 40px 13px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
}

.form-select:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 15px rgba(0, 119, 255, 0.35);
}

.form-select option {
  background: #070e1b;
  color: #ffffff;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.form-textarea {
  width: 100%;
  background: rgba(7, 14, 27, 0.85);
  border: 1px solid rgba(0, 140, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 100px;
  transition: var(--transition);
}

.form-textarea:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 15px rgba(0, 119, 255, 0.35);
  background: rgba(10, 20, 38, 0.95);
}

.field-error {
  font-size: 0.78rem;
  color: #ef4444;
  min-height: 14px;
}

.btn-submit {
  padding: 14px;
  font-size: 1.02rem;
  margin-top: 8px;
}

/* Trust Badges Footer inside Contact Form */
.form-trust-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 12px;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
}

.t-icon {
  font-size: 1.1rem;
}

/* Form Feedback */
.form-feedback {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  text-align: center;
  margin-top: 16px;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #34d399;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* --- 16. SITE FOOTER --- */
.site-footer {
  background: #02050c;
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-col {
  display: flex;
  flex-direction: column;
}

.brand-tagline {
  font-size: 0.78rem;
  color: #64748b;
}

.footer-links-list {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  color: #94a3b8;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.footer-socials a:hover {
  color: #0077ff;
  border-color: #0077ff;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 119, 255, 0.4);
}

.copyright-text {
  font-size: 0.8rem;
  color: #64748b;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pingRing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ==========================================================================
   17. RESPONSIVE BREAKPOINTS (Desktop Mockup vs Mobile 8-Screen Mockup)
   ========================================================================== */

/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .hero-mockup-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .section-header-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .cta-text-wrap {
    text-align: center;
  }

  .cta-action-wrap {
    width: 100%;
  }

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

  .footer-right {
    align-items: center;
  }
}

/* --- MOBILE VERSION (max-width: 768px) - FIEL AO MOCKUP MOBILE --- */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  /* Header Mobile */
  .desktop-nav,
  .header-actions .btn-header {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero Mobile (Mockup Screen 1) */
  .hero-section {
    padding: 32px 0 60px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

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

  /* Trust Bar Mobile: 2x2 Grid */
  .hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    text-align: left;
  }

  /* Mockup Mobile: Adjust laptop & phone */
  .hero-mockup-wrapper {
    height: 320px;
  }

  .device-laptop {
    width: 320px;
    left: 50%;
    transform: translateX(-55%);
  }

  .device-smartphone {
    width: 115px;
    height: 220px;
    right: 10px;
    top: 60px;
  }

  .badge-flex {
    left: 0;
    top: -10px;
  }

  .badge-whatsapp {
    left: 100px;
    top: -20px;
  }

  .badge-meta {
    right: 100px;
    top: -20px;
  }

  .badge-insta {
    right: -5px;
    top: -5px;
  }

  .badge-shopify {
    bottom: 40px;
    left: -15px;
  }

  .badge-tiktok {
    bottom: 5px;
    left: 10px;
  }

  .badge-google {
    right: -15px;
    top: 70px;
  }

  .badge-woo {
    bottom: 40px;
    right: -15px;
  }

  .badge-n8n {
    bottom: 5px;
    right: 5px;
  }

  /* Solutions Mobile (Mockup Screen 2): 2 columns */
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 20px 16px;
    border-radius: var(--radius-sm);
  }

  .card-icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .card-title {
    font-size: 1.02rem;
    margin-bottom: 8px;
  }

  .card-text {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .section-action .btn {
    width: 100%;
  }

  /* Platforms Mobile (Mockup Screen 3) */
  .platforms-badges-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .platform-badge {
    padding: 10px 12px;
    min-height: 46px;
    width: 100%;
    font-size: 0.82rem;
  }

  .mobile-highlight-banner {
    display: block;
  }

  /* Benefits Mobile (Mockup Screen 4): 1 Column Stacked */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-icon-box {
    width: 44px;
    height: 44px;
  }

  /* Testimonials Mobile (Mockup Screen 5): Slider with 1 visible card */
  .testimonials-track {
    display: flex;
    gap: 0;
    transition: transform 0.35s ease;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 24px 20px;
  }

  .testimonial-dots {
    display: flex;
  }

  /* CTA Banner Mobile (Mockup Screen 6) */
  .cta-banner-card {
    padding: 32px 20px;
  }

  .cta-crest-img {
    width: 68px;
    height: 68px;
  }

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

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

  .cta-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-action-wrap .btn {
    width: 100%;
  }

  /* Contact Box Mobile (Mockup Screen 8) */
  .contact-box {
    padding: 28px 18px;
    border-radius: var(--radius-md);
  }

  .contact-title {
    font-size: 1.55rem;
  }

  .form-trust-footer {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* --- SMALL MOBILE (max-width: 440px) --- */
@media (max-width: 440px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .platforms-badges-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
  }
}
