/* ============================================
   VARIABLES Y RESET
============================================ */
:root {
  --primary-blue: #1d4ed8;
  --primary-blue-dark: #1e40af;
  --primary-blue-light: #3b82f6;
  --accent-orange: #f97316;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
/* ============================================
       HEADER MODERNO FLOTANTE
    ============================================ */
    header {
      background: transparent;
      position: fixed;
      top: 1rem;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     color: black;
    }
 
    header.scrolled {
      top: 1rem;
    }

     .header-left img {
    height: 60px;}
 
    .header-container {
      color: black;
      max-width: 95%;
      margin: 0 auto;
      padding: 0.6rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    header.scrolled .header-container {
      padding: 0.5rem 2.5rem;
      background: rgba(255, 255, 255, 0.85);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
 
    /* LOGO */
    .logo {
      font-size: 2rem;
      font-weight: 700;
      color: #1d4ed8;
      text-decoration: none;
      font-style: italic;
      letter-spacing: -1px;
      transition: transform 0.3s ease;
    }
 
    .logo:hover {
      transform: scale(1.05);
    }
 
    /* NAVIGATION */
    .nav-menu {
      display: flex;
      gap: 3rem;
      color: black;
      align-items: center;
      list-style: none;
    }
 
    .nav-menu li {
      position: relative;
    }
 
    .nav-menu a {
      color: #211e1e;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
    }
 
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #1d4ed8;
      color: black;
      transition: width 0.3s ease;
    }
 
    .nav-menu a:hover {
      color: #1d4ed8;
    }
 
    .nav-menu a:hover::after {
      width: 100%;
    }
 
    /* CTA BUTTON */
    .cta-button {
      background: #07329d;
      color: white !important;
      padding: 0.9rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(255, 92, 77, 0.2);
    }
 
    .cta-button::after {
      display: none;
    }
 
    .cta-button:hover {
      background: #0728ad;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(255, 92, 77, 0.3);
      color: white !important;
    }
 
    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 0.5rem;
      background: transparent;
      border: none;
    }
 
    .hamburger span {
      width: 28px;
      height: 3px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
 
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }
 
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
 
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
 
    /* MOBILE MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 110px;
      left: 2.5%;
      right: 2.5%;
      max-width: 95%;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      padding: 2rem;
      border-radius: 20px;
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.3s ease;
      pointer-events: none;
    }
 
    .mobile-menu.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
 
    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
 
    .mobile-menu a {
      color: #333;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      display: block;
      padding: 0.5rem 0;
      transition: color 0.3s ease;
    }
 
    .mobile-menu a:hover {
      color: #1d4ed8;
    }
 
    .mobile-menu .cta-button {
      display: inline-block;
      text-align: center;
      margin-top: 1rem;
    }
 
    /* RESPONSIVE */
    @media (max-width: 968px) {
      header {
        top: 0.5rem;
      }
 
      .header-container {
        padding: 1rem 2rem;
        max-width: 90%;
      }
 
      header.scrolled .header-container {
        padding: 0.8rem 1.5rem;
      }
 
      .nav-menu {
        display: none;
      }
 
      .hamburger {
        display: flex;
      }
 
      .mobile-menu {
        display: block;
        top: 90px;
      }
    }
 
    @media (max-width: 640px) {
      header {
        top: 0.5rem;
      }
 
      .header-container {
        padding: 1rem 1.5rem;
        max-width: 92%;
      }
 
      header.scrolled .header-container {
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
      }
 
      .logo {
        font-size: 1.5rem;
      }
 
      .mobile-menu {
        left: 4%;
        right: 4%;
        max-width: 92%;
        padding: 1.5rem;
        top: 80px;
      }
    }
 
    /* DEMO CONTENT */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      position: relative;
      overflow: hidden;
    }
 
    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: float 8s ease-in-out infinite;
    }
 
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
 
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }
 
    .hero-section h1 {
      font-size: 4rem;
      color: white;
      margin-bottom: 1.5rem;
      font-weight: 700;
      line-height: 1.2;
    }
 
    .hero-section p {
      font-size: 1.3rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 2rem;
      line-height: 1.8;
    }
 
    .hero-button {
      display: inline-block;
      background: white;
      color: #667eea;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }
 
    .hero-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }
 
    .demo-content {
      padding: 4rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
      background: white;
    }
 
    .demo-content h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #333;
    }
 
    .demo-content p {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.8;
    }
 
    .content-section {
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f5f5;
    }
 
    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2.5rem;
      }
 
      .hero-section p {
        font-size: 1.1rem;
      }
    }
    /* LOGO */
    .logo {
      font-size: 2rem;
      font-weight: 700;
      color: #1d4ed8;
      text-decoration: none;
      font-style: italic;
      letter-spacing: -1px;
      transition: transform 0.3s ease;
    }
 
    .logo:hover {
      transform: scale(1.05);
    }
 
    /* NAVIGATION */
    .nav-menu {
      display: flex;
      gap: 3rem;
      align-items: center;
      list-style: none;
    }
 
    .nav-menu li {
      position: relative;
    }
 
    .nav-menu a {
      color: #333;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
    }
 
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #1d4ed8;
      transition: width 0.3s ease;
    }
 
    .nav-menu a:hover {
      color: #1d4ed8;
    }
 
    .nav-menu a:hover::after {
      width: 100%;
    }
 
    /* CTA BUTTON */
    .cta-button {
      background: #140eba;
      color: white !important;
      padding: 0.9rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(255, 92, 77, 0.2);
    }
 
    .cta-button::after {
      display: none;
    }
 
    .cta-button:hover {
      background: #0f1ae4;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(255, 92, 77, 0.3);
      color: white !important;
    }
 
    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 0.5rem;
      background: transparent;
      border: none;
    }
 
    .hamburger span {
      width: 28px;
      height: 3px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
 
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }
 
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
 
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
 
    /* MOBILE MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 100px;
      left: 2.5%;
      right: 2.5%;
      max-width: 95%;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      padding: 2rem;
      border-radius: 20px;
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.3s ease;
      pointer-events: none;
    }
 
    header.scrolled ~ .mobile-menu {
      top: 90px;
    }
 
    .mobile-menu.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
 
    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
 
    .mobile-menu a {
      color: #333;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      display: block;
      padding: 0.5rem 0;
      transition: color 0.3s ease;
    }
 
    .mobile-menu a:hover {
      color: #1d4ed8;
    }
 
    .mobile-menu .cta-button {
      display: inline-block;
      text-align: center;
      margin-top: 1rem;
    }
 
    /* RESPONSIVE */
    @media (max-width: 968px) {
      .header-container {
        padding: 1rem 2rem;
      }
 
      header.scrolled .header-container {
        max-width: 90%;
        padding: 0.8rem 1.5rem;
      }
 
      .nav-menu {
        display: none;
      }
 
      .hamburger {
        display: flex;
      }
 
      .mobile-menu {
        display: block;
      }
    }
 
    @media (max-width: 640px) {
      .header-container {
        padding: 1rem 1.5rem;
      }
 
      header.scrolled .header-container {
        max-width: 92%;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
      }
 
      header.scrolled {
        top: 0.5rem;
      }
 
      .logo {
        font-size: 1.5rem;
      }
 
      .mobile-menu {
        left: 4%;
        right: 4%;
        max-width: 92%;
        padding: 1.5rem;
      }
    }
 
    /* LOGO */
    .logo {
      font-size: 2rem;
      font-weight: 700;
      color: #1d4ed8;
      text-decoration: none;
      font-style: italic;
      letter-spacing: -1px;
      transition: transform 0.3s ease;
    }
 
    .logo:hover {
      transform: scale(1.05);
    }
 
    /* NAVIGATION */
    .nav-menu {
      display: flex;
      gap: 3rem;
      align-items: center;
      list-style: none;
    }
 
    .nav-menu li {
      position: relative;
    }
 
    .nav-menu a {
      color: #333;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
    }
 
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #1d4ed8;
      transition: width 0.3s ease;
    }
 
    .nav-menu a:hover {
      color: #1d4ed8;
    }
 
    .nav-menu a:hover::after {
      width: 100%;
    }
 
    /* CTA BUTTON */
    .cta-button {
      background: #1d16e4;
      color: white !important;
      padding: 0.9rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(255, 92, 77, 0.2);
    }
 
    .cta-button::after {
      display: none;
    }
 
    .cta-button:hover {
      background: #e04b3d;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(255, 92, 77, 0.3);
      color: white !important;
    }
 
    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 0.5rem;
      background: transparent;
      border: none;
    }
 
    .hamburger span {
      width: 28px;
      height: 3px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
 
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }
 
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
 
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
 
    /* MOBILE MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.3s ease;
      pointer-events: none;
    }
 
    .mobile-menu.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
 
    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
 
    .mobile-menu a {
      color: #333;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      display: block;
      padding: 0.5rem 0;
      transition: color 0.3s ease;
    }
 
    .mobile-menu a:hover {
      color: #1d4ed8;
    }
 
    .mobile-menu .cta-button {
      display: inline-block;
      text-align: center;
      margin-top: 1rem;
    }
 
    /* RESPONSIVE */
    @media (max-width: 968px) {
      .header-container {
        padding: 1rem 2rem;
      }
 
      .nav-menu {
        display: none;
      }
 
      .hamburger {
        display: flex;
      }
 
      .mobile-menu {
        display: block;
      }
    }
 
    @media (max-width: 640px) {
      .header-container {
        padding: 1rem 1.5rem;
      }
 
      .logo {
        font-size: 1.5rem;
      }
    }
 
    /* DEMO CONTENT */
    .demo-content {
      padding: 4rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }
 
    .demo-content h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #333;
    }
 
    .demo-content p {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.8;
    }

/* MENU */
.menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.menu a {
  color: rgb(29, 24, 24);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.menu a::after {
   color: rgb(41, 51, 130);
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.menu a:hover::after {
   color: rgb(15, 52, 161);
  width: 100%;
}

.menu a.menu-cta {
  background: white;
  color: var(--primary-blue) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.menu a.menu-cta::after {
  display: none;
}

.menu a.menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-buttons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.store-buttons a:hover {
  transform: translateY(-3px);
}

.store-buttons img {
  height: 40px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(29,78,216,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

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

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 100px;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.hero-text .store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-text .store-buttons img {
  height: 50px;
}

.hero-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  animation: float 3s ease-in-out infinite;
}

   /* ============================================
       HERO X - MODERN DESIGN
    ============================================ */
    .herox {
      min-height: 80vh;
      background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 50%, #ddd6fe 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 6rem 2rem 2rem;
    }
 
    /* GEOMETRIC SHAPES BACKGROUND */
    .herox::before {
      content: '';
      position: absolute;
      top: -10%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
      border-radius: 50%;
      animation: float-slow 20s ease-in-out infinite;
    }
 
    .herox::after {
      content: '';
      position: absolute;
      bottom: -10%;
      right: -5%;
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, transparent 100%);
      border-radius: 50%;
      animation: float-slow 15s ease-in-out infinite reverse;
    }
 
    /* CURVED LINES */
    .curved-line {
      position: absolute;
      stroke: rgba(59, 130, 246, 0.3);
      stroke-width: 2;
      fill: none;
      animation: draw-line 3s ease-in-out infinite;
    }
 
    .curved-line-1 {
      top: 15%;
      left: 10%;
      width: 300px;
      height: 200px;
    }
 
    .curved-line-2 {
      bottom: 20%;
      right: 15%;
      width: 250px;
      height: 150px;
      animation-delay: 1s;
    }
 
    @keyframes draw-line {
      0%, 100% {
        stroke-dashoffset: 1000;
        opacity: 0.3;
      }
      50% {
        stroke-dashoffset: 0;
        opacity: 0.6;
      }
    }
 
    @keyframes float-slow {
      0%, 100% {
        transform: translateY(0px) translateX(0px);
      }
      50% {
        transform: translateY(-30px) translateX(20px);
      }
    }
 
    /* CONTAINER */
    .herox-container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }
 
    /* LEFT CONTENT */
    .herox-content {
      padding: 2rem 0;
    }
 
    .herox-badge {
      display: inline-block;
      background: rgba(59, 130, 246, 0.15);
      color: #1d4ed8;
      padding: 0.6rem 1.5rem;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 2rem;
      border: 1px solid rgba(59, 130, 246, 0.2);
      animation: fade-in-up 0.8s ease-out;
    }
 
    .herox-title {
      font-size: 4.5rem;
      font-weight: 800;
      color: #1e293b;
      line-height: 2;
      margin-bottom: 1.5rem;
      animation: fade-in-up 0.8s ease-out 0.2s backwards;
    }
 
    .herox-title .highlight {
      background: linear-gradient(135deg, #013b99 0%, #060d93 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }
 
    .herox-description {
      font-size: 1.25rem;
      color: #64748b;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 500px;
      animation: fade-in-up 0.8s ease-out 0.4s backwards;
    }
 
    .herox-cta {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      animation: fade-in-up 0.8s ease-out 0.6s backwards;
    }
 
    .herox-button {
      display: inline-block;
      background: linear-gradient(135deg, #244ec9 0%, #053698 100%);
      color: white;
      padding: 1.2rem 3rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 10px 30px rgba(248, 113, 113, 0.3);
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
 
    .herox-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(248, 113, 113, 0.4);
    }
 
    .herox-link {
      color: #3b82f6;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s ease;
    }
 
    .herox-link:hover {
      gap: 1rem;
    }
 
    /* RIGHT SIDE - PERSON + FLOATING OBJECTS */
    .herox-visual {
      position: relative;
      height: 600px;
      display: flex;
      justify-content: center;
    }
 
    /* MAIN IMAGE - PERSON */
    .herox-person {
      position: relative;
      z-index: 10;
      max-width: 450px;
      width: 100%;
      height: auto;
      padding-bottom: 0px;
      animation: fade-in-up 1s ease-out 0.5s backwards;
    }
 
    .person-image {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
 
    /* FLOATING OBJECTS BEHIND PERSON */
    .floating-objects {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
 
    .floating-object {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: float-gentle 4s ease-in-out infinite;
    }
 
    /* CAR ICON CARD */
    .floating-object.car-card {
      top: 10%;
      left: -10%;
      animation-delay: 0s;
    }
 
    /* WRENCH ICON CARD */
    .floating-object.tool-card {
      top: 40%;
      left: -5%;
      animation-delay: 1s;
    }
 
    /* STAR/RATING CARD */
    .floating-object.rating-card {
      bottom: 50%;
      right: 0%;
      animation-delay: 2s;
    }
 
   
 
    /* CIRCULAR BADGE */
    .floating-object.badge-card {
      bottom: 10%;
      right: 10%;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1e55cb 0%, #103ac2 100%);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      animation-delay: 1.5s;
    }
 
    .badge-card .badge-number {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
    }
 
    .badge-card .badge-text {
      font-size: 0.75rem;
      font-weight: 600;
      text-align: center;
    }
 
    /* GEOMETRIC SHAPES DECORATION */
    .geo-shape {
      position: absolute;
      z-index: 0;
    }
 
    .geo-circle {
      width: 100px;
      height: 100px;
      border: 3px solid rgba(59, 130, 246, 0.2);
      border-radius: 50%;
      top: 25%;
      right: 5%;
      animation: rotate-slow 20s linear infinite;
    }
 
    .geo-triangle {
      width: 0;
      height: 0;
      border-left: 40px solid transparent;
      border-right: 40px solid transparent;
      border-bottom: 70px solid rgba(248, 113, 113, 0.2);
      top: 5%;
      left: 15%;
      animation: float-gentle 6s ease-in-out infinite;
    }
 
    .geo-square {
      width: 60px;
      height: 60px;
      background: rgba(139, 92, 246, 0.15);
      bottom: 25%;
      right: 20%;
      border-radius: 8px;
      animation: float-gentle 8s ease-in-out infinite;
      animation-delay: 2s;
    }
 
    /* ICON STYLES */
    .icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }
 
    .icon.orange {
      background: linear-gradient(135deg, #f87171 0%, #fb923c 100%);
    }
 
    .icon.green {
      background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    }
 
    .object-content h4 {
      font-size: 0.9rem;
      color: #1e293b;
      margin-bottom: 0.2rem;
      font-weight: 700;
    }
 
    .object-content p {
      font-size: 0.75rem;
      color: #64748b;
      margin: 0;
    }
 
     @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
 
    @keyframes float-gentle {
      0%, 100% {
        transform: translateY(0px) translateX(0px);
      }
      50% {
        transform: translateY(-15px) translateX(5px);
      }
    }
 
    @keyframes rotate-slow {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
 
    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .herox-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
 
      .herox-title {
        font-size: 3.5rem;
      }
 
      .herox-visual {
        height: 500px;
      }
 
      .herox-person {
        max-width: 400px;
      }
 
      .floating-object.phone-card {
        right: -5%;
      }
    }
 
    @media (max-width: 768px) {
      .herox {
        padding: 5rem 1.5rem 2rem;
      }
 
      .herox-title {
        font-size: 2.5rem;
      }
 
      .herox-description {
        font-size: 1.1rem;
      }
 
      .herox-visual {
        height: 400px;
      }
 
      .herox-person {
        max-width: 300px;
      }
 
      .floating-object.car-card,
      .floating-object.tool-card,
      .floating-object.rating-card {
        display: none;
      }
 
      .floating-object.phone-card {
        width: 150px;
        height: 300px;
        right: 0;
      }
 
      .floating-object.badge-card {
        width: 100px;
        height: 100px;
        right: 0;
      }
 
      .geo-circle,
      .geo-triangle,
      .geo-square {
        display: none;
      }
    }
 
    @media (max-width: 480px) {
      .herox-title {
        font-size: 2rem;
      }
 
      .herox-button {
        padding: 0.5rem 0.2rem;
        font-size: 1rem;
      }
 
      .herox-cta {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* ============================================
   SECTION BANNER PROMO
============================================ */
.pricing-promo {
  padding: 5rem 0.5rem;
}

.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #0d47ff 0%, #003bdb 55%, #0ea5e9 100%);
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  align-content: start;
}

.promo-tag {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.promo-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.promo-content h2 strong {
  color: #ffffff;
}

.promo-highlight {
  margin-bottom: 1.4rem;
}

.promo-highlight span {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.promo-highlight h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
  color: #ffffff;
  font-weight: 900;
}

.promo-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.promo-features li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.promo-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-size: 1.2rem;
}

.promo-button {
  display: inline-block;
  background: #fff;
  color: #0d47ff;
  text-decoration: none;
  font-weight: 800;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.promo-button:hover {
  transform: translateY(-3px);
}

.promo-side {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.promo-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 2rem;
  max-width: 320px;
  color: #fff;
}

.promo-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.promo-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
}

.mini-badge {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.promo-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.promo-shape-1 {
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.08);
  top: -140px;
  left: -120px;
}

.promo-shape-2 {
  width: 260px;
  height: 260px;
  background: #10b981;
  top: -70px;
  right: -80px;
}

.promo-shape-3 {
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.95);
  bottom: -120px;
  right: 120px;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .promo-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .promo-side {
    justify-content: flex-start;
  }

  .promo-card {
    max-width: 100%;
  }

  .promo-shape-3 {
    right: -60px;
    bottom: -100px;
  }
}


/* ============================================
   SECTIONS COMUNES
============================================ */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--text-dark);
}

h6 {
  text-align: start;
  margin-bottom: 0rem;
  font-size: 3rem;
  color: white;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   STATS SECTION (NUEVA)
============================================ */
.stats {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: white;
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: auto;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ============================================
   SERVICES SECTION
============================================ */
#services {
  background: var(--bg-white);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  background: white;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(29,78,216,0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

.card img {
  width: 100%;
  max-width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ============================================
   FEATURES SECTION (NUEVA)
============================================ */
.features {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: white;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3, 40, 161, 0.8), rgba(0, 59, 219, 0.8)),
    url("assets/mecanicomotor.jpg") center/cover no-repeat;
  z-index: 1;
}

.features > * {
  position: relative;
  z-index: 2;
}

/* Asegura que el contenido quede arriba */
.cta > * {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.white {
  color: white;
}
.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
============================================ */
#how {
  background: var(--bg-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary-blue-light);
  opacity: 0.3;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   PRICING SECTION (NUEVA)
============================================ */
.pricing {
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.pricing-duration {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.pricing-button {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   TESTIMONIALS SECTION (NUEVA)
============================================ */
.testimonials {
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary-blue-light);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.testimonial-info p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.testimonial-stars {
  color: #fbbf24;
  margin-top: 0.5rem;
}

/* ============================================
   BENEFITS
============================================ */
#benefits {
  background: var(--bg-light);
}

/* ============================================
   CTA SECTION
============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: white;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;

  background: 
    linear-gradient(135deg, rgba(13, 71, 255, 0.8), rgba(3, 28, 94, 0.7)),
    url('assets/mecanicoaceite.jpg') center/cover no-repeat;

  z-index: 1;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-container h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons img {
  height: 55px;
  transition: transform 0.3s ease;
}

.cta-buttons a:hover img {
  transform: scale(1.05) translateY(-3px);
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: #111827;
  color: white;
  width: 100%;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 3rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
   transform: translateY(10px);
}

.social-icon:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .header-container {
    grid-template-columns: auto auto;
    gap: 1rem;
  }

  .menu {
    display: none;
    color: black;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .step::after {
    display: none;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .header-left img {
    height: 60px;
  }

  .store-buttons img {
    height: 35px;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-3px);
}


/* ============================================
   MOBILE FIXES HEADER + HERO
============================================ */
body.menu-open {
  overflow: hidden;
}

.hamburger {
  margin-left: auto;
}

@media (max-width: 968px) {
  .header-container {
    max-width: 94%;
    padding: 0.9rem 1.1rem;
    gap: 0.75rem;
  }

  .header-right {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
  }

  .mobile-menu {
    display: block;
    top: 84px;
    left: 3%;
    right: 3%;
    max-width: none;
    padding: 1.25rem;
    border: 1px solid rgba(229, 231, 235, 0.9);
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu ul {
    gap: 0.9rem;
  }

  .mobile-menu a {
    font-size: 1rem;
    padding: 0.65rem 0;
  }

  .mobile-menu .cta-button {
    width: 100%;
    margin-top: 0.5rem;
  }

  .herox {
    min-height: auto;
    padding: 7.5rem 1rem 2.5rem;
  }

  .herox-container {
    gap: 1.5rem;
  }

  .herox-content {
    padding: 0;
    text-align: center;
  }

  .herox-badge {
    margin-bottom: 1rem;
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
  }

  .herox-title {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .herox-description {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .herox-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .herox-button,
  .herox-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .herox-button {
    padding: 1rem 1.25rem;
    border-radius: 14px;
  }

  .herox-visual {
    height: auto;
    min-height: 320px;
    align-items: end;
  }

  .herox-person {
    max-width: 260px;
    margin: 0 auto;
  }

  .floating-object.badge-card {
    width: 82px;
    height: 82px;
    right: 2%;
    bottom: 8%;
  }

  .badge-card .badge-number {
    font-size: 1.35rem;
  }

  .badge-card .badge-text {
    font-size: 0.62rem;
  }

  .curved-line-1,
  .curved-line-2 {
    opacity: 0.35;
  }
}

@media (max-width: 640px) {
  header {
    top: 0.35rem;
  }

  .header-left img {
    height: 46px;
  }

  .header-container {
    max-width: 96%;
    padding: 0.75rem 0.9rem;
    border-radius: 18px;
  }

  .hamburger span {
    width: 24px;
  }

  .mobile-menu {
    top: 76px;
    left: 2%;
    right: 2%;
    padding: 1rem;
    border-radius: 16px;
  }

  .herox {
    padding-top: 6.8rem;
  }

  .herox-title {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .herox-description {
    font-size: 0.96rem;
  }

  .herox-person {
    max-width: 220px;
  }

  .floating-object.badge-card {
    width: 74px;
    height: 74px;
  }

  .scroll-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }
}
