:root {
  /* CAMBIA AQUÍ LOS COLORES PRINCIPALES */
  --primary: #078de8;
  --primary-2: #00b9e8;
  --primary-dark: #0066b2;
  --navy: #061c33;
  --navy-2: #0a2a49;
  --text: #182233;
  --muted: #657185;
  --soft: #f4f9fd;
  --white: #ffffff;
  --border: #dbe5ee;
  --shadow: 0 20px 50px rgba(5, 31, 58, .12);
  --radius: 18px;
  --container: 1200px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: var(--white); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; background: var(--white); color: var(--navy); padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

/* BOTONES */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border: 1px solid transparent;
  border-radius: 8px; font-weight: 750; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 12px 30px rgba(7,141,232,.28); }
.btn-primary:hover { filter: brightness(1.07); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-height);
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(5,31,58,.08);
}
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 208px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.btn), .dropdown-toggle { position: relative; padding: 26px 0; color: var(--text); background: none; border: 0; font-weight: 700; }
.main-nav > a:not(.btn)::after, .dropdown-toggle::after { content: ""; position: absolute; left: 0; bottom: 16px; width: 0; height: 2px; background: var(--primary); transition: .25s ease; }
.main-nav > a:hover::after, .main-nav > a.active::after, .dropdown-toggle:hover::after { width: 100%; }
.nav-cta { min-height: 44px; padding: 0 20px; }
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; gap: 6px; align-items: center; }
.dropdown-menu { position: absolute; top: calc(100% - 8px); left: -20px; min-width: 250px; padding: 12px; background: var(--white); border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.dropdown-menu a { display: block; padding: 11px 13px; border-radius: 8px; color: var(--muted); }
.dropdown-menu a:hover { background: var(--soft); color: var(--primary-dark); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.is-open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--navy); transition: .25s; }

/* HERO */
.hero { background: var(--navy); color: var(--white); }
.hero-slider { min-height: 690px; position: relative; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease; background-image: var(--hero-image); background-position: center; background-size: cover; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,24,46,.97) 0%, rgba(4,28,52,.88) 45%, rgba(4,28,52,.48) 100%); }
.hero-grid { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 40px; padding-top: 58px; padding-bottom: 80px; }
.hero-copy { max-width: 660px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--primary-2); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 850; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--primary-dark); }
.hero h1, .hero h2 { margin: 0; font-size: clamp(42px, 5.3vw, 72px); line-height: 1.04; letter-spacing: -.045em; max-width: 790px; }
.hero h1 em { color: var(--primary-2); font-style: normal; }
.hero p { max-width: 620px; margin: 24px 0 30px; color: rgba(255,255,255,.82); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art { align-self: end; }
.hero-art img { width: 100%; filter: drop-shadow(0 35px 35px rgba(0,0,0,.38)); }
.slider-arrow { position: absolute; z-index: 5; top: 50%; translate: 0 -50%; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.34); background: rgba(3,20,38,.28); color: var(--white); backdrop-filter: blur(8px); }
.slider-arrow:hover { background: var(--white); color: var(--navy); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { position: absolute; z-index: 5; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; gap: 8px; }
.slider-dots button { width: 10px; height: 10px; border: 0; border-radius: 999px; background: rgba(255,255,255,.45); padding: 0; }
.slider-dots button.is-active { width: 28px; background: var(--primary-2); }

/* BENEFIT STRIP */
.benefit-strip { position: relative; z-index: 10; margin-top: -35px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.benefit-item { display: flex; align-items: center; gap: 15px; padding: 25px 22px; }
.benefit-item + .benefit-item { border-left: 1px solid var(--border); }
.benefit-item h3 { margin: 0 0 2px; font-size: 15px; }
.benefit-item p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }
.icon-box { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 50%; background: #eaf6ff; color: var(--primary); font-weight: 900; font-size: 20px; }

/* HEADINGS */
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-heading h2, .about-copy h2, .contact-copy h2, .testimonial-intro h2, .image-cta h2 { margin: 0; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.13; letter-spacing: -.035em; }
.section-heading p { margin: 18px auto 0; color: var(--muted); max-width: 690px; }
.section-heading-light p { color: rgba(255,255,255,.65); }

/* SERVICE CARDS */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { min-height: 330px; padding: 36px 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); transition: .28s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon { width: 62px; height: 62px; margin-bottom: 28px; }
.service-card h3 { margin: 0 0 14px; font-size: 22px; line-height: 1.25; }
.service-card p { color: var(--muted); margin: 0 0 28px; }
.service-card a, .product-card a, .blog-card a { color: var(--primary-dark); font-weight: 800; }
.service-card a span, .product-card a span { display: inline-block; transition: transform .2s; }
.service-card a:hover span, .product-card a:hover span { transform: translateX(5px); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image > img { border-radius: 22px; box-shadow: var(--shadow); }
.experience-card { position: absolute; right: -22px; bottom: 24px; width: 176px; min-height: 145px; display: flex; flex-direction: column; justify-content: center; padding: 24px; border-radius: 14px; background: linear-gradient(145deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 20px 35px rgba(7,141,232,.28); }
.experience-card strong { font-size: 42px; line-height: 1; }
.experience-card span { margin-top: 8px; font-size: 13px; }
.about-copy > p { color: var(--muted); }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.about-points > div { display: flex; gap: 12px; }
.about-points span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #e8f6ff; color: var(--primary); font-weight: 900; flex: 0 0 30px; }
.about-points p { margin: 0; color: var(--muted); font-size: 14px; }
.about-points strong { color: var(--text); }

/* IMAGE CTA */
.image-cta { position: relative; min-height: 440px; display: grid; place-items: center; background: url('../img/cta-background.svg') center/cover fixed; color: var(--white); }
.image-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,21,40,.94), rgba(2,42,76,.75)); }
.image-cta-content { position: relative; z-index: 2; text-align: center; max-width: 920px; }
.image-cta h2 { margin-bottom: 28px; }

/* STATS */
.stats-wrap { position: relative; z-index: 5; margin-top: -54px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.stats-grid article { padding: 32px 20px; text-align: center; }
.stats-grid article + article { border-left: 1px solid var(--border); }
.stats-grid strong { display: block; font-size: clamp(34px, 4vw, 52px); color: var(--navy); line-height: 1; }
.stats-grid span { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; }

/* PRODUCTS */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.product-card { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); transition: .28s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.product-top { background: var(--soft); aspect-ratio: 16 / 10; overflow: hidden; }
.product-top img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-top img { transform: scale(1.045); }
.product-body { padding: 28px; }
.product-tag { color: var(--primary-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; }
.product-body h3 { margin: 8px 0 12px; font-size: 25px; }
.product-body p { color: var(--muted); min-height: 78px; }

/* PROJECTS */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { position: relative; min-height: 440px; border-radius: var(--radius); overflow: hidden; background: #092946; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(2,18,34,.96)); }
.project-card:hover img { transform: scale(1.06); }
.project-overlay { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 30px; }
.project-overlay span { color: var(--primary-2); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.project-overlay h3 { margin: 7px 0; font-size: 24px; }
.project-overlay p { margin: 0 0 14px; color: rgba(255,255,255,.68); font-size: 14px; }
.project-overlay a { font-weight: 800; color: var(--white); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.team-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.team-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--soft); }
.team-card div { padding: 25px; }
.team-card h3 { margin: 0 0 8px; }
.team-card p { margin: 0; color: var(--muted); }

/* TESTIMONIAL */
.testimonial-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.testimonial-intro p { color: var(--muted); }
.testimonial-controls { display: flex; gap: 10px; margin-top: 28px; }
.testimonial-controls button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); color: var(--navy); }
.testimonial-controls button:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.testimonial-slider { position: relative; min-height: 300px; }
.testimonial { position: absolute; inset: 0; opacity: 0; transform: translateX(20px); visibility: hidden; transition: .35s ease; padding: 46px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.testimonial.is-active { opacity: 1; transform: translateX(0); visibility: visible; }
.testimonial > p { margin: 0 0 34px; font-size: 25px; line-height: 1.45; letter-spacing: -.015em; }
.testimonial footer { display: flex; flex-direction: column; }
.testimonial footer span { color: var(--muted); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.blog-card > img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-body { padding: 26px; }
.blog-body > span { color: var(--primary-dark); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.blog-body h3 { margin: 10px 0 12px; font-size: 22px; line-height: 1.3; }
.blog-body p { color: var(--muted); }

/* CONTACT */
.contact-section { padding: 100px 0; color: var(--white); background: linear-gradient(135deg, var(--navy), #083762); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.contact-copy p { color: rgba(255,255,255,.72); font-size: 17px; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.contact-list li > span:first-child { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--primary-2); }
.contact-form { padding: 36px; background: var(--white); color: var(--text); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid var(--border); border-radius: 8px; color: var(--text); background: #fff; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(7,141,232,.12); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }

/* FOOTER */
.site-footer { padding: 70px 0 20px; background: #031525; color: rgba(255,255,255,.76); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 45px; }
.footer-brand img { width: 220px; margin-bottom: 16px; }
.footer-brand p { max-width: 350px; }
.footer-grid h3 { margin: 0 0 18px; color: var(--white); font-size: 16px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--primary-2); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--white); font-size: 13px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.footer-bottom div { display: flex; gap: 18px; }

/* FLOATING */
.back-to-top, .whatsapp-float { position: fixed; right: 22px; z-index: 999; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); }
.back-to-top { bottom: 86px; border: 0; background: var(--primary); color: var(--white); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .25s; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float { bottom: 24px; background: #20c66b; color: var(--white); font-size: 11px; font-weight: 900; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .main-nav { gap: 18px; font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid, .product-grid, .team-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid > :last-child, .product-grid > :last-child, .team-grid > :last-child, .blog-grid > :last-child { grid-column: span 2; max-width: 580px; justify-self: center; width: 100%; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .site-header { height: auto; }
  .brand img { width: 185px; }
  .menu-toggle { display: block; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 20px 22px; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 18px 30px rgba(0,0,0,.1); }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.btn), .dropdown-toggle { width: 100%; padding: 13px 0; text-align: left; }
  .main-nav > a:not(.btn)::after, .dropdown-toggle::after { display: none; }
  .dropdown-menu { position: static; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 14px; }
  .nav-dropdown.is-open .dropdown-menu { display: block; }
  .nav-cta { margin-top: 10px; }
  .hero-slider, .hero-grid { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 65px; text-align: center; }
  .hero-copy { max-width: 760px; margin-inline: auto; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 650px; margin-inline: auto; }
  .hero-overlay { background: linear-gradient(180deg, rgba(4,24,46,.96), rgba(4,28,52,.75)); }
  .slider-arrow { display: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .benefit-item:nth-child(4) { border-top: 1px solid var(--border); }
  .about-grid, .testimonial-layout, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-image { max-width: 720px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .stats-grid article:nth-child(4) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .hero-slider, .hero-grid { min-height: 700px; }
  .hero-grid { padding-top: 55px; padding-bottom: 70px; }
  .hero h1, .hero h2 { font-size: clamp(36px, 11vw, 52px); }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .benefit-strip { margin-top: 0; }
  .benefit-grid { grid-template-columns: 1fr; border-radius: 0; width: 100%; }
  .benefit-item + .benefit-item { border-left: 0; border-top: 1px solid var(--border); }
  .service-grid, .project-grid, .product-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .project-grid > :last-child, .product-grid > :last-child, .team-grid > :last-child, .blog-grid > :last-child { grid-column: auto; max-width: none; }
  .service-card { min-height: auto; }
  .about-points, .form-row { grid-template-columns: 1fr; }
  .experience-card { right: 12px; bottom: 12px; width: 145px; min-height: 120px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article + article { border-left: 0; border-top: 1px solid var(--border); }
  .image-cta { min-height: 500px; background-attachment: scroll; }
  .testimonial { padding: 30px; }
  .testimonial > p { font-size: 20px; }
  .contact-form { padding: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float, .back-to-top { right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==============================================================
   BC SOLUCIONES 2026 — CAPA VISUAL
   ============================================================== */
.bc-2026 { background: #fff; }
.bc-2026 .site-header { background: rgba(255,255,255,.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.bc-2026 .nav-wrap { min-height: var(--header-height); }
.bc-2026 .main-nav { gap: 22px; }
.bc-2026 .nav-cta { border-radius: 999px; padding-inline: 20px; }

.hero-2026 .hero-slide { overflow: hidden; }
.hero-2026 .hero-slide::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 76% 25%, rgba(0,185,232,.18), transparent 28%), radial-gradient(circle at 15% 82%, rgba(7,141,232,.13), transparent 26%); pointer-events:none; }
.hero-grid-lines { position:absolute; inset:0; opacity:.18; background-image: linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, black, transparent 85%); }
.hero-badge { display:inline-flex; align-items:center; gap:9px; margin-bottom:20px; padding:8px 13px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(255,255,255,.07); color:rgba(255,255,255,.82); font-size:12px; font-weight:750; letter-spacing:.035em; text-transform:uppercase; }
.hero-badge > span { width:7px; height:7px; border-radius:50%; background:#2de1ff; box-shadow:0 0 0 5px rgba(45,225,255,.10),0 0 18px rgba(45,225,255,.9); }
.hero-2026 .hero-copy em { color:#66e4ff; font-style:normal; }
.hero-proof { display:flex; gap:28px; margin-top:34px; padding-top:24px; border-top:1px solid rgba(255,255,255,.14); max-width:610px; }
.hero-proof div { display:flex; align-items:center; gap:10px; }
.hero-proof strong { color:#fff; font-size:28px; line-height:1; }
.hero-proof span { max-width:150px; color:rgba(255,255,255,.62); font-size:12px; line-height:1.35; }
.hero-art-panel { position:relative; padding:34px; border:1px solid rgba(255,255,255,.14); border-radius:28px; background:linear-gradient(160deg,rgba(255,255,255,.12),rgba(255,255,255,.025)); box-shadow:0 35px 90px rgba(0,0,0,.28); backdrop-filter:blur(12px); }
.floating-status { position:absolute; z-index:4; left:26px; top:22px; display:flex; align-items:center; gap:9px; padding:10px 12px; border-radius:10px; background:rgba(4,21,37,.90); border:1px solid rgba(255,255,255,.10); color:#fff; font-size:11px; box-shadow:0 12px 32px rgba(0,0,0,.22); }
.floating-status i { width:8px; height:8px; border-radius:50%; background:#34e58b; box-shadow:0 0 14px #34e58b; }
.floating-status span { color:rgba(255,255,255,.62); }
.floating-status strong { color:#61f0a9; font-size:10px; letter-spacing:.09em; }
.hero-mini-card { position:absolute; z-index:4; display:flex; flex-direction:column; gap:4px; min-width:185px; padding:14px 16px; border:1px solid rgba(255,255,255,.12); border-radius:13px; background:rgba(4,21,37,.88); box-shadow:0 14px 36px rgba(0,0,0,.25); color:#fff; }
.hero-mini-card span { color:#5edcf4; font-size:10px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.hero-mini-card strong { font-size:12px; }
.mini-card-a { right:-14px; top:33%; }
.mini-card-b { left:-24px; bottom:22px; }
.hero-stack-inline { display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; }
.hero-stack-inline span { padding:7px 10px; border:1px solid rgba(255,255,255,.16); border-radius:8px; background:rgba(255,255,255,.06); color:rgba(255,255,255,.78); font-size:11px; font-weight:750; }

.service-grid-2026 .service-card { position:relative; overflow:hidden; min-height:430px; }
.service-grid-2026 .service-card::before { content:""; position:absolute; left:0; right:0; top:0; height:3px; background:linear-gradient(90deg,var(--primary),var(--primary-2)); transform:scaleX(0); transform-origin:left; transition:.3s ease; }
.service-grid-2026 .service-card:hover::before { transform:scaleX(1); }
.service-number { position:absolute; right:24px; top:22px; color:#dce7ef; font-size:42px; font-weight:900; letter-spacing:-.05em; }
.service-list { list-style:none; padding:0; margin:0 0 25px; display:grid; gap:7px; color:var(--muted); font-size:13px; }
.service-list li::before { content:"✓"; color:var(--primary); font-weight:900; margin-right:8px; }

.section-tech { position:relative; overflow:hidden; padding:105px 0; background:#041525; color:#fff; }
.section-tech::before { content:""; position:absolute; width:650px; height:650px; right:-280px; top:-260px; border-radius:50%; background:radial-gradient(circle,rgba(0,185,232,.18),transparent 66%); }
.section-tech::after { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:48px 48px; pointer-events:none; }
.tech-layout,.tech-chips { position:relative; z-index:2; }
.tech-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.tech-copy h2 { margin:0 0 20px; font-size:clamp(34px,4vw,52px); line-height:1.13; letter-spacing:-.035em; }
.tech-copy p { color:rgba(255,255,255,.65); margin:0 0 30px; font-size:17px; }
.tech-terminal { overflow:hidden; border:1px solid rgba(255,255,255,.12); border-radius:18px; background:#071e33; box-shadow:0 30px 70px rgba(0,0,0,.3); }
.terminal-bar { display:flex; align-items:center; gap:7px; padding:14px 17px; border-bottom:1px solid rgba(255,255,255,.09); background:rgba(255,255,255,.035); }
.terminal-bar i { width:9px; height:9px; border-radius:50%; background:#516273; }
.terminal-bar i:first-child { background:#ff6a64; }.terminal-bar i:nth-child(2){background:#ffc552}.terminal-bar i:nth-child(3){background:#39d98a}
.terminal-bar span { margin-left:8px; color:#73879a; font:600 11px ui-monospace,SFMono-Regular,Menlo,monospace; }
.terminal-body { padding:22px; display:grid; gap:11px; }
.terminal-body > div { display:grid; grid-template-columns:115px 1fr; gap:15px; padding:14px 15px; border:1px solid rgba(255,255,255,.07); border-radius:10px; background:rgba(255,255,255,.025); font:12px/1.55 ui-monospace,SFMono-Regular,Menlo,monospace; }
.terminal-key { color:#4bdfff; }.terminal-body strong { color:#c8d5df; font-weight:600; }
.tech-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:54px; }
.tech-chips span { padding:10px 14px; border:1px solid rgba(255,255,255,.10); border-radius:999px; background:rgba(255,255,255,.045); color:rgba(255,255,255,.72); font-size:12px; font-weight:700; }

.about-points-2026 { grid-template-columns:1fr; }
.about-points-2026 > div { padding:13px 0; border-bottom:1px solid var(--border); }

.clients-section { padding:88px 0; background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.clients-head { display:grid; grid-template-columns:1fr .8fr; gap:50px; align-items:end; margin-bottom:38px; }
.clients-head h2 { margin:0; font-size:clamp(32px,4vw,48px); letter-spacing:-.035em; }
.clients-head p { margin:0; color:var(--muted); }
.client-logo-grid { display:grid; grid-template-columns:repeat(6,1fr); border:1px solid var(--border); border-radius:16px; overflow:hidden; background:#fff; }
.client-logo-slot { min-height:112px; display:flex; align-items:center; justify-content:center; gap:7px; border-right:1px solid var(--border); background:linear-gradient(180deg,#fff,#f9fbfd); color:#a5b1be; transition:.25s; }
.client-logo-slot:last-child { border-right:0; }
.client-logo-slot:hover { background:#f2f9fe; color:#6d7f90; }
.client-logo-slot span { font-size:10px; font-weight:800; letter-spacing:.13em; }.client-logo-slot strong { font-size:20px; }

.image-cta-2026 { min-height:520px; }
.cta-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.form-kicker { margin-bottom:20px; color:var(--primary-dark); font-size:12px; font-weight:850; text-transform:uppercase; letter-spacing:.1em; }
.whatsapp-2026 { width:auto; min-width:54px; padding:0 15px; border-radius:999px; gap:8px; text-decoration:none; }
.whatsapp-2026 b { font-size:12px; white-space:nowrap; }

@media (max-width:1100px){
  .bc-2026 .main-nav{gap:15px}.bc-2026 .main-nav{font-size:12px}.client-logo-grid{grid-template-columns:repeat(3,1fr)}.client-logo-slot{border-bottom:1px solid var(--border)}.client-logo-slot:nth-child(3n){border-right:0}.tech-layout{gap:40px}
}
@media (max-width:900px){
  .hero-proof{justify-content:center}.hero-art-panel{margin:0 18px}.mini-card-a{right:-8px}.mini-card-b{left:-8px}.tech-layout,.clients-head{grid-template-columns:1fr}.tech-copy{text-align:center}.tech-copy .eyebrow{justify-content:center}.tech-terminal{max-width:720px;margin-inline:auto}.clients-head{text-align:center;gap:18px}.clients-head .eyebrow{justify-content:center}.client-logo-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:640px){
  .hero-badge{font-size:10px}.hero-proof{flex-direction:column;align-items:center;gap:12px}.hero-proof div{width:240px}.hero-art-panel{padding:22px 14px}.hero-mini-card,.floating-status{display:none}.service-grid-2026 .service-card{min-height:auto}.terminal-body>div{grid-template-columns:1fr;gap:4px}.tech-chips{justify-content:center}.client-logo-grid{grid-template-columns:repeat(2,1fr)}.client-logo-slot:nth-child(3n){border-right:1px solid var(--border)}.client-logo-slot:nth-child(2n){border-right:0}.whatsapp-2026 b{display:none}.whatsapp-2026{width:52px;min-width:52px;padding:0}
}
