:root {
  --bg: #08111f;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: #111c34;
  --surface: #ffffff;
  --text: #e5edf8;
  --muted: #a8b5c8;
  --heading: #ffffff;
  --primary: #e53935;
  --primary-dark: #b71c1c;
  --secondary: #1e293b;
  --line: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(229,57,53,0.18), transparent 26%),
    radial-gradient(circle at right center, rgba(59,130,246,0.14), transparent 25%),
    linear-gradient(180deg, #060d19 0%, #0a1424 45%, #08111f 100%);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; background: #fff; color: #000; padding: .75rem 1rem; border-radius: .75rem; z-index: 1000;
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(6, 13, 25, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 1rem;
}
.brand img { display: block; }
.site-nav {
  display: flex; align-items: center; gap: 1.2rem;
}
.site-nav a {
  font-weight: 500; color: var(--muted); transition: .25s ease;
}
.site-nav a:hover, .site-nav a:focus { color: #fff; }
.nav-toggle {
  display: none; background: transparent; border: 0; width: 48px; height: 48px; padding: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; margin: 7px 0; background: #fff; border-radius: 999px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.35rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover, .btn:focus { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff6b5f);
  color: #fff; box-shadow: 0 12px 34px rgba(229,57,53,0.35);
}
.btn-primary:hover, .btn-primary:focus { box-shadow: 0 18px 44px rgba(229,57,53,0.44); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.08);
}
.btn-outline {
  border-color: rgba(255,255,255,0.12); color: #fff; background: transparent;
}
.btn-sm { padding: .72rem 1.1rem; }
.btn-full { width: 100%; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .8rem; border-radius: 999px;
  background: rgba(229,57,53,0.12); color: #ffb0ab; font-size: .86rem; font-weight: 700; letter-spacing: .02em;
  margin-bottom: 1rem;
}
.hero { padding: 4.6rem 0 3rem; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 2.2rem; align-items: center;
}
.hero-copy h1 {
  margin: 0 0 1rem; color: var(--heading); font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.05;
}
.hero-copy p {
  margin: 0; font-size: 1.08rem; color: var(--muted); max-width: 760px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.4rem; }
.hero-points {
  list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1rem;
}
.hero-points li {
  position: relative; padding-left: 1.3rem; color: #d6e2f4;
}
.hero-points li::before {
  content: ''; width: .55rem; height: .55rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff8d84); position: absolute; left: 0; top: .65rem;
}
.hero-visual {
  position: relative; min-height: 520px;
}
.grid-plate {
  position: absolute; inset: 50px 20px 20px 90px;
  border-radius: 34px; background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(15,23,42,0.95), rgba(15,23,42,0.62));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.grid-plate::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
  background-size: 28px 28px; border-radius: inherit; mask-image: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.65));
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(14px);
}
.orb-a { width: 240px; height: 240px; right: -20px; top: -10px; background: rgba(229,57,53,.28); }
.orb-b { width: 180px; height: 180px; left: 20px; bottom: 10px; background: rgba(59,130,246,.2); }
.hero-card {
  position: absolute; z-index: 2; max-width: 280px; padding: 1.15rem 1.2rem;
  background: rgba(10,16,29,0.88); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  box-shadow: 0 18px 50px rgba(2,6,23,0.36);
}
.hero-card strong { display: block; color: #fff; margin-bottom: .35rem; font-size: 1rem; }
.hero-card span { display: block; color: var(--muted); font-size: .95rem; }
.one { top: 35px; left: 0; }
.two { top: 190px; right: 0; }
.three { bottom: 35px; left: 70px; }
.floating-card { animation: float 7s ease-in-out infinite; }
.two { animation-delay: 1.2s; }
.three { animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.trust-band { padding: 0 0 1rem; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem;
}
.trust-grid article {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 1.25rem 1.35rem;
}
.trust-grid strong { display: block; color: #fff; margin-bottom: .4rem; }
.trust-grid p { margin: 0; color: var(--muted); }
.section { padding: 5.2rem 0; }
.alt-section { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); }
.section-head { max-width: 780px; margin-bottom: 2rem; }
.section-head h2, .split-grid h2, .about-grid h2, .cta-box h2, .contact-grid h2 {
  color: #fff; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; margin: 0 0 .9rem;
}
.section-head p, .split-grid p, .about-grid p, .cta-box p, .contact-grid p {
  margin: 0; color: var(--muted); font-size: 1.02rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem;
}
.service-card {
  position: relative; overflow: hidden; padding: 1.35rem; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.service-card::after {
  content: ''; position: absolute; width: 140px; height: 140px; border-radius: 50%; right: -42px; bottom: -56px;
  background: radial-gradient(circle, rgba(229,57,53,.12), transparent 66%);
}
.service-card h3 { color: #fff; margin: .2rem 0 .65rem; font-size: 1.12rem; }
.service-card p { margin: 0; color: var(--muted); }
.service-icon {
  width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, rgba(229,57,53,0.25), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.1); margin-bottom: .95rem; position: relative;
}
.service-icon::before, .service-icon::after {
  content: ''; position: absolute; background: #fff; opacity: .92;
}
.icon-code::before { width: 18px; height: 2px; transform: rotate(35deg); left: 11px; top: 21px; }
.icon-code::after { width: 18px; height: 2px; transform: rotate(-35deg); right: 11px; top: 21px; }
.icon-globe::before { inset: 11px; border: 2px solid #fff; border-radius: 50%; background: transparent; }
.icon-globe::after { width: 2px; height: 26px; left: 27px; top: 15px; }
.icon-network::before { width: 10px; height: 10px; border-radius: 50%; left: 10px; top: 23px; box-shadow: 18px -10px 0 #fff, 18px 10px 0 #fff, 36px 0 0 #fff; }
.icon-network::after { width: 30px; height: 2px; left: 12px; top: 28px; transform: rotate(0deg); box-shadow: 9px -10px 0 0 #fff, 9px 10px 0 0 #fff; }
.icon-server::before { width: 30px; height: 18px; left: 13px; top: 13px; border: 2px solid #fff; border-radius: 6px; background: transparent; box-shadow: 0 14px 0 -2px rgba(255,255,255,.02), 0 14px 0 0 #fff inset; }
.icon-server::after { width: 4px; height: 4px; border-radius: 50%; right: 17px; top: 20px; box-shadow: 0 14px 0 #fff; }
.icon-support::before { width: 28px; height: 18px; left: 14px; top: 18px; border: 2px solid #fff; border-top-left-radius: 14px; border-top-right-radius: 14px; border-bottom: 0; background: transparent; }
.icon-support::after { width: 18px; height: 2px; left: 19px; top: 35px; }
.icon-cloud::before { width: 30px; height: 16px; left: 13px; top: 24px; border-radius: 999px; }
.icon-cloud::after { width: 14px; height: 14px; left: 15px; top: 18px; border-radius: 50%; box-shadow: 11px -6px 0 2px #fff, 21px 2px 0 0 #fff; }
.icon-phone::before { width: 16px; height: 28px; left: 20px; top: 14px; border: 2px solid #fff; border-radius: 5px; background: transparent; }
.icon-phone::after { width: 8px; height: 2px; left: 24px; bottom: 12px; }
.icon-headset::before { width: 28px; height: 18px; left: 14px; top: 14px; border: 2px solid #fff; border-bottom: 0; border-top-left-radius: 18px; border-top-right-radius: 18px; background: transparent; }
.icon-headset::after { width: 8px; height: 14px; left: 13px; top: 24px; border-radius: 6px; box-shadow: 24px 0 0 0 #fff, 12px 13px 0 -1px #fff; }
.icon-cart::before { width: 24px; height: 14px; left: 15px; top: 18px; border: 2px solid #fff; border-top: 0; background: transparent; transform: skewX(-12deg); }
.icon-cart::after { width: 6px; height: 6px; border-radius: 50%; left: 17px; bottom: 12px; box-shadow: 14px 0 0 #fff; }
.icon-strategy::before { width: 2px; height: 24px; left: 18px; top: 15px; box-shadow: 12px -8px 0 0 #fff, 24px -16px 0 0 #fff; }
.icon-strategy::after { width: 20px; height: 2px; left: 18px; top: 23px; transform: rotate(-25deg); }
.icon-shield::before { width: 24px; height: 30px; left: 16px; top: 12px; clip-path: polygon(50% 0, 100% 16%, 100% 56%, 50% 100%, 0 56%, 0 16%); }
.icon-shield::after { width: 2px; height: 16px; left: 27px; top: 19px; box-shadow: -6px 6px 0 -0.5px transparent; }
.icon-chart::before { width: 4px; height: 20px; left: 16px; bottom: 13px; box-shadow: 10px -6px 0 0 #fff, 20px -12px 0 0 #fff; }
.icon-chart::after { width: 20px; height: 2px; left: 15px; top: 19px; transform: rotate(-28deg); }
.split-grid, .about-grid, .contact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; align-items: start;
}
.check-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.check-list > div, .solution-box, .stat-card, .contact-card, .faq-item, .cta-box, .contact-form, .clients-panel {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
}
.check-list > div { padding: 1.15rem 1.2rem; }
.check-list strong, .solution-box strong, .stat-card strong, .contact-card strong { color: #fff; display: block; margin-bottom: .35rem; }
.solution-panel { display: grid; gap: 1rem; }
.solution-box { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 1.15rem; }
.solution-box span {
  width: 58px; height: 58px; border-radius: 18px; background: linear-gradient(135deg, var(--primary), #ff7c71); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem;
}
.pill-grid {
  display: flex; flex-wrap: wrap; gap: .8rem;
}
.pill {
  padding: .78rem 1rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #fff;
}
.clients-panel { margin-top: 1.5rem; padding: 1.2rem; }
.clients-panel h3 { margin: .1rem 0 1rem; color: #fff; }
.clients-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .9rem;
}
.client-card {
  padding: 1rem; min-height: 86px; display: flex; align-items: center; justify-content: center; text-align: center;
  border-radius: 18px; background: rgba(6,13,25,0.42); border: 1px solid rgba(255,255,255,.06); color: #dce7f6; font-weight: 600;
}
.about-side { display: grid; gap: 1rem; }
.stat-card { padding: 1.25rem; }
.stat-card span { color: var(--muted); }
.faq-list { display: grid; gap: .9rem; }
.faq-item { padding: 1rem 1.15rem; }
.faq-item summary {
  cursor: pointer; color: #fff; font-weight: 700; list-style: none; position: relative; padding-right: 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 0; color: #ffb0ab; font-size: 1.2rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: .75rem 0 0; color: var(--muted); }
.cta-section { padding-top: 1rem; }
.cta-box {
  padding: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  box-shadow: var(--shadow);
}
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .9rem; margin-top: 1.4rem; }
.contact-card { padding: 1.05rem 1.1rem; }
.contact-card span, .contact-card-static span { color: var(--muted); display: block; }
.contact-form { padding: 1.25rem; box-shadow: var(--shadow); }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; margin-bottom: .42rem; color: #fff; font-weight: 600; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.12); background: rgba(6,13,25,.5); color: #fff;
  border-radius: 14px; padding: .95rem 1rem; outline: 0; font: inherit;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: rgba(255,255,255,.32); box-shadow: 0 0 0 3px rgba(229,57,53,.16); }
.two-cols { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .9rem; }
.trap-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { margin: .8rem 0 0; color: var(--muted); font-size: .94rem; }
.site-footer {
  margin-top: 2rem; padding: 2.6rem 0 1.2rem; border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(2,6,23,.42);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .9fr; gap: 1.5rem;
}
.site-footer strong { color: #fff; }
.site-footer p, .site-footer li, .site-footer a, .footer-bottom span { color: var(--muted); }
.site-footer ul { list-style: none; margin: .8rem 0 0; padding: 0; display: grid; gap: .35rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.3rem; margin-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.06);
}
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; width: 60px; height: 60px; border-radius: 50%; z-index: 30;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #12a34a); color: #fff; box-shadow: 0 16px 36px rgba(18,163,74,.4);
}
.floating-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }
.thanks-body {
  min-height: 100vh; display: grid; place-items: center;
}
.thanks-wrap { width: min(calc(100% - 2rem), 720px); }
.thanks-card {
  text-align: center; padding: 2rem; background: rgba(255,255,255,.06); border-radius: 26px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
}
.thanks-card h1 { color: #fff; margin-bottom: .6rem; }
.thanks-card p { color: var(--muted); margin: 0; }
@media (max-width: 1080px) {
  .hero-grid, .split-grid, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .clients-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-visual { min-height: 440px; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute; left: 1rem; right: 1rem; top: calc(100% + .8rem);
    display: none; flex-direction: column; align-items: stretch; gap: .5rem; padding: 1rem;
    background: rgba(8,17,31,0.98); border-radius: 20px; border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero { padding-top: 3.2rem; }
  .hero-copy h1 { font-size: clamp(2.1rem, 8vw, 3.4rem); }
  .hero-points, .trust-grid, .services-grid, .clients-grid, .contact-cards, .two-cols { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; }
  .grid-plate { inset: 46px 0 0 20px; }
  .one { left: 0; top: 10px; }
  .two { right: 0; top: 160px; }
  .three { left: 20px; bottom: 0; }
  .section { padding: 4.2rem 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
