:root {
  --black: #050607;
  --black-2: #101318;
  --green: #7cff00;
  --green-2: #43b000;
  --green-3: #caff70;
  --white: #ffffff;
  --soft: #f5f7fb;
  --text: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.10);
  --shadow: 0 24px 70px rgba(9, 18, 30, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 80% 5%, rgba(124, 255, 0, 0.11), transparent 25%), linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f4f8ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 14px;
  z-index: 50;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 55px rgba(16, 24, 40, 0.10);
  backdrop-filter: blur(18px);
}

.brand img { width: 170px; height: 52px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; }
.main-nav a { color: #0d1117; opacity: .85; }
.main-nav a:hover { color: var(--green-2); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.mobile-menu-btn { display: none; border: 0; background: #101318; color: white; border-radius: 14px; padding: 10px 12px; font-size: 20px; }

.language-switch { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 900; color: #3f4652; }
.switch { position: relative; width: 48px; height: 26px; display: inline-block; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: #e6ebf2; border-radius: 50px; transition: .25s; border: 1px solid rgba(17,24,39,.12); }
.slider:before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 2px; background: var(--black); border-radius: 50%; transition: .25s; box-shadow: 0 3px 8px rgba(0,0,0,.25); }
.switch input:checked + .slider { background: rgba(124,255,0,.35); }
.switch input:checked + .slider:before { transform: translateX(21px); background: var(--green-2); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 17px; padding: 13px 20px; font-weight: 900; font-size: 14px; border: 1px solid transparent; transition: .22s ease; white-space: nowrap; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, #101318, #050607); border-color: rgba(124,255,0,.45); box-shadow: 0 14px 30px rgba(67,176,0,.26), inset 0 -10px 20px rgba(124,255,0,.16); }
.btn-dark { color: white; background: #050607; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.btn-soft { background: white; color: #111827; border-color: rgba(17,24,39,.08); box-shadow: 0 12px 30px rgba(16,24,40,.08); }
.btn-outline { background: white; color: #13200e; border-color: rgba(67,176,0,.35); box-shadow: 0 12px 30px rgba(67,176,0,.08); }

.hero { width: min(1180px, calc(100% - 32px)); margin: 54px auto 26px; display: grid; grid-template-columns: 1fr 1.05fr; gap: 30px; align-items: center; min-height: 600px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); color: #344054; font-size: 14px; font-weight: 700; }
.eyebrow span:first-child { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 16px var(--green); }
.hero h1 { margin: 22px 0 18px; font-size: clamp(42px, 6vw, 78px); line-height: .96; letter-spacing: -4px; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--green-2); position: relative; }
.hero h1 strong:after { content: ""; display: block; width: 330px; max-width: 70%; height: 10px; border-bottom: 6px solid var(--green); border-radius: 50%; margin-top: -6px; transform: rotate(-2deg); }
.hero p { color: var(--muted); font-size: 18px; line-height: 1.65; max-width: 560px; margin: 0 0 28px; }
.hero-buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.phone { width: 230px; height: 470px; border: 10px solid #101318; border-radius: 42px; background: #f8fafc; box-shadow: 0 34px 70px rgba(16,24,40,.25); position: absolute; overflow: hidden; }
.phone-one { transform: rotate(-8deg) translateX(-70px); z-index: 2; }
.phone-two { transform: rotate(8deg) translateX(95px) translateY(20px); z-index: 1; }
.phone-notch { position: absolute; left: 50%; transform: translateX(-50%); top: 9px; width: 75px; height: 22px; background: #050607; border-radius: 999px; z-index: 2; }
.phone-screen { padding: 42px 18px 18px; height: 100%; background: linear-gradient(180deg, #ffffff, #f8fbff); }
.phone-top { display: flex; justify-content: space-between; font-size: 10px; font-weight: 900; margin-bottom: 18px; }
.phone-screen h3 { margin: 0 0 4px; font-size: 18px; }
.phone-screen p { font-size: 12px; line-height: 1.4; margin: 0 0 14px; color: #667085; }
.chart-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: 0 16px 35px rgba(16,24,40,.08); }
.chart-card small { color: #667085; font-weight: 700; }
.chart-card strong { display: block; margin: 5px 0 12px; font-size: 21px; }
.mini-chart { height: 90px; border-radius: 12px; background: linear-gradient(180deg, rgba(124,255,0,.42), rgba(124,255,0,.06)), linear-gradient(135deg, transparent 10%, rgba(67,176,0,.8) 11%, transparent 13%, transparent 28%, rgba(67,176,0,.8) 29%, transparent 31%, transparent 46%, rgba(67,176,0,.8) 47%, transparent 49%, transparent 64%, rgba(67,176,0,.8) 65%, transparent 67%, transparent 82%, rgba(67,176,0,.8) 83%, transparent 85%); }
.mini-list { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; margin-top: 10px; background: white; border: 1px solid var(--line); border-radius: 14px; padding: 10px; }
.mini-list span { width: 22px; height: 22px; background: rgba(124,255,0,.35); border-radius: 8px; }
.mini-list p { margin: 0; font-size: 11px; font-weight: 700; }
.mini-list b { color: var(--green-2); }
.app-phone-icon { width: 112px; height: 112px; border-radius: 28px; margin: 28px auto 18px; box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.app-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-actions span { background: white; border: 1px solid var(--line); padding: 12px 8px; border-radius: 14px; font-size: 11px; font-weight: 900; text-align: center; }
.glow-ring { position: absolute; width: 520px; height: 260px; border: 3px solid rgba(124,255,0,.65); border-radius: 50%; filter: blur(.2px); transform: rotate(-16deg); box-shadow: 0 0 32px rgba(124,255,0,.3); }

.feature-strip { width: min(900px, calc(100% - 32px)); margin: 0 auto 42px; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.9); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.feature-strip div { padding: 22px 26px; display: grid; grid-template-columns: 36px 1fr; gap: 6px 12px; align-items: center; border-right: 1px solid var(--line); }
.feature-strip div:last-child { border-right: 0; }
.feature-strip span { grid-row: span 2; font-size: 26px; }
.feature-strip strong { font-size: 14px; }
.feature-strip small { color: var(--muted); }

.section { width: min(1180px, calc(100% - 32px)); margin: 80px auto; }
.split { display: grid; grid-template-columns: .85fr 1.4fr; gap: 50px; align-items: start; }
.section-label { display: inline-block; color: var(--green-2); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.section h2 { margin: 0 0 16px; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -1.8px; }
.section p { color: var(--muted); line-height: 1.7; font-size: 16px; }
.section-copy p { margin-bottom: 24px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { min-height: 235px; background: rgba(255,255,255,.78); border: 1px solid rgba(17,24,39,.08); border-radius: 28px; padding: 26px; box-shadow: 0 22px 60px rgba(16,24,40,.08); transition: .22s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(124,255,0,.55); }
.service-card.featured { background: radial-gradient(circle at 70% 85%, rgba(124,255,0,.28), transparent 45%), rgba(255,255,255,.9); border-color: rgba(124,255,0,.35); }
.icon { width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, #dcffbd, var(--green)); display: grid; place-items: center; font-size: 28px; box-shadow: 0 12px 30px rgba(67,176,0,.22); }
.service-card h3 { margin: 22px 0 8px; font-size: 20px; }
.service-card p { font-size: 14px; margin: 0; }

.section-heading { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.apps-section { padding: 28px 0; }
.apps-grid { display: grid; grid-template-columns: 1.5fr .9fr .9fr; gap: 22px; }
.app-card { border-radius: 30px; border: 1px solid rgba(17,24,39,.08); background: rgba(255,255,255,.86); box-shadow: var(--shadow); padding: 24px; min-height: 260px; display: flex; gap: 22px; align-items: center; }
.app-card img { width: 150px; height: 150px; border-radius: 34px; box-shadow: 0 18px 45px rgba(0,0,0,.25); }
.app-card h3 { font-size: 28px; margin: 8px 0; }
.app-card p { margin: 0 0 18px; }
.active-app { background: radial-gradient(circle at 85% 10%, rgba(124,255,0,.20), transparent 35%), linear-gradient(135deg, #ffffff, #f7fbff); border-color: rgba(124,255,0,.35); }
.status { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: #eef2f7; color: #455063; font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.status.available { background: rgba(124,255,0,.18); color: #237300; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.card-actions a { font-weight: 900; color: #267a00; border-bottom: 2px solid rgba(124,255,0,.55); }
.placeholder-icon { width: 74px; height: 74px; flex: 0 0 auto; border-radius: 24px; background: #111827; color: var(--green); display: grid; place-items: center; font-size: 38px; font-weight: 900; box-shadow: inset 0 -10px 20px rgba(124,255,0,.12); }
.coming-soon { opacity: .82; }
.coming-soon h3 { font-size: 23px; }

.stats-banner { width: min(1030px, calc(100% - 32px)); margin: 70px auto; border-radius: 30px; background: radial-gradient(circle at 85% 10%, rgba(124,255,0,.28), transparent 38%), linear-gradient(135deg, #07090d, #121821); color: white; min-height: 150px; display: grid; grid-template-columns: 1.5fr repeat(3, .75fr); align-items: center; padding: 28px 34px; gap: 22px; box-shadow: 0 26px 70px rgba(0,0,0,.25); }
.stats-banner h2 { font-size: 30px; line-height: 1.12; margin: 0; }
.stats-banner h2 strong { color: var(--green); }
.stat { border-left: 1px solid rgba(255,255,255,.12); padding-left: 24px; }
.stat strong { display: block; font-size: 28px; color: var(--green); }
.stat span { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 700; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-grid article { position: relative; background: rgba(255,255,255,.75); border: 1px solid rgba(17,24,39,.08); border-radius: 26px; padding: 24px; box-shadow: 0 14px 40px rgba(16,24,40,.06); }
.process-grid article > span { position: absolute; top: -14px; right: 20px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 999px; background: var(--green); color: #183100; font-weight: 900; box-shadow: 0 14px 28px rgba(67,176,0,.25); }
.process-icon { width: 58px; height: 58px; border-radius: 50%; background: white; display: grid; place-items: center; font-size: 23px; box-shadow: 0 12px 30px rgba(16,24,40,.10); margin-bottom: 22px; }
.process-grid h3 { margin: 0 0 8px; }
.process-grid p { font-size: 14px; margin: 0; }

.cta-section { width: min(980px, calc(100% - 32px)); margin: 80px auto; text-align: center; border-radius: 34px; padding: 60px 28px; color: white; background: radial-gradient(circle at 20% 0%, rgba(124,255,0,.22), transparent 35%), linear-gradient(135deg, #050607, #111827); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.cta-section h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -1px; }
.cta-section p { max-width: 670px; margin: 0 auto 26px; color: rgba(255,255,255,.74); line-height: 1.7; }

.site-footer { width: min(1180px, calc(100% - 32px)); margin: 50px auto 28px; padding: 26px; border-radius: 26px; background: white; border: 1px solid rgba(17,24,39,.08); display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: 0 14px 40px rgba(16,24,40,.06); }
.site-footer strong { font-size: 22px; letter-spacing: .05em; }
.site-footer p { margin: 4px 0 0; color: var(--muted); }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; color: #475467; }

.page-hero { width: min(980px, calc(100% - 32px)); margin: 60px auto 28px; text-align: center; }
.page-hero h1 { margin: 12px 0 16px; font-size: clamp(42px, 6vw, 72px); letter-spacing: -3px; line-height: 1; }
.page-hero p { margin: 0 auto; color: var(--muted); max-width: 720px; line-height: 1.7; font-size: 18px; }
.content-card { width: min(980px, calc(100% - 32px)); margin: 28px auto 80px; background: rgba(255,255,255,.86); border: 1px solid rgba(17,24,39,.08); box-shadow: var(--shadow); border-radius: 30px; padding: clamp(28px, 5vw, 56px); }
.legal-content h2 { margin: 34px 0 10px; font-size: 25px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #4b5563; line-height: 1.78; }
.legal-content ul { padding-left: 22px; }
.legal-content strong { color: #111827; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.contact-info { background: linear-gradient(135deg, #050607, #111827); color: white; border-radius: 26px; padding: 28px; box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.contact-info h2 { margin-top: 0; }
.contact-info p { color: rgba(255,255,255,.75); line-height: 1.7; }
.contact-info a { color: var(--green); font-weight: 900; word-break: break-word; }
.info-pill { display: inline-flex; margin-top: 12px; padding: 10px 14px; border-radius: 999px; background: rgba(124,255,0,.13); color: var(--green); font-weight: 900; }
.contact-form { display: grid; gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group label { font-weight: 900; color: #111827; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid rgba(17,24,39,.12); background: #fff; border-radius: 16px; padding: 14px 16px; font: inherit; outline: none; transition: .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(67,176,0,.55); box-shadow: 0 0 0 4px rgba(124,255,0,.15); }
.form-status { margin-bottom: 18px; padding: 14px 16px; border-radius: 16px; font-weight: 800; display: none; }
.form-status.success, .form-status.error { display: block; }
.form-status.success { color: #166534; background: #dcfce7; border: 1px solid #86efac; }
.form-status.error { color: #991b1b; background: #fee2e2; border: 1px solid #fca5a5; }
.hp-field { display: none !important; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.support-card { border: 1px solid rgba(17,24,39,.08); background: #fff; border-radius: 22px; padding: 24px; box-shadow: 0 14px 35px rgba(16,24,40,.06); }
.support-card h3 { margin-top: 0; }
.support-card p, .support-card li { color: #4b5563; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .main-nav { gap: 14px; font-size: 13px; }
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-visual { min-height: 520px; }
  .split { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: 1fr; }
  .stats-banner { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-left: 0; padding-top: 18px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { align-items: center; }
  .brand img { width: 135px; }
  .mobile-menu-btn { display: block; }
  .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 86px; background: white; border-radius: 22px; padding: 18px; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .header-actions .btn { display: none; }
  .hero { margin-top: 34px; }
  .hero h1 { letter-spacing: -2px; }
  .phone { transform: none !important; position: relative; width: 205px; height: 420px; }
  .phone-two { margin-left: -60px; }
  .hero-visual { min-height: 450px; }
  .glow-ring { width: 360px; height: 200px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-strip div:last-child { border-bottom: 0; }
  .app-card { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header { width: min(100% - 20px, 1180px); padding: 12px; }
  .language-switch { font-size: 11px; }
  .hero, .section, .content-card, .page-hero, .cta-section, .stats-banner, .site-footer { width: min(100% - 22px, 1180px); }
  .hero p, .page-hero p { font-size: 16px; }
  .hero-buttons { align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .phone { width: 190px; height: 400px; }
  .phone-two { display: none; }
  .glow-ring { width: 280px; height: 160px; }
  .support-grid { grid-template-columns: 1fr; }
}
html[data-lang="en"] .lang-es { display: none; }
html[data-lang="es"] .lang-en { display: none; }
