/* =============================================
   PyM Asesores en Sistemas — Website Styles
   Brand: #2f4858 · #d4662a · #5fa8d3
   ============================================= */

:root {
  --brand: #2f4858;
  --brand-light: #3d6179;
  --brand-dark: #1e3040;
  --accent: #d4662a;
  --accent-hover: #b8551f;
  --accent-soft: rgba(212, 102, 42, 0.12);
  --blue: #5fa8d3;
  --blue-soft: rgba(95, 168, 211, 0.15);
  --bg: #ffffff;
  --bg-alt: #f6f9fc;
  --bg-dark: #1a2836;
  --text: #1a2332;
  --text-muted: #5c6b7a;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(47, 72, 88, 0.08);
  --shadow-lg: 0 20px 60px rgba(47, 72, 88, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: 0.3s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 102, 42, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.section .btn--outline {
  color: var(--brand);
  border-color: var(--brand);
}

.section .btn--outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn--large {
  padding: 14px 28px;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--brand);
}

.nav__logo strong {
  font-weight: 800;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--brand);
  background: var(--bg-alt);
}

.nav__link--cta {
  background: var(--accent);
  color: #fff !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--accent-hover);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--brand);
  cursor: pointer;
  padding: 8px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 40%, var(--brand-light) 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 102, 42, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(95, 168, 211, 0.15) 0%, transparent 50%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero__text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat__suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero visual cards */
.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.hero__card--main {
  position: relative;
  z-index: 2;
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero__card-header strong {
  display: block;
  color: var(--brand);
  font-size: 1.1rem;
}

.hero__card-header span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.mini-module {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand);
}

.mini-module i {
  color: var(--accent);
  font-size: 0.9rem;
}

.hero__card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__card--float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero__card--float i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero__card--top {
  top: -10px;
  right: -20px;
  animation-delay: 0s;
}

.hero__card--bottom {
  bottom: 20px;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section__header--light .section__kicker,
.section__header--light h2,
.section__header--light p {
  color: #fff;
}

.section__header--light p {
  opacity: 0.85;
}

.section__kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.about-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--accent);
}

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.service-item i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- PyM Suite ---- */
.pym-suite__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.pym-suite__info h2 {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 16px;
}

.feature-list {
  margin: 28px 0 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.pym-suite__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.platform-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.platform-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.platform-card i {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.platform-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.platform-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- Modules ---- */
.modules-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.module-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.module-tab:hover {
  border-color: var(--brand-light);
  color: var(--brand);
}

.module-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.module-tab.active i {
  color: var(--accent);
}

.module-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.module-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.module-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.module-card i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.module-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.module-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.module-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, var(--accent-soft), var(--blue-soft));
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.module-highlight i {
  font-size: 1.5rem;
  color: var(--accent);
}

.module-highlight strong {
  display: block;
  color: var(--brand);
  margin-bottom: 4px;
}

.module-highlight p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Packages ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card--featured {
  border-color: var(--accent);
  background: linear-gradient(to bottom, #fff, var(--accent-soft));
}

.package-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--accent);
}

.package-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.package-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.package-card__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-light);
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---- Deploy ---- */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.deploy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.deploy-card--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.deploy-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.deploy-card__header i {
  font-size: 1.6rem;
  color: var(--accent);
}

.deploy-card__header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
}

.deploy-card ul li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.deploy-card ul li:last-child {
  border-bottom: none;
}

.deploy-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.deploy-card__ideal {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--blue-soft);
  padding: 6px 12px;
  border-radius: 6px;
}

/* ---- Timeline ---- */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.timeline__item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  transition: var(--transition);
}

.timeline__item:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline__step {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.timeline__item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.timeline__item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.impl-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.impl-note strong {
  color: var(--accent);
}

/* ---- Advantages ---- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage {
  text-align: center;
  padding: 24px;
}

.advantage i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.advantage h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantage p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ---- Contact ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: var(--transition);
}

a.contact-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--accent);
  width: 32px;
  text-align: center;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--brand);
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}

.contact-cta img {
  margin: 0 auto 20px;
}

.contact-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-cta p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-cta .btn--outline {
  margin-top: 12px;
}

/* ---- Footer ---- */
.footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.footer__brand span {
  font-size: 0.82rem;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__copy {
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pym-suite__layout {
    grid-template-columns: 1fr;
  }

  .packages-grid,
  .deploy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nav__link--cta {
    margin-left: 0;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero__card--float {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .about-grid,
  .services-grid,
  .packages-grid,
  .deploy-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .deploy-card--featured {
    transform: none;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .modules-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .module-tab {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    gap: 20px;
  }

  .hero__modules-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .pym-suite__features {
    grid-template-columns: 1fr;
  }
}
