*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f9f9f8;
  --gray-100: #f2f2f0;
  --gray-200: #e5e5e1;
  --gray-300: #c8c8c2;
  --gray-500: #8a8a84;
  --gray-700: #444441;
  --yellow: #ffd700;
  --yellow-light: #fff3b0;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --orange: #ea580c;
  --orange-light: #fff7ed;
  --purple: #7c3aed;
  --purple-light: #f5f3ff;
  --teal: #0d9488;
  --teal-light: #f0fdfa;
  --red: #dc2626;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  /* backdrop-filter: blur(12px); */
  /* border-bottom: 1px solid var(--gray-200); */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 0 2.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--black);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    all 0.4s ease,
    border-radius 0s,
    height 0s,
    width 0s,
    padding 0s,
    max-width 0s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* ─── NAVBAR SCROLLED STATE ─── */
nav.scrolled {
  top: 10px;
  height: 52px;
  width: 100%;
  max-width: fit-content;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

nav.scrolled .nav-links {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 0;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 15px 30px -10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}

nav.scrolled .nav-brand {
  opacity: 1;
  max-width: 140px;
  padding: 0 20px;
  margin: 0;
  pointer-events: auto;
  overflow: visible;
  transform: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid rgba(255, 255, 255, 0.4); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
}

nav.scrolled .nav-brand img {
  height: 22px;
}

nav.scrolled .nav-cta {
  opacity: 1;
  max-width: 220px;
  padding: 0 24px;
  margin: 0;
  pointer-events: auto;
  overflow: visible;
  transform: none;
  background: var(--blue);
  color: white;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
  transition:
    all 0.4s ease,
    border-radius 0s,
    height 0s,
    width 0s,
    padding 0s,
    max-width 0s;
  font-size: 14px;
}

nav.scrolled .nav-links a {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s;
}

nav.scrolled .nav-links a:hover {
  color: var(--blue);
}

/* Specific adjustments for scrolled mobile view */
@media (max-width: 768px) {
  nav.scrolled {
    width: 92%;
    max-width: 500px;
    padding: 0 20px;
    justify-content: space-between;
    gap: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  nav.scrolled .nav-brand {
    opacity: 1;
    width: auto;
    max-width: 100px;
    pointer-events: auto;
    transform: none;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  nav.scrolled .nav-links {
    display: none;
  }
  nav.scrolled .nav-hamburger {
    display: flex;
    margin-left: auto;
  }
  nav.scrolled .nav-cta {
    display: none;
  }
}

/* ─── HERO ─── */
.hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 72px 2rem 80px;
  text-align: center;
}

.bars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

/* Decorative rounded pill shapes */
.hero-pill {
  position: absolute;
  border-radius: 100px;
  background: #e8e8e4;
  z-index: 1;
}
.hero-pill-left {
  width: 260px;
  height: 56px;
  top: 72px;
  left: -40px;
}
.hero-pill-right {
  width: 200px;
  height: 52px;
  top: 56px;
  right: -20px;
}
.hero-pill-right-2 {
  width: 180px;
  height: 48px;
  top: 160px;
  right: 20px;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.15;
}

.highlight-yellow {
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: 6px;
  font-style: italic;
  display: inline-block;
}

.hero p {
  font-size: 16px;
  color: #6b6b65;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.aws-badge-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.aws-badge-label {
  font-size: 11px;
  font-weight: 700;
  color: #9a9a94;
  letter-spacing: 1px;
}

.aws-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 7px 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.aws-logo span {
  font-size: 13px;
  font-weight: 700;
  color: #252f3e;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.2px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 14px 2rem;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  border-right: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}
.stat-item:last-child {
  border-right: none;
}

.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.stat-dot.green {
  background: var(--green);
}
.stat-dot.orange {
  background: var(--orange);
}
.stat-dot.purple {
  background: var(--purple);
}

/* ─── SCREENSHOTS ─── */
.screenshots {
  background: white;
  padding: 20px 0 20px;
  overflow: visible;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  padding: 40px 60px 20px;
  justify-content: center;
  align-items: center;
}

.screenshot-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(var(--base-y)) rotate(var(--base-rot));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(var(--base-y)) rotate(var(--base-rot));
  }
  50% {
    transform: translateY(calc(var(--base-y) - 15px))
      rotate(calc(var(--base-rot) + 0.5deg));
  }
}

.screenshot-card:hover {
  transform: translateY(calc(var(--base-y) - 20px)) scale(1.05) !important;
  z-index: 10 !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.sc-1 {
  width: 270px;
  height: 190px;
  --base-y: 10px;
  --base-rot: -1.5deg;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  animation-duration: 7s;
  animation-delay: 0.1s;
}
.sc-2 {
  width: 320px;
  height: 230px;
  --base-y: -20px;
  --base-rot: 0deg;
  z-index: 3;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  animation-duration: 5s;
  animation-delay: 0.2s;
}
.sc-3 {
  width: 290px;
  height: 205px;
  --base-y: -8px;
  --base-rot: 1deg;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  animation-duration: 8s;
  animation-delay: 0.3s;
}
.sc-4 {
  width: 240px;
  height: 178px;
  --base-y: 6px;
  --base-rot: 1.8deg;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.13);
  animation-duration: 6s;
  animation-delay: 0.4s;
}

.screenshot-card .mock-screen {
  width: 100%;
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── SECTION LABEL ─── */
.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* .section-label::before,
.section-label::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--blue);
  opacity: 0.4;
} */

/* ─── BENEFITS ─── */
.benefits {
  padding: 72px 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: var(--black);
}

.highlight-orange {
  background: #fddcb5;
  padding: 1px 6px;
  border-radius: 5px;
  font-style: italic;
  font-weight: 700;
}

.benefits-header p {
  font-size: 15px;
  color: #6b6b65;
}

.benefits-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefits-big-card {
  background: #fbfdff;
  border: 1px solid #ebf5ff;
  border-radius: 20px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 16px;
}

.benefit-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 18px;
}

.benefit-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  flex-shrink: 0;
}

.benefit-left h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.benefit-left p {
  font-size: 15px;
  color: #6b6b65;
  line-height: 1.6;
  margin-bottom: 28px;
}

.benefit-buttons {
  display: flex;
  gap: 10px;
}

.btn-cotizar {
  background: var(--blue);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-cotizar:hover {
  background: #1d4ed8;
}

.btn-agendar {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-agendar:hover {
  background: var(--gray-100);
}

.benefit-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.notif-content {
  flex: 1;
}

.notif-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notif-indent {
  margin-left: 32px;
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.notif-dot.red {
  background: #dc2626;
}
.notif-dot.green {
  background: #16a34a;
}
.notif-dot.blue {
  background: #2563eb;
}
.notif-dot.purple {
  background: #7c3aed;
}
.notif-dot.orange {
  background: #ea580c;
}

.notif-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  flex: 1;
}

.notif-pill {
  height: 6px;
  width: 28px;
  border-radius: 3px;
  flex-shrink: 0;
}
.blue-pill {
  background: var(--blue);
}

.notif-icon-search {
  font-size: 16px;
  opacity: 0.35;
  flex-shrink: 0;
}

.notif-meta {
  font-size: 11.5px;
  color: #9a9a94;
  padding-left: 16px;
  line-height: 1.4;
}

/* ─── TWO COL CARDS ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 0 72px;
}

.feature-card {
  border-radius: 20px;
  padding: 40px 44px;
  border: 1px solid var(--gray-200);
}

.fc-gray {
  background: #f8f8f6;
}
.fc-beige {
  background: #faf7f2;
  border-color: #ede8df;
}

.feature-card-tag {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fc-tag-plain {
  color: #6b6b65;
}
.fc-tag-blue {
  color: var(--blue);
}

.fc-title-blue {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.fc-title-brown {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 15px;
  color: #6b6b65;
  line-height: 1.65;
}

/* ─── MODULES ─── */
.modules {
  padding: 80px 2rem;
  background: #fbfdff;
  /* border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200); */
}

.modules-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.modules-header {
  text-align: center;
  margin-bottom: 56px;
}

.modules-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.highlight-blue-u {
  background: #d7f3ff;
  padding: 2px 6px;
  border-radius: 4px;
  font-style: italic;
}

.highlight-yellow-u {
  background: var(--yellow);
  padding: 2px 6px;
  border-radius: 4px;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #b45309;
}

.modules-header p {
  font-size: 16px;
  color: var(--gray-500);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.module-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.module-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
  border-color: #d1d5db;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.module-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
  font-family: "Sora", sans-serif;
}
.module-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.modules-cta {
  background: #ebf5ff; /* Matches image blue */
  border: 1px solid rgba(0, 122, 219, 0.08);
  border-radius: 16px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  max-width: 1200px;
  margin: 40px auto 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.modules-cta div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modules-cta p {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  font-family: "Sora", sans-serif;
}

.modules-cta span {
  font-size: 14px;
  color: #007adb;
  font-weight: 500;
  display: block;
}

.modules-cta .btn-primary {
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 600;
  background: #0084ff;
  border: none;
  font-size: 14px;
}
/* ─── INDUSTRIES ─── */
.industries {
  padding: 80px 2rem;
  background: var(--white);
  /* border-top: 1px solid var(--gray-200); */
}

.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.industries-header {
  text-align: center;
  margin-bottom: 56px;
}

.industries-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.highlight-green {
  background: #bbf7d0;
  padding: 2px 6px;
  border-radius: 4px;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--green);
}

.industries-header p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
}

.industries-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ind-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 10px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid #f1f5f9;
  background: var(--white);
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.ind-tab:hover,
.ind-tab.active {
  border-color: #3b82f6;
  color: #1e293b;
  background: var(--white);
}

.ind-icon-box {
  width: 32px;
  height: 32px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.2s;
}

/* ─── SCROLL REVEAL (PERRONA) ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
  visibility: hidden;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* Reveal Delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Enhanced Card Hovers */
.module-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #3b82f666 !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

.ind-tab:hover {
  transform: scale(1.05);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
}

.industries-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid var(--gray-200);
  padding-top: 40px;
}

.ind-stat {
  text-align: center;
}

.ind-stat .big-number {
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.ind-stat .big-number span {
  color: var(--blue);
}

.ind-stat p {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 2rem 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
  line-height: 1.6;
}

.footer-links h5 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── RESPONSIVE ─── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .benefits-big-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .testimonios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .integrations-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    gap: 32px;
  }
  .industries-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile L: 768px */
@media (max-width: 768px) {
  /* Navbar */
  nav {
    padding: 0 1.25rem;
    height: 56px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none !important;
  }

  /* Hero */
  .hero {
    padding: 48px 1.25rem 52px;
  }
  .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-pill-left {
    width: 160px;
    height: 40px;
    top: 48px;
    left: -30px;
  }
  .hero-pill-right {
    width: 120px;
    height: 36px;
    top: 40px;
    right: -10px;
  }
  .hero-pill-right-2 {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .aws-badge-hero {
    flex-direction: column;
    gap: 8px;
  }

  /* Stats strip */
  .stats-strip {
    gap: 0;
    padding: 12px 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    padding: 4px 12px;
    font-size: 12px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    width: 50%;
    justify-content: center;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .stat-item:last-child {
    border-bottom: none;
    width: 100%;
  }

  /* Screenshots */
  .screenshots {
    padding: 20px 0 40px;
  }
  .screenshots-track {
    gap: 12px;
    padding: 20px 20px 10px;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .sc-1 {
    width: 200px;
    height: 145px;
    transform: none;
  }
  .sc-2 {
    width: 220px;
    height: 165px;
    transform: none;
  }
  .sc-3 {
    width: 210px;
    height: 155px;
    transform: none;
  }
  .sc-4 {
    width: 190px;
    height: 140px;
    transform: none;
  }

  /* Benefits */
  .benefits {
    padding: 48px 1.25rem 0;
  }
  .benefits-header h2 {
    font-size: 26px;
  }
  .benefits-big-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    margin-bottom: 12px;
  }
  .benefit-left h3 {
    font-size: 22px;
  }
  .notif-indent {
    margin-left: 0;
  }
  .benefit-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .btn-cotizar,
  .btn-agendar {
    text-align: center;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 48px;
  }
  .feature-card {
    padding: 28px 24px;
  }
  .fc-title-blue,
  .fc-title-brown {
    font-size: 22px;
  }

  /* Modules */
  .modules {
    padding: 48px 1.25rem;
  }
  .modules-header h2 {
    font-size: 26px;
  }
  .modules-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .modules-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .modules-cta .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Industries */
  .industries {
    padding: 48px 1.25rem;
  }
  .industries-header h2 {
    font-size: 26px;
  }
  .industries-tabs {
    gap: 6px;
  }
  .ind-tab {
    font-size: 13px;
    padding: 7px 14px;
  }
  .industries-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 28px;
  }
  .ind-stat .big-number {
    font-size: 36px;
  }

  /* Integrations */
  .integraciones {
    padding: 48px 1.25rem;
  }
  .integraciones-header h2 {
    font-size: 26px;
  }
  .integrations-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Testimonios */
  .testimonios {
    padding: 48px 1.25rem;
  }
  .testimonios-header h2 {
    font-size: 26px;
  }
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-thumb {
    height: 180px;
  }
  .video-iframe-container {
    height: 180px;
  }

  /* Footer */
  footer {
    padding: 40px 1.25rem 32px;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-links {
    min-width: 0;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile S: 480px */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .industries-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .ind-stat .big-number {
    font-size: 30px;
  }
  .stat-item {
    width: 100%;
    border-right: none !important;
  }
  .stat-item:nth-child(odd) {
    border-right: none !important;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .industries-tabs .ind-tab-icon + span {
    display: none;
  }
  .ind-tab {
    padding: 8px 12px;
  }
  .notif-meta {
    font-size: 10.5px;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
  display: block;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 1.25rem 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  animation: fadeUp 0.6s ease both;
}
.hero p {
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-buttons {
  animation: fadeUp 0.6s ease 0.2s both;
}

.integraciones {
  padding: 80px 2rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.integraciones-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.integraciones-header {
  text-align: center;
  margin-bottom: 56px;
}

.integraciones-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.integraciones-header p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 18px 20px;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
  cursor: default;
}
.integration-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--gray-300);
}

.integration-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.integration-info {
  flex: 1;
  min-width: 0;
}

.integration-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  font-family: "Sora", sans-serif;
  margin-bottom: 3px;
}

.integration-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
}

.integration-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
.integration-status.active {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.integrations-footer {
  text-align: center;
  padding-top: 8px;
}

.integrations-footer p {
  font-size: 14px;
  color: var(--gray-500);
}

.integrations-footer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.integrations-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}

.testimonios {
  padding: 80px 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.testimonios-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonios-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonios-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.testimonios-header p {
  font-size: 16px;
  color: var(--gray-500);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonio-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.testimonio-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.video-wrapper {
  position: relative;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-mock {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 60px;
  opacity: 0.8;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}
.video-wrapper:hover .video-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  padding-left: 4px;
}
.video-wrapper:hover .play-btn {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.play-btn svg {
  fill: var(--black);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
}

.video-logo-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: white;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.video-player-container {
  width: 100%;
  height: 220px;
}
.video-player-container video {
  width: 100%;
  height: 100%;
}

.testimonio-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 12px;
}

.testimonio-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Sora", sans-serif;
}

.testimonio-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  font-family: "Sora", sans-serif;
}

.testimonio-role {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.testimonio-stars {
  margin-left: auto;
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testimonio-quote {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  padding: 0 24px 16px;
  font-style: italic;
}

.testimonio-tags {
  display: flex;
  gap: 6px;
  padding: 0 24px 20px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

@media (max-width: 680px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── AWS BADGE ─── */
.aws-badge-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.aws-badge-label,
.aws-featured-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.aws-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 7px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.aws-logo span {
  font-size: 13px;
  font-weight: 700;
  color: #252f3e;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.3px;
}

.aws-featured-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.aws-logo-dark {
  background: #f8f9fb;
  border-color: #dde1e8;
}
