.promise-panel {
  display: grid;
  grid-template-columns: .35fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid var(--line);
  background: #f7f8f5;
  margin-bottom: 70px;
}

.promise-panel strong {
  font: 800 24px "Manrope", sans-serif;
}

.promise-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.promise-panel a {
  color: var(--teal);
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  gap: 0;
  letter-spacing: 0;
}

.brand-logo img {
  width: clamp(148px, 13vw, 210px);
  height: auto;
  display: block;
}

.footer-logo img {
  width: 190px;
}

.service-large span,
.service-small span {
  display: none;
}

.hero-value {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
}

.hero-value a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.hero-value a::after {
  content: "→";
  margin-left: 10px;
  color: var(--teal);
  transition: transform .25s ease;
}

.hero-value a:hover {
  transform: translateY(-3px);
  background: var(--ink);
  border-color: var(--mint);
  color: #fff;
}

.hero-value a:hover::after {
  transform: translateX(3px);
  color: var(--mint);
}

@media (min-width: 981px) {
  .hero-content {
    transform: translateY(46px);
  }

  .hero-card {
    bottom: clamp(18px, 5vw, 58px);
  }
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(96,113,123,.78);
  -webkit-text-fill-color: rgba(96,113,123,.78);
}

.method-steps b {
  font-size: 22px;
  line-height: 1;
}

.business-impact {
  background: #fff;
}

.impact-head {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  margin-bottom: 54px;
}

.impact-head h2 {
  margin: 18px 0 0;
  max-width: 780px;
  font-size: clamp(36px, 4.5vw, 66px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.impact-head > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #f7f8f5;
}

.impact-card {
  min-height: 320px;
  padding: 30px;
  border-right: 1px solid var(--line);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.impact-card:last-child {
  border-right: 0;
}

.impact-card:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(6,23,34,.12);
}

.impact-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--mint);
  font: 800 11px "Manrope", sans-serif;
}

.impact-card h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.impact-strip {
  display: grid;
  grid-template-columns: .28fr 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--ink);
  color: #fff;
}

.impact-strip strong {
  font: 800 20px "Manrope", sans-serif;
}

.impact-strip p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

.impact-strip a {
  padding: 14px 18px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.corporate-metrics {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background:
    radial-gradient(circle at 20% 25%, rgba(0,170,159,.16), transparent 32%),
    linear-gradient(135deg, #061722, #0e3143);
  color: #fff;
}

.metrics-copy h2 {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.metrics-copy .eyebrow {
  color: var(--mint);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.1);
  border-color: rgba(121,217,206,.4);
}

.metric-card strong {
  display: block;
  margin-bottom: 26px;
  font: 800 clamp(42px, 5vw, 68px) "Manrope", sans-serif;
  letter-spacing: -.06em;
  color: #fff;
}

.metric-card strong span {
  color: var(--mint);
}

.metric-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.65;
}

footer {
  display: block;
  padding: 0;
  background: #03111a;
  color: rgba(255,255,255,.68);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(0,170,159,.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(121,217,206,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 45%);
}

.site-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: transparent;
}

.site-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  box-shadow: 0 0 18px rgba(121,217,206,.55);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr .7fr .62fr .7fr .82fr;
  gap: 54px;
  padding: 66px clamp(24px,8vw,130px) 46px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 1;
}

.footer-main::before {
  content: "";
  position: absolute;
  left: clamp(24px,8vw,130px);
  right: clamp(24px,8vw,130px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(121,217,206,.55), transparent);
}

.footer-brand p {
  max-width: 430px;
  margin: 22px 0 24px;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
}

.footer-whatsapp {
  display: inline-flex;
  padding: 13px 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--mint);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-links a,
.social-links span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.social-links .social-disabled {
  cursor: default;
  opacity: .82;
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social.facebook {
  background: #1877f2;
}

.social.whatsapp {
  background: #25d366;
}

.social.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 9%, #fd5949 45%, #d6249f 62%, #285aeb 100%);
}

.social.youtube {
  background: #ff0000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(24px,8vw,130px);
  color: rgba(255,255,255,.45);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
}

.admin-link {
  color: rgba(255,255,255,.62);
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-link:hover {
  color: var(--mint);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(3,17,26,.28), 0 0 0 8px rgba(37,211,102,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(3,17,26,.34), 0 0 0 10px rgba(37,211,102,.16);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.chat-widget {
  position: fixed;
  right: 96px;
  bottom: 22px;
  z-index: 31;
  font-family: "DM Sans", sans-serif;
}

.chat-toggle {
  display: grid;
  gap: 2px;
  min-width: 172px;
  padding: 13px 16px;
  border: 1px solid rgba(121,217,206,.38);
  background: rgba(3,17,26,.94);
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(3,17,26,.28);
  backdrop-filter: blur(16px);
}

.chat-toggle span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.chat-toggle b {
  font-size: 14px;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(390px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(121,217,206,.24);
  background: #f7f8f5;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(3,17,26,.32);
}

.chat-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 15% 0%, rgba(0,170,159,.22), transparent 38%),
    linear-gradient(135deg, #03111a, #0e3143);
  color: #fff;
}

.chat-head strong,
.chat-head span {
  display: block;
}

.chat-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.chat-head span {
  margin-top: 4px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: min(46vh, 430px);
  overflow: auto;
  padding: 16px;
}

.chat-bubble {
  max-width: 86%;
  padding: 12px 13px;
  line-height: 1.45;
  font-size: 14px;
}

.chat-bubble.assistant {
  justify-self: start;
  background: #fff;
  border: 1px solid var(--line);
  color: #2c414d;
}

.chat-bubble.user {
  justify-self: end;
  background: var(--teal);
  color: #fff;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 16px 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chat-form textarea {
  width: 100%;
  resize: none;
  border: 1px solid var(--line);
  background: #f7f8f5;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  padding: 12px;
  font: 14px "DM Sans", sans-serif;
  outline: none;
}

.chat-form textarea:focus {
  border-color: var(--teal);
  background: #fff;
}

.chat-form button {
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
}

.chat-note {
  margin: 0;
  padding: 0 16px 14px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plans .plan {
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1180px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan.featured,
  .plan.featured:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

.header nav a.is-active {
  color: var(--mint);
  opacity: 1;
}

.button,
.plan a,
.footer-whatsapp {
  position: relative;
  overflow: hidden;
}

.tap-ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  animation: ripple .62s ease-out forwards;
}

.magnetic-hover {
  will-change: transform;
}

.service-large,
.service-small,
.plan,
.impact-card,
.metric-card,
.industry-grid article {
  transform-style: preserve-3d;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(26);
  }
}

@media (max-width: 980px) {
  .promise-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 22px;
    margin-bottom: 48px;
  }

  .brand-logo img {
    width: 142px;
  }

  .footer-logo img {
    width: 178px;
    margin: 0 auto;
  }

  .intro-grid article,
  .service-large div,
  .service-small div,
  .plan,
  .industry-grid article,
  .deliverable-list article {
    text-align: center;
  }

  .service-large ul {
    text-align: center;
  }

  .method-steps article {
    text-align: left;
  }

  .impact-head {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    margin-bottom: 32px;
  }

  .impact-head h2,
  .impact-head > p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    min-height: auto;
    padding: 26px 22px;
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-card:last-child {
    border-bottom: 0;
  }

  .impact-card span {
    margin-bottom: 20px;
  }

  .impact-strip {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 22px;
  }

  .impact-strip a {
    width: 100%;
  }

  .corporate-metrics {
    grid-template-columns: 1fr;
    padding-top: 66px;
    padding-bottom: 66px;
    text-align: center;
  }

  .metrics-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .metric-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .metric-card strong {
    margin-bottom: 14px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 52px 22px 34px;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-whatsapp {
    justify-content: center;
    width: 100%;
  }

  .footer-column {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .hero-value {
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-value a {
    width: auto;
    min-height: 30px;
    padding: 8px 10px;
    justify-content: center;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    font-size: 9px;
    letter-spacing: .06em;
  }

  .hero-value a::after {
    margin-left: 6px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }

  .chat-widget {
    right: 82px;
    bottom: 16px;
  }

  .chat-toggle {
    min-width: 0;
    width: 142px;
    padding: 11px 12px;
  }

  .chat-toggle b {
    font-size: 12px;
  }

  .chat-panel {
    position: fixed;
    right: 14px;
    left: 14px;
    bottom: 84px;
    width: auto;
  }

  .chat-messages {
    max-height: 42vh;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-form button {
    min-height: 42px;
  }

  .magnetic-hover,
  .service-large,
  .service-small,
  .plan,
  .impact-card,
  .metric-card,
  .industry-grid article {
    transform: none !important;
  }
}
