/* ══════════════════════════════════════════════
   innovaFACT PERÚ — STYLESHEET
   ══════════════════════════════════════════════ */

:root {
  --blue: #1e3a8a;
  --blue-mid: #25387b;
  --blue-dark: #0f1e4a;
  --blue-deeper: #060d26;
  --orange: #e66424;
  --orange-dark: #c9521a;
  --orange-light: #f97316;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.2);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
address {
  font-style: normal;
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── NAV ─── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  user-select: none;
}
.logo-innova {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.logo-peru {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 100, 36, 0.35);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--blue);
  cursor: pointer;
  padding: 4px;
}

/* ─── BUTTONS ─── */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-white:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ─── SECTION COMMON ─── */
section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--orange);
}
.section-tag.light {
  color: var(--orange);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--blue);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-title.light {
  color: var(--white);
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 540px;
  margin-bottom: 48px;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.55);
}

.section-header {
  margin-bottom: 56px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-tag {
  padding-left: 0;
  display: block;
}
.section-header.center .section-tag::before {
  display: none;
}
.section-header.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-white {
  background: var(--white);
}
.section-gray {
  background: var(--gray-100);
}
.section-dark {
  background: var(--gray-900);
}

/* ─── HERO ─── */
#hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(230, 100, 36, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 30% 60% at 5% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}
.hero-bg-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-title em {
  font-style: normal;
  color: #fbbf24;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-desc strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.trust-item i {
  color: #34d399;
  font-size: 0.85rem;
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.9s 0.3s ease both;
}
.hero-image img {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

/* ─── PLANS ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.plan-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.plan-featured {
  background: var(--blue);
  border-color: var(--orange);
  border-width: 3px;
  transform: scale(1.03);
}
.plan-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-badge-top {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header {
  margin-bottom: 28px;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.plan-featured .plan-name {
  color: var(--white);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}
.plan-featured .price-currency {
  color: var(--white);
}
.price-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -2px;
}
.plan-featured .price-amount {
  color: var(--white);
}
.price-period {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 8px;
  font-weight: 500;
}
.plan-featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}

.plan-saving {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fbbf24;
  font-style: italic;
  margin-top: 6px;
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.92rem;
  color: var(--gray-700);
}
.plan-featured .plan-features li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}
.plan-features li i {
  color: #22c55e;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.plan-featured .plan-features li i {
  color: #fbbf24;
}

.btn-plan-outline {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-plan-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-plan-primary {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(230, 100, 36, 0.4);
}
.btn-plan-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.sunat-benefit {
  max-width: 860px;
  margin: 40px auto 0;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.sunat-benefit i {
  font-size: 2.5rem;
  color: var(--orange);
  flex-shrink: 0;
}
.sunat-benefit h4 {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 6px;
}
.sunat-benefit p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ─── REQUISITOS ─── */
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.req-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.req-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: all var(--transition);
}
.req-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(230, 100, 36, 0.4);
  transform: translateY(-3px);
}
.req-card i {
  font-size: 1.6rem;
  color: var(--orange);
}
.req-card span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req-image img {
  border-radius: var(--radius);
  border: 6px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-xl);
  opacity: 0.9;
}

/* ─── DEMO ─── */
.demo-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.demo-credentials {
  padding: 36px 40px;
}

.demo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 8px;
}
.demo-item:last-child {
  border-bottom: none;
}

.demo-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-500);
}
.demo-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  font-family: 'Courier New', monospace;
}
.demo-value.link {
  color: var(--orange);
}
.demo-value.link:hover {
  text-decoration: underline;
}

.demo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: background var(--transition);
}
.demo-btn:hover {
  background: var(--orange);
}

/* ─── FAQ ─── */
.faq-container .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--orange);
}

.faq-item > p {
  padding: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 640px;
}
.faq-item > p a {
  color: var(--orange);
  font-weight: 600;
}
.faq-item > p a:hover {
  text-decoration: underline;
}

/* ─── CTA ─── */
.section-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(230, 100, 36, 0.1), transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-title em {
  font-style: normal;
  color: #fbbf24;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-white-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-white-cta i {
  color: #22c55e;
  font-size: 1.1rem;
}
.btn-white-cta:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-white-cta:hover i {
  color: var(--white);
}

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline-cta:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── FOOTER ─── */
#footer {
  background: var(--blue-deeper);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--orange);
}

.footer-col address p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col address i {
  color: var(--orange);
  width: 16px;
  flex-shrink: 0;
}
.footer-col address a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.footer-col address a:hover {
  color: var(--orange);
}

.footer-bottom {
  background: #02060f;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: waPop 1s 2s ease both;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

@keyframes waPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
  .req-grid {
    grid-template-columns: 1fr;
  }
  .req-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 14px 32px;
    display: block;
    font-size: 0.9rem;
  }
  .nav-links a::after {
    display: none;
  }
  #navbar {
    position: relative;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .plan-featured {
    transform: none;
  }
  .plan-featured:hover {
    transform: translateY(-6px);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-white,
  .btn-outline-white {
    text-align: center;
    justify-content: center;
  }
  .demo-credentials {
    padding: 24px 20px;
  }
  .sunat-benefit {
    flex-direction: column;
    text-align: center;
  }
  .sunat-benefit i {
    display: none;
  }
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.video-wrapper iframe,
.video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
