/* ========================================
   AXiO Solutions - Landing Page Styles
   "Dark Liquid Glass Data" Design System
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ========================================
   2. DESIGN TOKENS - DARK LIQUID GLASS
   ======================================== */
:root {
  /* Background Colors - Deep Navy/Black */
  --bg-primary: #0D1421;
  --bg-secondary: #111827;
  --bg-tertiary: #1F2937;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(31, 41, 55, 0.8);

  /* Glass Effects */
  --glass-bg: rgba(17, 24, 39, 0.6);
  --glass-border: rgba(56, 189, 248, 0.15);
  --glass-border-hover: rgba(56, 189, 248, 0.3);
  --glass-glow: rgba(56, 189, 248, 0.1);

  /* Primary Accent - Yellow/Gold */
  --accent-primary: #F59E0B;
  --accent-primary-light: #FCD34D;
  --accent-primary-dark: #D97706;

  /* Secondary Accent - Teal/Cyan */
  --accent-secondary: #14B8A6;
  --accent-secondary-light: #5EEAD4;
  --accent-cyan: #38BDF8;

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;
  --text-muted: #475569;

  /* Status Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #38BDF8;

  /* Borders */
  --border-subtle: rgba(148, 163, 184, 0.1);
  --border-default: rgba(148, 163, 184, 0.2);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.1);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --container-max-width: 1200px;
  --gutter: 24px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Header */
  --header-height: 90px;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.text-large {
  font-size: 18px;
  line-height: 1.6;
}

.text-small {
  font-size: 14px;
  line-height: 1.5;
}

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

.text-accent {
  color: var(--accent-primary);
}

.text-cyan {
  color: var(--accent-cyan);
}

.text-muted {
  color: var(--text-tertiary);
}

/* ========================================
   4. LAYOUT & CONTAINERS
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ========================================
   5. GLASS CARDS
   ======================================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow);
}

/* ========================================
   6. BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
  color: #000000;
  border: none;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn--secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--glass-border-hover);
}

.btn--outline-cyan {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn--outline-cyan:hover {
  background: rgba(56, 189, 248, 0.1);
}

.btn--large {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.btn--header {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  /* Visibility transition logic */
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.btn--header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hide header CTA button on mobile */
@media (max-width: 768px) {

  .btn--header,
  .btn--header.visible {
    display: none !important;
  }
}

/* ========================================
   7. HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(13, 20, 33, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(13, 20, 33, 0.6);
  border-bottom-color: var(--glass-border);
}

.header .container {
  height: 100%;
}

.header__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.header__logo-text span {
  color: var(--text-tertiary);
  font-weight: 400;
}

/* Body Background with Grid */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  position: relative;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-attachment: fixed;
  /* Parallax-like effect, grid stays */
}

.header__logo-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   8. HERO SECTION
   ======================================== */
.hero {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 40px;
  /* background: var(--bg-primary); Removed to show body grid */
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Subtle grid pattern overlay - REMOVED from Hero, now on Body */
/* .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
} */

/* Gradient orbs */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero__title {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title span {
  color: var(--accent-primary);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* NEW: Improved Pricing Hierarchy */
.hero__pricing {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__pricing-setup {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero__pricing-amount {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  /* Lighter gray for better visibility/accessibility */
}

.hero__pricing-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

.hero__pricing-separator {
  font-size: 14px;
  color: var(--text-tertiary);
  align-self: flex-end;
  padding-bottom: 4px;
}

.hero__pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero__pricing-monthly-amount {
  font-size: 38px;
  /* Larger */
  font-weight: 800;
  color: #00F0FF;
  /* Cyan/Neon Blue or keep Neon Green #10B981 if preferred, User suggested "vert néon ou bleu cyan" */
  text-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.hero__pricing-monthly-label {
  font-size: 16px;
  font-weight: 600;
  color: #10B981;
}

.hero__pricing-micro {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out 0.35s both;
}

.hero__cta {
  animation: fadeInUp 0.6s ease-out 0.4s both;
  margin-bottom: 24px;
}

.hero__cta-reassurance {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* Social Proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero__social-proof-avatars {
  display: flex;
}

.hero__social-proof-avatars .avatar {
  font-size: 24px;
  margin-right: -8px;
}

.hero__visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__mockup {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero__mockup img {
  width: 100%;
  display: block;
  opacity: 0.9;
}

.hero__mockup iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  transform: scale(1);
  transform-origin: top left;
}

/* Phone Mockup Styles - Minimal Frame */
.phone-mockup {
  position: relative;
  width: 260px;
  height: 540px;
  background: linear-gradient(145deg, #2D2D2D 0%, #1A1A1A 100%);
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    0 25px 60px -12px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(56, 189, 248, 0.08);
  margin: 0 auto;
}

/* Side buttons */
.phone-mockup::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 120px;
  width: 3px;
  height: 60px;
  background: #2D2D2D;
  border-radius: 0 2px 2px 0;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 100px;
  width: 3px;
  height: 30px;
  background: #2D2D2D;
  border-radius: 2px 0 0 2px;
}

.phone-mockup__notch {
  display: none;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.phone-mockup__screen iframe {
  width: 375px;
  height: 812px;
  border: none;
  transform: scale(0.65);
  transform-origin: top left;
}

.phone-mockup__home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  z-index: 10;
}

.hero__badge {
  position: absolute;
  bottom: 60px;
  left: -80px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(20, 184, 166, 0.1) 100%);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

/* Connection line from badge to phone */
.hero__badge::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), transparent);
}

.hero__badge-icon {
  font-size: 28px;
}

.hero__badge-content {
  display: flex;
  flex-direction: column;
}

.hero__badge-title {
  font-size: 14px;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 2px;
}

.hero__badge-text {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ========================================
   9. TRUST SECTION
   ======================================== */
.trust {
  padding: 80px 0;
  background: var(--bg-primary);
  /* border lines removed */
}

.trust__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: var(--text-primary);
}

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

.trust__stat {
  text-align: center;
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.trust__stat:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.trust__stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.trust__stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* ========================================
   10. PROBLEM SECTION
   ======================================== */
.problem {
  background: var(--bg-primary);
}

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

.problem__title {
  font-size: 36px;
  margin-bottom: 32px;
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.problem__item:hover {
  border-color: rgba(239, 68, 68, 0.3);
}

.problem__item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
  font-size: 16px;
}

.problem__visual {
  position: relative;
}

.problem__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}


.problem__bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

/* ========================================
   11. FEATURES SECTION
   ======================================== */
.features {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: none;
}

/* Inherit Grid Pattern */
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Inherit Blue Glow */
.features::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.features__title {
  margin-bottom: 16px;
}

.features__subtitle {
  font-size: 17px;
  color: var(--text-tertiary);
}

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

.features__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.feature-card--highlight {
  border-color: rgba(0, 240, 255, 0.3);
  /* Neon Cyan Border */
  background: linear-gradient(145deg, rgba(0, 240, 255, 0.05) 0%, var(--glass-bg) 100%);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  /* Cyan Tech Glow */
}

.feature-card--highlight:hover {
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}


/* Centering and default state */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center horizontally */
  justify-content: center;
  /* Center vertically */
  text-align: center;
  min-height: 280px;
  /* Ensure uniform height for centering */
}

/* Updated Icon Margins for interaction */
/* Updated Icon Margins for interaction */
.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0.05) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-md);
  font-size: 22px;
  margin-bottom: 24px;
  transition: transform 0.4s ease, margin 0.4s ease;
}

/* Updated Title spacing and transition */
.feature-card__title {
  margin-bottom: 0;
  /* No margin when description is hidden */
  transition: transform 0.4s ease, margin 0.4s ease;
}

/* Description hidden by default */
.feature-card__description {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  color: #FFFFFF;
  /* Pure White on Hover */
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Smooth eased transition */
}

/* HOVER STATE */
.feature-card:hover .feature-card__description {
  opacity: 1;
  max-height: 150px;
  /* Reveal content */
  margin-top: 16px;
  transform: translateY(0);
}

.feature-card:hover .feature-card__icon {
  transform: translateY(-8px);
  /* Move up slightly */
}

.feature-card:hover .feature-card__title {
  transform: translateY(-8px);
}

.feature-card--highlight .feature-card__title {
  color: var(--accent-cyan);
}

/* ========================================
   12. PROTOTYPE SECTION
   ======================================== */
/* Global Section Background (Hero Style) applied to all main sections */
.prototype,
.badge-section,
.axio-connect,
.pricing,
.faq,
.footer,
.final-cta {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: none;
}

/* Inherit Grid Pattern */
.prototype::before,
.badge-section::before,
.axio-connect::before,
.pricing::before,
.faq::before,
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Inherit Blue Glow (centered or adjusted per section for variety if needed, keeping uniform for now) */
.prototype::after,
.badge-section::after,
.axio-connect::after,
.pricing::after,
.faq::after,
.final-cta::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.prototype {
  /* Background properties handled by global rule above */
}

.prototype__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.prototype__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.prototype__subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  /* Lighter gray */
  line-height: 1.6;
  margin-bottom: 16px;
}

.prototype__subtitle strong {
  color: #fff;
  font-weight: 700;
}

.prototype__link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.prototype__link:hover {
  color: #fff;
}

.prototype__browser {
  max-width: 1000px;
  margin: 0 auto 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 60px rgba(56, 189, 248, 0.15), var(--shadow-lg);
  /* Cyan Glow */
}

.prototype__browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-subtle);
}

.prototype__browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.prototype__browser-dot--red {
  background-color: #FF5F56;
}

.prototype__browser-dot--yellow {
  background-color: #FFBD2E;
}

.prototype__browser-dot--green {
  background-color: #27CA3F;
}

.prototype__browser-url {
  flex: 1;
  margin-left: 16px;
  padding: 8px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-tertiary);
}

.prototype__browser-content {
  background: var(--bg-primary);
  height: 480px;
  overflow: hidden;
}

.prototype__browser-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
}

.prototype__browser-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.prototype__cta {
  text-align: center;
}

.prototype__cta-text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ========================================
   13. BADGE SECTION
   ======================================== */
.badge-section {
  /* Background properties handled by global rule above */
  padding: 100px 0;
}

.badge-section__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.badge-section__visual {
  position: relative;
}

.badge-section__badge {
  max-width: 280px;
  margin: 0 auto;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(56, 189, 248, 0.15);
}

.badge-section__badge-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.badge-section__badge-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.badge-section__badge-subtitle {
  font-size: 13px;
  color: var(--text-tertiary);
}

.badge-section__title {
  font-size: 52px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.badge-section__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.badge-section__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.badge-section__item:hover {
  border-color: var(--glass-border-hover);
}

.badge-section__item-icon {
  flex-shrink: 0;
  color: var(--success);
  font-size: 18px;
  margin-top: 2px;
}

.badge-section__item-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.badge-section__item-content p {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 0;
}

.badge-section__note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   14. PRICING SECTION
   ======================================== */
/* ========================================
   14. PRICING SECTION (SPLIT SCREEN REDESIGN)
   ======================================== */
.pricing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.pricing__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  height: 100%;
}

/* --- LEFT COLUMN --- */
.pricing__left {
  text-align: left;
}

.pricing__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.pricing__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 480px;
}

.pricing__price-block {
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing__amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing__detail {
  font-size: 16px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.pricing__plus {
  font-size: 24px;
  color: var(--accent-primary);
  font-weight: 300;
}

.pricing__monthly-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing__monthly-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
}

.pricing__monthly-detail {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing__cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.pricing__cta-btn {
  background: var(--accent-primary);
  color: #0F172A;
  /* Contrast with Orange */
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  /* Strong orange glow */
  padding: 20px 40px;
  font-size: 18px;
  border: none;
}

.pricing__cta-btn:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
}

.pricing__cta-sub {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

/* --- RIGHT COLUMN --- */
.pricing__right {
  position: relative;
}

.pricing__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.pricing__feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(15, 23, 42, 0.6);
  /* Slightly darker glass */
  border: 1px solid var(--border-default);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.pricing__feature-item:hover {
  border-color: var(--accent-primary);
  /* Orange border on hover */
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.8);
}

.pricing__check-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  font-size: 14px;
  color: #10B981;
}

.pricing__feature-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.pricing__guarantee {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .pricing__split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .pricing__left,
  .pricing__cta-wrapper {
    align-items: center;
    text-align: center;
  }

  .pricing__price-block {
    justify-content: center;
  }

  .pricing__subtitle {
    margin: 0 auto 32px;
  }
}

/* Mobile-specific pricing adjustments */
@media (max-width: 768px) {
  .pricing__split {
    gap: 32px;
  }

  .pricing__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pricing__title {
    font-size: 24px;
    /* Same as other h2 on mobile */
    text-align: center;
  }

  .pricing__subtitle {
    font-size: 14px;
    max-width: 90%;
    text-align: center;
  }

  .pricing__price-block {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .pricing__amount {
    font-size: 48px;
  }

  .pricing__monthly-amount {
    font-size: 32px;
  }

  /* Smaller CTA button on mobile */
  .pricing__cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .pricing__cta-btn {
    font-size: 16px;
    /* Match standard CTA font size */
    padding: 18px 32px;
    /* Match standard CTA padding */
    width: 100%;
    /* Match other buttons (100% width) */
    max-width: none;
  }

  /* Badges/Features grid - smaller and centered */
  .pricing__right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricing__features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto;
  }

  .pricing__feature-item {
    padding: 12px 16px;
    font-size: 13px;
  }

  .pricing__check-icon {
    font-size: 16px;
  }

  .pricing__feature-text {
    font-size: 13px;
  }

  .pricing__guarantee {
    font-size: 12px;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
}

/* ========================================
   15. FAQ SECTION
   ======================================== */
.faq {
  /* Background properties handled by global rule above */
}

.faq__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.faq__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.faq__subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq__list {
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-cyan-dim);
  transform: translateY(-2px);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
}

.faq__question:hover {
  color: var(--accent-cyan);
}

.faq__question-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-cyan);
  transition: transform var(--transition-base);
}

.faq__item.active .faq__question-icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq__answer-content {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ========================================
   16. FINAL CTA SECTION
   ======================================== */
.final-cta {
  /* background handled by global rule */
  border-top: none;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* .final-cta::before removed to use global blue glow */

.final-cta__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
}

.final-cta__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.final-cta__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  position: relative;
}

.final-cta__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.final-cta__urgency {
  margin-top: 32px;
  padding: 12px 24px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-primary);
  position: relative;
}

/* ========================================
   17. FOOTER
   ======================================== */
.footer {
  /* Background properties handled by global rule above */
  /* border-top handled by global rule */
  color: var(--text-tertiary);
  padding: 64px 0 32px;
  background: #0D1421;
  /* Solid Dark Navy to match header exactly */
  z-index: 10;
}

.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer__brand-logo span {
  color: var(--text-tertiary);
  font-weight: 400;
}

.footer__brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer__brand-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

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

.footer__link {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--accent-cyan);
}

.footer__contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   18. COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
}

.cookie-banner__btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.cookie-banner__btn--accept {
  background: var(--accent-primary);
  color: #000000;
}

.cookie-banner__btn--accept:hover {
  background: var(--accent-primary-light);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}

.cookie-banner__btn--decline:hover {
  background: var(--bg-tertiary);
}

/* ========================================
   19. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

/* ========================================
   20. RESPONSIVE DESIGN
   ======================================== */

/* Laptop (1024px) */
@media (max-width: 1024px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__content {
    gap: 48px;
  }

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

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

/* Tablet (768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  .header__cta-text {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 64px;
  }

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

  .hero__visual {
    order: -1;
  }

  .hero__badge {
    bottom: auto;
    top: -16px;
    left: auto;
    right: -16px;
  }

  /* Urgency Progress Bar */
  .final-cta__progress-container {
    margin-top: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta__progress-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 8px;
    text-align: center;
  }

  .final-cta__progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }

  .final-cta__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary) 0%, #FF5F56 100%);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    animation: fillProgress 1.5s ease-out forwards;
  }

  @keyframes fillProgress {
    from {
      width: 0;
    }
  }

  .hero__cta-text {
    flex-wrap: wrap;
  }

  .btn--large {
    width: 100%;
    min-width: auto;
    padding: 18px 32px;
  }

  .problem__content {
    grid-template-columns: 1fr;
  }

  .problem__visual {
    order: -1;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  /* Feature cards always open on mobile (no hover on touch devices) */
  .feature-card__description {
    opacity: 1 !important;
    max-height: 200px !important;
    margin-top: 16px !important;
    transform: translateY(0) !important;
  }

  .feature-card__icon,
  .feature-card__title {
    transform: translateY(0) !important;
  }

  .badge-section__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .badge-section__list {
    text-align: left;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links {
    align-items: center;
  }

  .final-cta__title {
    font-size: 30px;
  }

  .final-cta__badges {
    flex-direction: column;
    gap: 16px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 40px;
    /* Reduced from 60px */
  }

  h1 {
    font-size: 34px;
    /* Increased for better hierarchy */
    line-height: 1.1;
  }

  /* Decrease gray subtitle size, but standardize to 17px */
  .hero__subtitle,
  .prototype__subtitle,
  .axio-connect__subtitle,
  .pricing__subtitle,
  .faq__subtitle,
  .final-cta__subtitle {
    font-size: 17px !important;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 24px;
  }

  /* All major section titles should match hero h1 size for consistency */
  .features__title,
  .prototype__title,
  .axio-connect__title,
  .pricing__title,
  .faq__title,
  .final-cta__title {
    font-size: 34px !important;
    line-height: 1.1;
  }

  /* Hide Hero Visual (Phone Mockup) on Mobile */
  .hero__visual {
    display: none;
  }

  /* Fix Hero Padding on Mobile */
  .hero {
    padding-top: 150px;
    /* More space for header */
    height: auto;
    padding-bottom: 60px;
    align-items: flex-start;
    /* Start from top */
  }

  .container {
    padding: 0 20px;
  }

  .trust__stats {
    grid-template-columns: 1fr;
  }

  .pricing__card {
    padding: 32px 24px;
  }

  .pricing__card-price {
    font-size: 52px;
  }

  .pricing__card-monthly {
    font-size: 30px;
  }

  .prototype__browser-content {
    height: 280px;
  }

  .faq__question {
    font-size: 15px;
  }

  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__buttons {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   11. AXIO CONNECT SECTION (NEW)
   ======================================== */
.axio-connect {
  /* background-color handled by global rule */
  padding: 100px 0;
  border-top: none;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.axio-connect__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.axio-connect__text {
  animation: fadeInUp 0.6s ease-out;
}

.axio-connect__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.axio-connect__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.highlight-neon {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
  /* Text glow */
  font-weight: 800;
  /* Thicker text */
  margin: 0 4px;
  /* Slight spacing */
}

.highlight-neon::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -12px;
  /* Even more spacing */
  height: 12px;
  /* Thicker underline */
  background: rgba(0, 240, 255, 0.3);
  /* Base color */
  box-shadow:
    0 0 15px rgba(0, 240, 255, 0.8),
    /* Wide glow */
    0 0 5px rgba(0, 240, 255, 1) inset;
  /* Inner intensity */
  z-index: -1;
  transform: rotate(-1deg) skewX(-10deg);
  /* More dynamic shape */
  border-radius: 4px;
}

.axio-connect__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.axio-connect__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.axio-connect__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.axio-connect__item-icon {
  flex-shrink: 0;
  font-size: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--accent-primary);
}

.axio-connect__item-content h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.axio-connect__item-content p {
  font-size: 15px;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.5;
}

/* Abstract Dashboard Mockup */
/* Image Replaces Mockup */
.axio-connect__image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.axio-connect__image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 163, 255, 0.15);
}

.axio-connect__visual {
  position: relative;
}

.axio-connect__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

/* Badge (Removed from HTML but kept class just in case or hide it) */
.axio-connect__badge {
  display: none;
}

/* Badge Overlay */
.axio-connect__badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--accent-primary);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  transform: rotate(-3deg);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: rotate(-3deg) translateY(0px);
  }

  50% {
    transform: rotate(-3deg) translateY(-6px);
  }

  100% {
    transform: rotate(-3deg) translateY(0px);
  }
}

/* ========================================
   RESPONSIVE DEMO TOGGLE
   ======================================== */
/* Desktop First: Show Desktop, Hide Mobile */
.desktop-demo-view {
  display: block;
  /* Visible on desktop */
}

.mobile-demo-view {
  display: none;
  /* Hidden on desktop */
}

/* Phone Mockup Styling - Refactored */
.phone-mockup {
  position: relative;
  width: 85%;
  max-width: 350px;
  height: 700px;
  /* Explicit height instead of aspect-ratio */
  background: #000;
  border: 8px solid #111;
  /* Thick black bezel */
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  margin: 0 auto 20px auto;
  /* REDUCED: Only 20px before button */
}

.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 24px;
  background: #111;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
}

.phone-mockup__screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  border-radius: 30px;
  /* Match phone edges */
}

.phone-mockup__screen iframe {
  /* Render at iPhone viewport size, then scale to fit */
  width: 375px;
  height: 812px;
  /* iPhone X/11/12 viewport */
  border: none;
  display: block;
  transform-origin: top left;
  transform: scale(0.88);
  /* Scale down to fit 350px container */
}

.phone-mockup__home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

/* Mobile: Invert Logic (max-width: 768px) */
@media (max-width: 768px) {
  .desktop-demo-view {
    display: none !important;
    /* Hidden on mobile */
  }

  .mobile-demo-view {
    display: block !important;
    /* Visible on mobile */
    width: 100%;
    max-width: 400px;
    /* Largeur max d'un gros iPhone */
    margin: 0 auto;
    /* Centré */
    padding: 0 20px;
  }

  /* Adjustments for mobile phone mockup */
  .phone-mockup {
    width: 100%;
    max-width: 350px;
  }
}

/* Existing Media Queries adjustments... */
@media (max-width: 991px) {
  .axio-connect__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .axio-connect__text {
    order: 2;
  }

  .axio-connect__visual {
    order: 1;
  }
}