:root {
  --bg: #080c18;
  --bg-deep: #050811;
  --surface: #101629;
  --surface-2: #141c32;
  --surface-soft: rgba(255, 255, 255, 0.035);
  --text: #f5f7ff;
  --muted: #aab3cc;
  --line: rgba(255, 255, 255, 0.10);
  --cyan: #22d9e7;
  --blue: #5c7cff;
  --purple: #b742f5;
  --pink: #e83fd8;
  --gradient: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--purple));
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 217, 231, 0.09), transparent 25%),
    radial-gradient(circle at 85% 14%, rgba(183, 66, 245, 0.10), transparent 27%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: #050811;
  background: white;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  border-block: 1px solid rgba(255,255,255,.05);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 8, 17, 0.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo-wrap {
  width: 47px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(71, 191, 255, .18);
}
.brand-logo-wrap img { width: 45px; height: 41px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.16; }
.brand-copy strong { font-size: .98rem; letter-spacing: .1px; }
.brand-copy small { color: var(--muted); font-size: .68rem; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links > a:not(.button) { color: #cfd5e8; font-size: .86rem; font-weight: 650; text-decoration: none; }
.nav-links > a:not(.button):hover { color: white; }
.menu-toggle { display: none; width: 44px; height: 42px; padding: 10px; background: transparent; border: 1px solid var(--line); border-radius: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: white; border-radius: 9px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: #050811;
  background: var(--gradient);
  border: 0;
  border-radius: 13px;
  box-shadow: 0 13px 34px rgba(72, 120, 255, .22);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 17px 40px rgba(72, 120, 255, .30); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .82rem; }
.button-ghost { color: var(--text); background: rgba(255,255,255,.04); border: 1px solid var(--line); box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.full-width { width: 100%; }

.hero { min-height: calc(100vh - 78px); display: flex; align-items: center; padding-top: 85px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #9beaf3; font-size: .75rem; font-weight: 850; letter-spacing: 1.5px; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 2px; background: var(--gradient); border-radius: 5px; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin: 22px 0; font-size: clamp(3.2rem, 6.2vw, 6rem); line-height: .99; letter-spacing: -4.6px; }
h1 em { font-style: normal; color: transparent; background: var(--gradient); -webkit-background-clip: text; background-clip: text; }
.hero-text { max-width: 680px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-trust { display: flex; gap: 38px; margin-top: 48px; padding-top: 27px; border-top: 1px solid var(--line); }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.3rem; }
.hero-trust span { color: var(--muted); font-size: .72rem; }
.hero-showcase { position: relative; min-height: 580px; display: grid; place-items: center; }
.browser-card { width: min(100%, 530px); overflow: hidden; background: #0d1325; border: 1px solid rgba(255,255,255,.13); border-radius: 23px; box-shadow: var(--shadow), 0 0 80px rgba(69, 111, 255, .11); transform: perspective(1100px) rotateY(-7deg) rotateX(2deg); }
.browser-top { height: 54px; display: grid; grid-template-columns: 90px 1fr 90px; align-items: center; padding: 0 18px; background: #151d34; border-bottom: 1px solid var(--line); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 9px; height: 9px; background: #47506a; border-radius: 50%; }
.browser-url { justify-self: center; width: 230px; padding: 7px 14px; color: #8f9ab8; background: #0d1325; border-radius: 8px; font-size: .65rem; text-align: center; }
.lock { color: #4de8d6; font-size: .48rem; }
.browser-content { min-height: 430px; padding: 24px; background: radial-gradient(circle at 70% 28%, rgba(183,66,245,.18), transparent 32%), #09101f; }
.mini-nav { display: flex; justify-content: space-between; align-items: center; }
.mini-brand { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--gradient); border-radius: 9px; font-size: .72rem; font-weight: 900; }
.mini-lines { display: flex; gap: 13px; }
.mini-lines span { width: 37px; height: 5px; background: #29314a; border-radius: 9px; }
.mini-hero { margin: 62px 0 40px; text-align: center; }
.mini-pill { padding: 6px 10px; color: #85edf4; background: rgba(34,217,231,.08); border: 1px solid rgba(34,217,231,.18); border-radius: 999px; font-size: .48rem; font-weight: 800; letter-spacing: 1px; }
.mini-hero h2 { max-width: 330px; margin: 20px auto 10px; font-size: 2.05rem; line-height: 1.05; letter-spacing: -1.5px; }
.mini-hero p { width: 280px; margin: auto; color: #8994b3; font-size: .65rem; }
.mini-buttons { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.mini-buttons span { width: 93px; height: 29px; background: var(--gradient); border-radius: 8px; }
.mini-buttons span:last-child { background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-cards span { height: 82px; background: linear-gradient(145deg, #141d34, #0c1222); border: 1px solid var(--line); border-radius: 12px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 15px; background: rgba(18, 25, 46, .88); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; box-shadow: 0 18px 40px rgba(0,0,0,.30); backdrop-filter: blur(12px); }
.floating-card-one { left: -20px; bottom: 102px; }
.floating-card-one > span { width: 31px; height: 31px; display: grid; place-items: center; color: #061119; background: var(--cyan); border-radius: 9px; font-weight: 900; }
.floating-card-one div { display: flex; flex-direction: column; }
.floating-card-one strong { font-size: .74rem; }
.floating-card-one small { color: var(--muted); font-size: .6rem; }
.floating-card-two { right: -18px; top: 95px; flex-direction: column; gap: 1px; align-items: flex-start; }
.floating-card-two strong { font-size: .72rem; }
.floating-card-two span { color: #74f2c8; font-size: .65rem; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 470px; height: 470px; right: -190px; top: 30px; background: radial-gradient(circle, rgba(183,66,245,.17), transparent 67%); }
.hero-glow-two { width: 400px; height: 400px; left: -180px; bottom: -130px; background: radial-gradient(circle, rgba(34,217,231,.12), transparent 67%); }

.proof-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { display: flex; align-items: center; gap: 13px; min-height: 90px; padding: 0 25px; border-right: 1px solid var(--line); }
.proof-grid div:last-child { border-right: 0; }
.proof-grid span { color: #6e7896; font-size: .68rem; }
.proof-grid p { margin: 0; color: #dce1ef; font-size: .8rem; font-weight: 700; }

.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading h2 { margin: 17px 0 14px; font-size: clamp(2.25rem, 4.6vw, 4rem); line-height: 1.08; letter-spacing: -2.5px; }
.section-heading p { color: var(--muted); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 60px; }
.split-heading p { margin-bottom: 8px; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 305px; display: flex; flex-direction: column; padding: 28px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.022)); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(84, 185, 255, .35); background: linear-gradient(145deg, rgba(47,175,226,.09), rgba(168,57,236,.05)); }
.service-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 30px; color: white; background: linear-gradient(145deg, rgba(34,217,231,.12), rgba(183,66,245,.13)); border: 1px solid rgba(83, 145, 244, .20); border-radius: 18px; box-shadow: 0 12px 28px rgba(78, 101, 185, .10); transition: transform .25s ease, box-shadow .25s ease; }
.service-icon svg { width: 39px; height: 39px; fill: none; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 34px rgba(83, 96, 188, .16); }
.service-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.service-card p { color: var(--muted); font-size: .86rem; }
.service-card > span { margin-top: auto; color: #87e8f0; font-size: .69rem; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }

.portfolio-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 22px; }
.project { overflow: hidden; background: #0c1222; border: 1px solid var(--line); border-radius: 24px; }
.project-preview { position: relative; display: block; height: 350px; overflow: hidden; background: #080c18; }
.project-large .project-preview { height: 430px; }
.project-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease, filter .4s ease; }
.project-preview:hover img { transform: scale(1.035); filter: brightness(.78); }
.project-open { position: absolute; left: 50%; top: 50%; padding: 11px 15px; background: white; color: #090d1a; border-radius: 10px; font-size: .75rem; font-weight: 850; opacity: 0; transform: translate(-50%, -42%); transition: .25s ease; }
.project-preview:hover .project-open { opacity: 1; transform: translate(-50%, -50%); }
.project-info { display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; padding: 25px; }
.project-info h3 { margin: 5px 0 0; font-size: 1.3rem; }
.project-info p { margin: 0; color: var(--muted); font-size: .82rem; }
.project-type { color: #8fe9ef; font-size: .62rem; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.project:not(.project-large) .project-info { grid-template-columns: 1fr; gap: 12px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.022)); border: 1px solid var(--line); border-radius: 24px; }
.price-card.featured { background: radial-gradient(circle at 90% 0%, rgba(183,66,245,.15), transparent 35%), linear-gradient(145deg, rgba(48,109,222,.10), rgba(255,255,255,.035)); border-color: rgba(88, 163, 255, .36); box-shadow: 0 25px 70px rgba(31, 72, 173, .14); transform: translateY(-12px); }
.popular { position: absolute; top: -13px; right: 24px; padding: 7px 12px; color: #050811; background: var(--gradient); border-radius: 999px; font-size: .61rem; font-weight: 900; }
.price-tag { color: #86e9f0; font-size: .66rem; font-weight: 850; letter-spacing: 1.2px; }
.price-card h3 { margin: 14px 0 8px; font-size: 1.35rem; }
.price-card > p { min-height: 77px; color: var(--muted); font-size: .83rem; }
.price { display: flex; align-items: baseline; gap: 9px; margin: 16px 0 25px; }
.price small { color: var(--muted); font-size: .7rem; }
.price strong { font-size: 2.5rem; line-height: 1; letter-spacing: -1.6px; }
.price-card ul { display: grid; gap: 11px; margin: 0 0 30px; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding-left: 25px; color: #d4daeb; font-size: .8rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: #5fe6d2; font-weight: 900; }
.price-card .button { margin-top: auto; }

.process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.process-layout .section-heading { position: sticky; top: 130px; margin-bottom: 0; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 33px 0; border-bottom: 1px solid var(--line); }
.process-list li:first-child { padding-top: 0; }
.process-list > li > span { color: transparent; -webkit-text-stroke: 1px #53607e; font-size: 2.4rem; font-weight: 850; line-height: 1; }
.process-list h3 { margin-bottom: 7px; font-size: 1.15rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .85rem; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-list { display: grid; align-content: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; font-size: .94rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--cyan); font-size: 1.3rem; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { max-width: 680px; padding: 0 40px 25px 0; color: var(--muted); font-size: .85rem; }

.contact-section { padding-top: 80px; }
.contact-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; padding: clamp(34px, 6vw, 68px); background: radial-gradient(circle at 5% 15%, rgba(34,217,231,.12), transparent 28%), radial-gradient(circle at 95% 92%, rgba(183,66,245,.15), transparent 30%), #0d1426; border: 1px solid rgba(95, 165, 255, .24); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-copy h2 { margin: 16px 0 15px; font-size: clamp(2.3rem, 4.3vw, 4rem); line-height: 1.05; letter-spacing: -2.5px; }
.contact-copy > p { color: var(--muted); }
.contact-points { display: grid; gap: 10px; margin-top: 30px; color: #d8deee; font-size: .8rem; }
.contact-points span::first-letter { color: var(--cyan); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 25px; background: rgba(5,8,17,.48); border: 1px solid var(--line); border-radius: 20px; }
.quote-form label { display: grid; gap: 7px; color: #dce1f0; font-size: .72rem; font-weight: 750; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 13px 14px; color: white; background: #0a1020; border: 1px solid #27314a; border-radius: 10px; outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: #5a9ff8; box-shadow: 0 0 0 3px rgba(80, 147, 255, .10); }
.quote-form select option { color: white; background: #0a1020; }
.quote-form textarea { resize: vertical; min-height: 120px; }
.field-full { grid-column: 1 / -1; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.form-note { margin: 0; color: #8893af; font-size: .68rem; }

.site-footer { padding-top: 70px; background: var(--bg-deep); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .55fr .8fr; gap: 70px; padding-bottom: 55px; }
.footer-brand-block > p { max-width: 390px; margin: 19px 0 0; color: var(--muted); font-size: .8rem; }
.footer-links { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 5px; font-size: .8rem; }
.footer-links a { color: var(--muted); font-size: .75rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; color: #737e9a; border-top: 1px solid var(--line); font-size: .68rem; }

.toast { position: fixed; left: 50%; bottom: 25px; z-index: 1500; max-width: calc(100% - 30px); padding: 12px 17px; color: #061019; background: #8af0df; border-radius: 11px; box-shadow: var(--shadow); font-size: .8rem; font-weight: 800; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  h1 { font-size: clamp(3rem, 6vw, 5rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project:not(.project-large) .project-preview { height: 430px; }
  .project:not(.project-large) .project-info { grid-template-columns: .78fr 1.22fr; }
}

@media (max-width: 850px) {
  .section { padding: 85px 0; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; left: 20px; right: 20px; top: 88px; display: grid; gap: 5px; padding: 15px; background: rgba(10,15,29,.97); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .22s ease; }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links > a { padding: 11px 12px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 530px; }
  .browser-card { transform: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div:nth-child(2) { border-right: 0; }
  .proof-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-heading, .process-layout, .faq-layout, .contact-card { grid-template-columns: 1fr; gap: 40px; }
  .process-layout .section-heading { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; margin: auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-copy small { display: none; }
  h1 { font-size: 3.15rem; letter-spacing: -3px; }
  .hero { padding-top: 60px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 18px; justify-content: space-between; }
  .hero-trust strong { font-size: 1.08rem; }
  .hero-trust span { max-width: 90px; }
  .hero-showcase { min-height: 430px; }
  .browser-content { min-height: 350px; padding: 18px; }
  .browser-url { width: 180px; }
  .mini-hero { margin: 45px 0 30px; }
  .mini-hero h2 { font-size: 1.65rem; }
  .floating-card-one { left: -4px; bottom: 35px; }
  .floating-card-two { right: -5px; top: 44px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid div:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .project-preview, .project-large .project-preview, .project:not(.project-large) .project-preview { height: 280px; }
  .project-info, .project:not(.project-large) .project-info { grid-template-columns: 1fr; }
  .price-card { padding: 27px; }
  .process-list li { grid-template-columns: 58px 1fr; gap: 15px; }
  .quote-form { grid-template-columns: 1fr; padding: 18px; }
  .field-full { grid-column: auto; }
  .form-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand-block { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

/* =========================================================
   LIGHT THEME — Full Software v2
   Keeps the dark browser mockup as a visual focal point while
   making the overall brand friendlier, brighter and more commercial.
   ========================================================= */
:root {
  --bg: #f7f9ff;
  --bg-deep: #eef2fb;
  --surface: #ffffff;
  --surface-2: #f4f6fc;
  --surface-soft: rgba(35, 75, 145, 0.045);
  --text: #10172a;
  --muted: #65708a;
  --line: rgba(21, 40, 78, 0.12);
  --shadow: 0 24px 65px rgba(35, 58, 112, 0.13);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(34, 217, 231, 0.12), transparent 27%),
    radial-gradient(circle at 93% 12%, rgba(183, 66, 245, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 34%, #f4f6fc 100%);
}

.section-soft {
  background: linear-gradient(180deg, #f2f6ff, #f8faff);
  border-block-color: rgba(21, 40, 78, 0.08);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(21, 40, 78, 0.09);
  box-shadow: 0 8px 28px rgba(35, 58, 112, 0.05);
}

.brand-copy strong { color: #11182a; }
.brand-copy small { color: #68748d; }
.nav-links > a:not(.button) { color: #43506a; }
.nav-links > a:not(.button):hover { color: #6a47e8; }
.menu-toggle { background: #fff; }
.menu-toggle span { background: #202b43; }

.button-ghost {
  color: #1f2941;
  background: rgba(255, 255, 255, 0.70);
  border-color: rgba(41, 65, 114, 0.16);
  box-shadow: 0 8px 20px rgba(46, 71, 124, 0.06);
}
.button-ghost:hover { background: #fff; border-color: rgba(92,124,255,.38); }

.hero {
  background:
    linear-gradient(115deg, rgba(255,255,255,.92), rgba(246,248,255,.78)),
    radial-gradient(circle at 82% 28%, rgba(183,66,245,.13), transparent 33%),
    radial-gradient(circle at 16% 8%, rgba(34,217,231,.12), transparent 31%);
}

.eyebrow { color: #167b92; }
h1, h2, h3 { color: #10172a; }
.hero-text, .section-heading p, .service-card p, .price-card > p,
.process-list p, .faq-item p, .contact-copy > p,
.footer-brand-block > p, .project-info p { color: var(--muted); }
.hero-trust { border-top-color: rgba(23, 43, 82, 0.12); }
.hero-trust strong { color: #11182a; }
.hero-trust span { color: #68748d; }

/* Keep the showcased website dark so it stands out on the light page. */
.browser-card { box-shadow: 0 34px 80px rgba(25, 39, 85, .22), 0 0 80px rgba(69,111,255,.10); }
.floating-card {
  color: #f7f8ff;
  background: rgba(18, 25, 46, .92);
  border-color: rgba(255,255,255,.15);
}
.floating-card-one small { color: #aab3cc; }

.proof-strip {
  background: rgba(255,255,255,.72);
  border-block-color: rgba(21,40,78,.09);
}
.proof-grid div { border-right-color: rgba(21,40,78,.09); }
.proof-grid span { color: #8a94aa; }
.proof-grid p { color: #28344d; }

.service-card {
  background: rgba(255,255,255,.90);
  border-color: rgba(38,68,126,.11);
  box-shadow: 0 16px 42px rgba(35,58,112,.07);
}
.service-card:hover {
  border-color: rgba(84, 132, 255, .30);
  background: linear-gradient(145deg, #ffffff, #f6f3ff);
  box-shadow: 0 24px 52px rgba(55, 79, 145, .12);
}
.service-icon {
  color: #4d4bd8;
  background: linear-gradient(145deg, rgba(34,217,231,.10), rgba(183,66,245,.11));
  border-color: rgba(83, 145, 244, .20);
}
.service-card > span { color: #177f93; }

.project {
  background: #ffffff;
  border-color: rgba(37,65,120,.12);
  box-shadow: 0 18px 48px rgba(35,58,112,.09);
}
.project-info h3 { color: #121a2d; }
.project-type { color: #147f94; }

.price-card {
  background: #ffffff;
  border-color: rgba(37,65,120,.12);
  box-shadow: 0 18px 50px rgba(35,58,112,.08);
}
.price-card.featured {
  background:
    radial-gradient(circle at 95% 0%, rgba(183,66,245,.13), transparent 34%),
    linear-gradient(145deg, #ffffff, #f4f7ff);
  border-color: rgba(85, 122, 255, .36);
  box-shadow: 0 26px 65px rgba(53, 78, 156, .16);
}
.price-tag { color: #197e93; }
.price-card li { color: #34405a; }
.price-card li::before { color: #19a68f; }
.price-card ul { border-top-color: rgba(21,40,78,.10); }

.process-list li, .faq-item { border-bottom-color: rgba(21,40,78,.11); }
.process-list > li > span { -webkit-text-stroke-color: #9aa8c1; }
.faq-item summary { color: #1e2942; }

.contact-card {
  background:
    radial-gradient(circle at 7% 13%, rgba(34,217,231,.15), transparent 31%),
    radial-gradient(circle at 96% 88%, rgba(183,66,245,.15), transparent 31%),
    linear-gradient(135deg, #ffffff, #f3f6ff);
  border-color: rgba(74, 115, 211, .22);
  box-shadow: 0 30px 75px rgba(35,58,112,.14);
}
.contact-points { color: #34405a; }
.quote-form {
  background: rgba(255,255,255,.82);
  border-color: rgba(37,65,120,.13);
  box-shadow: 0 18px 42px rgba(35,58,112,.08);
}
.quote-form label { color: #2c3851; }
.quote-form input, .quote-form select, .quote-form textarea {
  color: #162039;
  background: #f9faff;
  border-color: #dce2f0;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9aa4ba; }
.quote-form select option { color: #162039; background: #ffffff; }
.form-note { color: #78839b; }

.site-footer {
  color: #45516a;
  background: #eef2fb;
  border-top-color: rgba(21,40,78,.10);
}
.footer-links strong { color: #19233a; }
.footer-links a { color: #66728b; }
.footer-links a:hover { color: #6848e8; }
.footer-bottom { color: #77839b; border-top-color: rgba(21,40,78,.10); }

@media (max-width: 850px) {
  .nav-links {
    background: rgba(255,255,255,.98);
    border-color: rgba(21,40,78,.12);
  }
}

/* Logo oficial sin fondo */
.brand-logo-wrap {
  width: 56px;
  height: 56px;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.brand-logo-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(64, 92, 190, 0.16));
}
.mini-brand {
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.mini-brand img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}
@media (max-width: 620px) {
  .brand-logo-wrap,
  .brand-logo-wrap img {
    width: 48px;
    height: 48px;
  }
}


/* =========================================================
   V8 — contacto real, portafolio ampliado y enlaces legales
   ========================================================= */
@media (min-width: 1081px) {
  .project-large { grid-row: span 2; }
  .project-large .project-preview { height: 100%; min-height: 720px; }
  .project:not(.project-large) .project-preview { height: 265px; }
}

.privacy-check {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: #5f6a82 !important;
  font-weight: 500 !important;
  line-height: 1.5;
}
.privacy-check input {
  width: 18px !important;
  height: 18px;
  margin-top: 2px;
  accent-color: #6a65f4;
}
.privacy-check a { color: #594fe0; font-weight: 750; }

.footer-grid { grid-template-columns: 1.25fr .55fr .85fr .75fr; gap: 48px; }
.footer-links span { color: #66728b; font-size: .75rem; }
.footer-socials { display: flex; gap: 11px; margin-top: 22px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(27, 45, 93, .18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.footer-socials a:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(27, 45, 93, .24);
}
.footer-socials a:focus-visible {
  outline: 3px solid rgba(92, 91, 238, .28);
  outline-offset: 3px;
}
.footer-socials svg { width: 23px; height: 23px; fill: currentColor; }
.footer-socials .social-facebook { background: #1877f2; }
.footer-socials .social-facebook svg { width: 25px; height: 25px; }
.footer-socials .social-whatsapp { background: #25d366; }
.footer-socials .social-whatsapp svg { width: 25px; height: 25px; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #20b967;
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(20, 112, 67, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 42px rgba(20,112,67,.36); }
.whatsapp-float svg { width: 31px; height: 31px; fill: currentColor; }

@media (max-width: 1080px) {
  .project-large { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: auto; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
}
