:root {
  --bg-body: #f6f8fc;
  --bg-card: #ffffff;
  --bg-alt: #eef2ff;
  --primary: #0a2540;
  --primary-soft: rgba(10, 37, 64, 0.1);
  --accent: #635bff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --border-subtle: #e2e8f0;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 30px 60px rgba(15, 23, 42, 0.12);
  --transition-fast: 150ms ease-out;
  --transition-med: 220ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: #f8fafc;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Ajustar tamaño del logo */
.logo-img {
  width: 6px; /* Ajusta este valor a lo que necesites */
  height: 4px; /* Mantener la proporción del logo */
}


/* UTILIDADES */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

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

.section-subtitle {
  max-width: 560px;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(10px);
  transition: opacity 620ms ease, transform 620ms ease, filter 620ms ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal][data-reveal-delay] {
  transition-delay: calc(var(--reveal-delay, 0ms));
}

/* BOTONES */

.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: #0a2540;
  color: white;
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(148, 163, 184, 0.6);
  color: #0f172a;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
}

.full-btn {
  width: 100%;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(120deg, #7c3aed 0%, #6366f1 18%, #f97316 52%, #ef4444 74%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  overflow: visible;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

.nav a {
  font-size: 0.94rem;
  text-decoration: none;
  color: #0a2540;
  font-weight: 700;
  position: relative;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: color var(--transition-fast);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: width var(--transition-fast);
}

.nav a:hover {
  color: #0a2540;
  transform: none;
  box-shadow: none;
}

.nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header .nav-actions .btn-outline {
  background: #ffffff;
  color: #c81e1e;
  border-color: transparent;
  box-shadow: none;
  font-weight: 600;
}

.header .nav-actions .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.header .nav-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
}

/* MEGA MENU */

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 1.2rem 0 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-med), transform var(--transition-med);
}

.mega-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-content {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.2rem 1rem;
  color: #0f172a;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mega-column {
  padding: 0.2rem 0.6rem;
  border-right: 1px solid rgba(226, 232, 240, 0.8);
}

.mega-column:last-child {
  border-right: none;
}

.mega-column.slim {
  max-width: 240px;
}

.mega-title {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
  font-weight: 700;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.65rem;
}

.solutions-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

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

.mega-grid.solutions-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.mega-item:hover {
  border-color: rgba(99, 91, 255, 0.35);
  box-shadow: 0 12px 26px rgba(99, 91, 255, 0.16);
  transform: translateY(-1px);
}

.mega-item strong {
  display: block;
  font-size: 0.93rem;
}

.mega-item span {
  display: block;
  font-size: 0.82rem;
  color: #475569;
}

.mega-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0e7ff, #eef2ff);
}

.icon-payments {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}
.icon-terminal {
  background: linear-gradient(135deg, #22d3ee, #6366f1);
}
.icon-radar {
  background: linear-gradient(135deg, #f472b6, #6366f1);
}
.icon-boost {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}
.icon-connect {
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
}
.icon-payouts {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}
.icon-financial {
  background: linear-gradient(135deg, #10b981, #34d399);
}
.icon-capital {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.icon-issuing {
  background: linear-gradient(135deg, #a855f7, #6366f1);
}
.icon-billing {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}
.icon-revenue {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}
.icon-sigma {
  background: linear-gradient(135deg, #ec4899, #6366f1);
}
.icon-pipeline {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}
.icon-tax {
  background: linear-gradient(135deg, #22c55e, #a855f7);
}

.mega-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.mega-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #eef2ff;
  border-radius: 12px;
  padding: 0.35rem 0.55rem;
  font-size: 0.8rem;
  color: #0f172a;
}

.pill-sub {
  color: #475569;
  font-size: 0.78rem;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.mega-links a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.mega-links a:hover {
  color: #4f46e5;
}

/* NAV TOGGLE (MOBILE) */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* HERO */

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  color: #0f172a;
  overflow: hidden;
  background: linear-gradient(120deg, #f97316 0%, #f43f5e 18%, #a855f7 45%, #22d3ee 70%, #0ea5e9 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% 35% -25%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.35), transparent 50%);
  filter: blur(16px);
  opacity: 0.8;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18% -30% -30% -18%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 60%, rgba(255, 255, 255, 0.78) 100%);
  transform: rotate(-6deg);
  box-shadow: 0 30px 90px rgba(10, 37, 64, 0.25);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(160deg, #0f172a 0%, #0a2540 40%, #2563eb 65%, #0ea5e9 85%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #1f2937;
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 1.6rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #334155;
  margin-bottom: 0.5rem;
}

.eyebrow-sm {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5b4fc;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.8rem;
}

.hero-social span {
  color: #475569;
}

.hero-social a {
  text-decoration: none;
  color: #0f172a;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.78rem;
}

.hero-social a:hover {
  border-color: var(--primary);
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.phone-mockup {
  position: relative;
  background: #ffffff;
  padding: 0.35rem;
  border-radius: 32px;
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.phone-screen {
  width: min(270px, 68vw);
  height: 480px;
  border-radius: 26px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.phone-notch {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #e2e8f0;
  border-radius: 999px;
}

/* LOGIN */

.login-section {
  padding: 4.5rem 0;
  background: linear-gradient(150deg, rgba(59, 130, 246, 0.12), rgba(236, 72, 153, 0.12), rgba(14, 165, 233, 0.12));
}

.login-shell {
  display: flex;
  justify-content: center;
}

.login-card {
  background: #ffffff;
  max-width: 560px;
  width: 100%;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.login-card h2 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: #1f2937;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.login-form label {
  font-size: 0.92rem;
  color: #1f2937;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  background: #ffffff;
  color: #0f172a;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.25);
}

.login-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link-muted {
  font-size: 0.9rem;
  color: #6366f1;
  text-decoration: none;
}

.remember {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #334155;
}

.remember input {
  accent-color: #8b5cf6;
  width: 16px;
  height: 16px;
}

.login-submit {
  margin-top: 0.2rem;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  border: none;
  box-shadow: 0 16px 40px rgba(129, 140, 248, 0.35);
}

.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.login-divider span:first-child,
.login-divider span:last-child {
  height: 1px;
  background: #e2e8f0;
  display: block;
}

.login-alt {
  width: 100%;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  color: #0f172a;
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.login-alt:hover {
  border-color: #818cf8;
  box-shadow: 0 10px 24px rgba(129, 140, 248, 0.16);
}

.login-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #475569;
  margin: 0.5rem 0 0;
}

.login-footer a {
  color: #6366f1;
  text-decoration: none;
}

/* SOLUCIONES PAGE */

.solutions-body {
  background: #f8fafc;
}

.solutions-wrapper {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.solutions-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.8rem;
  display: grid;
  gap: 1.4rem;
}

.solutions-section .mega-title {
  margin-bottom: 0.9rem;
}

.solutions-grid {
  display: grid;
  gap: 0.75rem 1rem;
}

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

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

.solutions-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: #0f172a;
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.solutions-item span {
  font-weight: 500;
  color: #475569;
}

.solutions-item::before {
  content: attr(data-icon);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
}

.solutions-divider {
  height: 1px;
  background: rgba(226, 232, 240, 0.9);
}

@media (max-width: 900px) {
  .solutions-grid.three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .solutions-grid.two-cols,
  .solutions-grid.three-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* SOLUCIONES PAGE */



.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #0f172a;
}

.phone-header .badge {
  background: rgba(99, 91, 255, 0.14);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-size: 0.75rem;
  color: #4338ca;
}

.phone-chart {
  flex: 1;
  margin-top: 0.2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #f1f5f9, #ffffff);
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

.phone-chart::before,
.phone-chart::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 18px;
  border: 1px dashed rgba(15, 23, 42, 0.06);
}

.phone-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.phone-card {
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.phone-card p {
  margin: 0;
  font-size: 0.72rem;
  color: #475569;
}

.phone-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1rem;
}

/* HERO BADGES */

.hero-badges {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge-row span {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-grid h2 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.about-grid p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FEATURES */

.features-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.22), transparent 52%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

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

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-card ul {
  padding-left: 1.1rem;
  margin: 0;
  list-style: disc;
  color: #e5e7eb;
  font-size: 0.84rem;
}

/* PLANS */

.plans-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.plan-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.plan-card-featured {
  border-color: rgba(99, 91, 255, 0.4);
  box-shadow: 0 24px 50px rgba(99, 91, 255, 0.2);
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 244, 255, 0.92) 100%);
}

.plan-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(22, 163, 74, 0.2);
  color: #bbf7d0;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.5);
}

.plan-card h3 {
  margin: 0;
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  font-size: 0.84rem;
  color: #e5e7eb;
}

.plan-features li {
  margin-bottom: 0.3rem;
}

/* NEWSLETTER */

.newsletter {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  padding: 1.8rem 1.6rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.newsletter h2 {
  margin: 0 0 0.4rem;
}

.newsletter p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter-form input {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--text-main);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-feedback {
  font-size: 0.75rem;
  min-height: 1rem;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  margin-top: 2.8rem;
  padding: 2.5rem 0 1.6rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.4rem 0;
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .mega-menu {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .about-grid,
  .plans-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .newsletter {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.9rem 1rem;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 180px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
