  :root {
  --ink: #101828;
  --muted: #667085;
  --blue: #175cd3;
  --blue2: #2970ff;
  --aqua: #11b7b1;
  --soft: #f5f8ff;
  --line: #e4e7ec;
  --navy: #0b1739;
  --lime: #d7ff6b;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 25px 70px rgba(23, 43, 77, 0.12);
  --container: 1200px;
  }
  * {
  box-sizing: border-box;
  }
  html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  }
  body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  }
  body.menu-open {
  overflow: hidden;
  }
  a {
  color: inherit;
  text-decoration: none;
  }
  button,
  input,
  textarea,
  select {
  font: inherit;
  }
  button {
  cursor: pointer;
  }
  .container {
  width: min(calc(100% - 40px), var(--container));
  margin: auto;
  }
  .skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  z-index: 999;
  border-radius: 8px;
  }
  .skip-link:focus {
  top: 12px;
  }
  .site-header {
  height: 78px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(228, 231, 236, 0.7);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: 0.25s;
  }
  .site-header.scrolled {
  box-shadow: 0 6px 25px rgba(16, 24, 40, 0.07);
  }
  .nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  }
  .brand {
  font:
  800 20px "Manrope",
  sans-serif;
  display: flex;
  align-items: center;
  gap: 11px;
  letter-spacing: -0.04em;
  }
  .brand > span:last-child > span {
  color: var(--blue2);
  }
  .brand-symbol {
  width: 37px;
  height: 37px;
  position: relative;
  display: block;
  }
  .brand-symbol i {
  position: absolute;
  display: block;
  border-radius: 10px;
  transform: rotate(45deg);
  }
  .brand-symbol i:first-child {
  width: 26px;
  height: 26px;
  background: var(--blue2);
  left: 1px;
  top: 3px;
  }
  .brand-symbol i:last-child {
  width: 19px;
  height: 19px;
  background: var(--aqua);
  right: 0;
  bottom: 2px;
  border: 4px solid #fff;
  }
  .desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  }
  .desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #344054;
  }
  .desktop-nav a:hover {
  color: var(--blue);
  }
  .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--blue2);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(41, 112, 255, 0.2);
  transition: 0.22s;
  }
  .button:hover {
  background: var(--blue);
  transform: translateY(-2px);
  }
  .button-small {
  min-height: 44px;
  font-size: 14px;
  padding: 0 17px;
  }
  .button span {
  font-size: 18px;
  }
  .menu-button,
  .mobile-nav {
  display: none;
  }
  .hero {
  padding-top: 78px;
  min-height: 850px;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
  }
  .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
  }
  .glow-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(
  circle,
  rgba(41, 112, 255, 0.11),
  transparent 68%
  );
  right: -120px;
  top: 90px;
  }
  .glow-two {
  width: 420px;
  height: 420px;
  background: radial-gradient(
  circle,
  rgba(17, 183, 177, 0.09),
  transparent 68%
  );
  left: -220px;
  top: 250px;
  }
  .hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  position: relative;
  }
  .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--blue);
  font-weight: 800;
  }
  .eyebrow > span {
  height: 2px;
  width: 25px;
  background: var(--blue2);
  }
  .eyebrow.light {
  color: #9cc3ff;
  }
  .eyebrow.light > span {
  background: #69e4dd;
  }
  .hero h1,
  .section-heading h2,
  .projects-heading h2,
  .outcome h2,
  .contact-copy h2 {
  font:
  800 clamp(42px, 5.4vw, 75px)/0.99 "Manrope",
  sans-serif;
  letter-spacing: -0.055em;
  margin: 21px 0 25px;
  }
  .hero h1 em,
  .section-heading h2 em,
  .projects-heading h2 em,
  .contact-copy h2 em {
  font-style: normal;
  color: var(--blue2);
  }
  .hero-lead {
  font-size: 18px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 640px;
  }
  .hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  }
  .text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  }
  .text-link span {
  color: var(--blue2);
  }
  .hero-proof {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  }
  .hero-proof span {
  font-size: 12px;
  color: #667085;
  max-width: 115px;
  }
  .hero-proof b {
  display: block;
  font: 800 22px "Manrope";
  color: var(--ink);
  margin-bottom: 4px;
  }
  .product-scene {
  height: 560px;
  position: relative;
  }
  .browser-card {
  background: #fff;
  border: 1px solid #dce3ef;
  border-radius: 17px;
  overflow: hidden;
  box-shadow: 0 35px 75px rgba(27, 58, 114, 0.18);
  position: absolute;
  }
  .browser-top {
  height: 34px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid #e6e9f0;
  }
  .browser-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7cdd8;
  }
  .browser-top i {
  font-style: normal;
  font-size: 8px;
  color: #98a2b3;
  margin: auto;
  }
  .main-browser {
  width: 91%;
  right: 0;
  top: 35px;
  transform: rotate(1.5deg);
  }
  .mock-landing {
  height: 345px;
  padding: 17px;
  background: linear-gradient(125deg, #fff 48%, #e6f7f4 48%);
  position: relative;
  }
  .mock-nav {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  }
  .mock-nav b {
  color: var(--blue);
  font-size: 14px;
  }
  .mock-nav i {
  height: 4px;
  width: 25px;
  border-radius: 4px;
  background: #c9d1dc;
  }
  .mock-nav button {
  margin-left: auto;
  width: 55px;
  height: 16px;
  border: 0;
  border-radius: 6px;
  background: #ffb84c;
  }
  .mock-copy {
  width: 55%;
  padding: 65px 0 0 18px;
  }
  .mock-copy small {
  font-size: 6px;
  color: var(--aqua);
  font-weight: 800;
  }
  .mock-copy strong {
  display: block;
  font: 800 25px/1.05 "Manrope";
  letter-spacing: -0.05em;
  margin: 10px 0;
  color: #12203f;
  }
  .mock-copy p {
  height: 5px;
  width: 90%;
  background: #cad2de;
  border-radius: 4px;
  }
  .mock-copy p.short {
  width: 68%;
  }
  .mock-copy button {
  width: 70px;
  height: 20px;
  border: 0;
  background: var(--blue2);
  border-radius: 6px;
  }
  .mock-photo {
  position: absolute;
  width: 42%;
  height: 270px;
  right: 20px;
  bottom: 18px;
  border-radius: 80px 18px 80px 18px;
  background:
  radial-gradient(circle at 60% 28%, #ffd287 0 4%, transparent 5%),
  linear-gradient(165deg, transparent 45%, #076b7a 46% 62%, #063c72 63%),
  linear-gradient(135deg, #79d7e2, #fff1c3);
  overflow: hidden;
  }
  .mock-photo:before,
  .mock-photo:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 100px;
  border-radius: 50% 50% 0 0;
  background: #148b6a;
  bottom: 0;
  left: -35px;
  transform: rotate(18deg);
  }
  .mock-photo:after {
  background: #0d6657;
  left: 85px;
  bottom: -20px;
  }
  .mock-photo span {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 13px;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  }
  .admin-browser {
  width: 64%;
  left: -9px;
  bottom: 30px;
  z-index: 3;
  transform: rotate(-2.5deg);
  }
  .mock-admin {
  height: 195px;
  display: grid;
  grid-template-columns: 55px 1fr;
  background: #f7f9fc;
  }
  .mock-admin aside {
  background: #142449;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  }
  .mock-admin aside b {
  color: #fff;
  }
  .mock-admin aside i {
  height: 4px;
  border-radius: 3px;
  background: #506188;
  }
  .mock-admin section {
  padding: 18px;
  }
  .mock-admin section small {
  font-weight: 700;
  }
  .stats {
  display: flex;
  gap: 8px;
  margin: 13px 0;
  }
  .stats b {
  width: 33%;
  height: 37px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid #e3e8ef;
  }
  .chart {
  height: 75px;
  background: linear-gradient(180deg, rgba(41, 112, 255, 0.15), transparent);
  border-bottom: 2px solid var(--blue2);
  clip-path: polygon(
  0 83%,
  16% 55%,
  30% 74%,
  48% 30%,
  65% 52%,
  83% 10%,
  100% 35%,
  100% 100%,
  0 100%
  );
  }
  .floating-badge {
  position: absolute;
  right: -5px;
  bottom: 68px;
  z-index: 5;
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  padding: 11px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 16px 35px rgba(23, 43, 77, 0.15);
  font-size: 10px;
  }
  .floating-badge > b {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ddf8ee;
  color: #079455;
  }
  .floating-badge span {
  font-weight: 700;
  }
  .floating-badge small {
  font-weight: 400;
  color: #667085;
  }
  .scene-dot {
  position: absolute;
  border-radius: 50%;
  }
  .dot-a {
  width: 17px;
  height: 17px;
  background: var(--lime);
  top: 17px;
  left: 15px;
  }
  .dot-b {
  width: 11px;
  height: 11px;
  background: #fd853a;
  right: 0;
  top: 165px;
  }
  .capability-strip {
  height: 82px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  }
  .capability-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bfd0ed;
  }
  .section {
  padding: 120px 0;
  }
  .section-heading,
  .projects-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
  }
  .section-heading h2,
  .projects-heading h2 {
  font-size: clamp(38px, 4.6vw, 60px);
  margin-bottom: 0;
  }
  .section-heading > p,
  .projects-heading > p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 4px;
  }
  .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  }
  .service-card {
  padding: 33px 30px;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  transition: 0.25s;
  }
  .service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  }
  .service-card.featured {
  background: linear-gradient(145deg, #eff5ff, #fff);
  border-color: #c7d7fe;
  }
  .number {
  font-size: 11px;
  color: #98a2b3;
  }
  .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: #eaf1ff;
  color: var(--blue2);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 75px 0 22px;
  }
  .service-card:nth-child(2) .service-icon {
  background: #e5fbf8;
  color: #078e88;
  }
  .service-card:nth-child(3) .service-icon {
  background: #fff3e7;
  color: #f79009;
  }
  .service-card h3 {
  font: 700 23px/1.2 "Manrope";
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  }
  .service-card p {
  color: var(--muted);
  line-height: 1.65;
  }
  .service-card ul {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  list-style: none;
  padding: 15px 0 0;
  margin: 0;
  }
  .service-card li {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 9px;
  border-radius: 20px;
  background: #f2f4f7;
  color: #475467;
  }
  .projects {
  background: var(--navy);
  color: #fff;
  }
  .projects-heading h2 em {
  color: #6bdad5;
  }
  .projects-heading > p {
  color: #aeb9d1;
  }
  .projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  }
  .project-large {
  grid-column: 1/-1;
  }
  .project {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  }
  .project-shot {
  height: 360px;
  margin: 14px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  padding: 18px 24px;
  }
  .project-large .project-shot {
  height: 475px;
  }
  .shot-marea {
  background:
  linear-gradient(rgba(5, 49, 87, 0.14), rgba(5, 49, 87, 0.18)),
  radial-gradient(circle at 75% 40%, #e6c49e 0 8%, transparent 9%),
  linear-gradient(150deg, #47b7bf, #a8e3d0 45%, #22746f 46% 65%, #063e64);
  }
  .shot-dubons {
  background: linear-gradient(
  145deg,
  #f2b85b,
  #ed8059 40%,
  #1c7472 41% 70%,
  #063e64
  );
  }
  .shot-jd {
  background: linear-gradient(
  145deg,
  #71d6e3,
  #d7efc1 38%,
  #158470 39% 68%,
  #123b74
  );
  }
  .shot-nav {
  font-weight: 800;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  }
  .shot-nav span {
  font-size: 9px;
  background: #fff;
  color: #111;
  padding: 7px 10px;
  border-radius: 20px;
  }
  .shot-center {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-45%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .shot-center small {
  font-size: 8px;
  letter-spacing: 0.16em;
  font-weight: 800;
  }
  .shot-center b {
  display: block;
  font: 800 clamp(27px, 4vw, 50px)/1.02 "Manrope";
  letter-spacing: -0.05em;
  margin: 12px 0 18px;
  }
  .shot-center button {
  background: #fff;
  border: 0;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 9px;
  font-weight: 800;
  }
  .project-info {
  display: flex;
  justify-content: space-between;
  padding: 12px 25px 26px;
  }
  .project-info span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #91a0bd;
  }
  .project-info h3 {
  font: 700 20px "Manrope";
  margin: 7px 0 0;
  }
  .project-info > b {
  font: 800 30px "Manrope";
  color: rgba(255, 255, 255, 0.2);
  }
  .projects-note {
  text-align: center;
  color: #91a0bd;
  margin: 35px 0 0;
  font-size: 13px;
  }
  .outcome {
  background: #f7faff;
  }
  .outcome-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  }
  .outcome h2 {
  font-size: clamp(39px, 4.5vw, 60px);
  }
  .outcome-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 30px;
  }
  .outcome-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid #dfe5ef;
  }
  .outcome-list article > b {
  color: var(--blue2);
  font-size: 11px;
  }
  .outcome-list h3 {
  font: 700 22px "Manrope";
  margin: 0 0 8px;
  }
  .outcome-list p {
  margin: 0;
  color: var(--muted);
  }
  .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  }
  .process-grid article {
  min-height: 300px;
  padding: 31px 25px;
  background: #fff;
  }
  .process-grid span {
  font: 800 40px "Manrope";
  color: #e4eaff;
  }
  .process-grid h3 {
  font: 700 20px "Manrope";
  margin-top: 85px;
  }
  .process-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  }
  .contact-section {
  padding: 120px 0;
  background: linear-gradient(145deg, #12275a, #0c1533);
  color: #fff;
  }
  .contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  }
  .contact-copy h2 {
  font-size: clamp(43px, 5.2vw, 68px);
  }
  .contact-copy h2 em {
  color: #6bdad5;
  }
  .contact-copy > p {
  color: #aeb9d1;
  font-size: 17px;
  line-height: 1.7;
  }
  .contact-direct {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  }
  .contact-direct small,
  .contact-direct span {
  color: #8f9db9;
  }
  .contact-direct a {
  font-size: 19px;
  font-weight: 700;
  margin: 4px 0 12px;
  }
  .contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 34px;
  }
  .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  }
  .contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 17px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
  border-color: var(--blue2);
  box-shadow: 0 0 0 3px rgba(41, 112, 255, 0.12);
  }
  .contact-form textarea {
  resize: vertical;
  }
  .form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
  }
  .form-footer p {
  font-size: 10px;
  color: #98a2b3;
  }
  .form-footer a {
  text-decoration: underline;
  }
  .button-light {
  min-width: 180px;
  }
  .honeypot {
  position: absolute;
  left: -9999px;
  }
  .form-alert {
  padding: 12px 14px;
  border-radius: 9px;
  margin-bottom: 18px;
  font-size: 13px;
  }
  .form-alert.success {
  background: #ecfdf3;
  color: #067647;
  }
  .form-alert.error {
  background: #fef3f2;
  color: #b42318;
  }
  .site-footer {
  padding: 70px 0 25px;
  background: #080e20;
  color: #fff;
  }
  .footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1fr 1fr;
  gap: 60px;
  }
  .footer-brand {
  margin-bottom: 20px;
  }
  .footer-main > div:first-child > p {
  max-width: 300px;
  color: #8590aa;
  line-height: 1.7;
  font-size: 14px;
  }
  .footer-main h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c89a5;
  margin: 0 0 20px;
  }
  .footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  }
  .footer-main a,
  .footer-main span {
  font-size: 14px;
  color: #c4cad7;
  }
  .footer-cta {
  font: 700 19px "Manrope" !important;
  border-bottom: 1px solid #506181;
  padding-bottom: 10px;
  }
  .footer-cta span {
  color: #6bdad5;
  font-size: 18px;
  }
  .footer-bottom {
  border-top: 1px solid #222c43;
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #6f7b94;
  font-size: 11px;
  }
  .footer-bottom div {
  display: flex;
  gap: 25px;
  }
  .footer-bottom a,
  .footer-bottom span {
  color: #6f7b94;
  }
  .legal-page {
  padding: 160px 0 100px;
  background: #f8faff;
  }
  .legal-wrap {
  max-width: 850px;
  }
  .legal-page h1 {
  font: 800 clamp(43px, 6vw, 72px) "Manrope";
  letter-spacing: -0.05em;
  }
  .legal-date {
  color: var(--muted);
  margin-bottom: 50px;
  }
  .legal-page section {
  background: #fff;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 30px;
  }
  .legal-page h2 {
  font: 700 21px "Manrope";
  margin-top: 30px;
  }
  .legal-page h2:first-child {
  margin-top: 0;
  }
  .legal-page p {
  color: var(--muted);
  line-height: 1.75;
  }
  .legal-page section a {
  color: var(--blue);
  text-decoration: underline;
  }
  .not-found {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 130px 20px;
  }
  .not-found span {
  font: 800 90px "Manrope";
  color: #dbe5ff;
  }
  .not-found h1 {
  font: 800 40px "Manrope";
  }
  .not-found p {
  color: var(--muted);
  margin-bottom: 25px;
  }
  .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
  opacity 0.7s ease,
  transform 0.7s ease;
  }
  .reveal.visible {
  opacity: 1;
  transform: none;
  }
  .delay-1 {
  transition-delay: 0.1s;
  }
  .delay-2 {
  transition-delay: 0.2s;
  }
  .delay-3 {
  transition-delay: 0.3s;
  }
  @media (prefers-reduced-motion: reduce) {
  html {
  scroll-behavior: auto;
  }
  .reveal {
  opacity: 1;
  transform: none;
  transition: none;
  }
  .button {
  transition: none;
  }
  }
  @media (max-width: 960px) {
  .desktop-nav,
  .header-cta {
  display: none;
  }
  .menu-button {
  display: flex;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 9px;
  background: #f1f5fb;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
  }
  .menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: 0.2s;
  }
  .menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 4px;
  top: 78px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-130%);
  transition: 0.3s;
  z-index: 90;
  }
  .mobile-nav.open {
  transform: none;
  }
  .mobile-nav > a:not(.button) {
  padding: 13px;
  font-weight: 700;
  }
  .hero-grid {
  grid-template-columns: 1fr;
  padding-top: 80px;
  }
  .hero {
  min-height: auto;
  }
  .product-scene {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  }
  .capability-strip {
  margin-top: 60px;
  }
  .section-heading,
  .projects-heading,
  .outcome-grid,
  .contact-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  }
  .services-grid {
  grid-template-columns: 1fr 1fr;
  }
  .service-card:last-child {
  grid-column: 1/-1;
  }
  .projects-grid {
  grid-template-columns: 1fr;
  }
  .project-large {
  grid-column: auto;
  }
  .outcome-grid {
  gap: 60px;
  }
  .process-grid {
  grid-template-columns: 1fr 1fr;
  }
  .footer-main {
  grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-main > div:last-child {
  grid-column: 2/-1;
  }
  .contact-copy {
  max-width: 650px;
  }
  }
  @media (max-width: 620px) {
  .container {
  width: min(calc(100% - 28px), var(--container));
  }
  .section {
  padding: 85px 0;
  }
  .hero-grid {
  padding-top: 50px;
  gap: 35px;
  }
  .hero h1 {
  font-size: 45px;
  }
  .hero-lead {
  font-size: 16px;
  }
  .hero-actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  }
  .hero-proof {
  gap: 16px;
  }
  .hero-proof span {
  font-size: 10px;
  }
  .product-scene {
  height: 405px;
  }
  .main-browser {
  width: 100%;
  }
  .mock-landing {
  height: 260px;
  }
  .mock-copy {
  padding-top: 35px;
  }
  .mock-copy strong {
  font-size: 18px;
  }
  .mock-photo {
  height: 195px;
  right: 12px;
  }
  .admin-browser {
  width: 73%;
  bottom: 5px;
  }
  .mock-admin {
  height: 145px;
  }
  .mock-admin section {
  padding: 10px;
  }
  .chart {
  height: 45px;
  }
  .floating-badge {
  right: 0;
  bottom: 20px;
  }
  .capability-strip {
  overflow: hidden;
  gap: 25px;
  justify-content: flex-start;
  white-space: nowrap;
  }
  .section-heading,
  .projects-heading {
  margin-bottom: 35px;
  }
  .section-heading h2,
  .projects-heading h2 {
  font-size: 39px;
  }
  .services-grid {
  grid-template-columns: 1fr;
  }
  .service-card:last-child {
  grid-column: auto;
  }
  .service-card {
  min-height: 390px;
  }
  .service-icon {
  margin-top: 45px;
  }
  .project-shot,
  .project-large .project-shot {
  height: 330px;
  }
  .shot-center b {
  font-size: 31px;
  }
  .process-grid {
  grid-template-columns: 1fr;
  }
  .process-grid article {
  min-height: 230px;
  }
  .process-grid h3 {
  margin-top: 50px;
  }
  .contact-section {
  padding: 85px 0;
  }
  .contact-form {
  padding: 24px 18px;
  }
  .field-row {
  grid-template-columns: 1fr;
  gap: 0;
  }
  .form-footer {
  align-items: flex-start;
  flex-direction: column;
  }
  .footer-main {
  grid-template-columns: 1fr;
  gap: 35px;
  }
  .footer-main > div:last-child {
  grid-column: auto;
  }
  .footer-bottom {
  flex-direction: column;
  gap: 16px;
  }
  .footer-bottom div {
  flex-direction: column;
  gap: 8px;
  }
  .legal-page section {
  padding: 25px;
  }
  .delay-1,
  .delay-2,
  .delay-3 {
  transition-delay: 0s;
  }
  }

  /* Identidad real, portafolio y contacto directo */
  .brand-logo {
  width: 48px;
  height: 34px;
  object-fit: contain;
  display: block;
  }
  .footer-brand .brand-logo {
  filter: drop-shadow(0 5px 12px rgba(41, 112, 255, 0.22));
  }
  .projects-grid {
  align-items: stretch;
  }
  .project {
  display: flex;
  flex-direction: column;
  }
  .project-image-link {
  display: flex;
  position: relative;
  margin: 14px;
  border-radius: 14px;
  overflow: hidden;
  background: #081126;
  align-items: center;
  justify-content: center;
  }
  .project-shot-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: filter 0.35s ease;
  }
  .visit-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
  color: #101828;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s;
  }
  .project-image-link:hover .project-shot-image {
  filter: brightness(0.78);
  }
  .project-image-link:hover .visit-overlay,
  .project-image-link:focus-visible .visit-overlay {
  opacity: 1;
  transform: none;
  }
  .project-info {
  flex: 1;
  gap: 25px;
  }
  .project-info > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  }
  .project-info p {
  color: #9eabc4;
  font-size: 13px;
  line-height: 1.6;
  max-width: 480px;
  margin: 10px 0 18px;
  }
  .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(107, 218, 213, 0.45);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  }
  .project-link b {
  color: #6bdad5;
  font-size: 15px;
  }
  .whatsapp-text-link {
  color: #65e6a4 !important;
  }
  .whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #182230;
  padding: 9px 14px 9px 9px;
  border: 1px solid #dfe5e8;
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(8, 23, 39, 0.2);
  transition: 0.2s;
  }
  .whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(8, 23, 39, 0.26);
  }
  .whatsapp-float > .whatsapp-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #20b865;
  color: #fff;
  }

  .whatsapp-float > .whatsapp-icon i {
  font-size: 22px;
  line-height: 1;
  }
  .whatsapp-float > span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  }
  .whatsapp-float small {
  display: block;
  color: #667085;
  font-size: 9px;
  font-weight: 500;
  margin-top: 3px;
  }
  @media (max-width: 620px) {
  .brand-logo {
  width: 42px;
  height: 30px;
  }
  .brand {
  font-size: 18px;
  }
  .project-image-link {
  margin: 10px;
  }
  .project-shot-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  }
  .visit-overlay {
  opacity: 1;
  transform: none;
  right: 10px;
  bottom: 10px;
  padding: 9px 11px;
  }
  .project-info {
  padding: 11px 20px 24px;
  }
  .project-info p {
  font-size: 12px;
  }
  .whatsapp-float {
  right: 14px;
  bottom: 14px;
  padding: 7px;
  }
  .whatsapp-float > span:not(.whatsapp-icon) {
  display: none;
  }
  .whatsapp-float > .whatsapp-icon {
  width: 43px;
  height: 43px;
  flex-basis: 43px;
  }

  .whatsapp-float > .whatsapp-icon i {
  font-size: 24px;
  }
  }


  /* Ajustes finales del hero y WhatsApp */
  @media (min-width: 961px) {
  .hero-copy {
  transform: translateY(46px);
  }

  .hero-copy.reveal.visible {
  transform: translateY(46px);
  }
  }

  .whatsapp-float > .whatsapp-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: #20b865;
  color: #fff;
  }

  .whatsapp-float > .whatsapp-icon i {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  }

  @media (max-width: 620px) {
  .whatsapp-float > .whatsapp-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  }

  .whatsapp-float > .whatsapp-icon i {
  font-size: 31px;
  }
  }
