:root {
  --navy: #071a33;
  --navy-2: #0b2a4a;
  --teal: #0d7f8a;
  --cyan: #19a9b7;
  --orange: #e89332;
  --orange-dark: #c87317;
  --ink: #10243a;
  --muted: #5f7080;
  --line: #dfe8ec;
  --soft: #f4f8fa;
  --white: #fff;
  --shadow: 0 20px 65px #071a331f;
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  background: #fff;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 105px 0;
  position: relative;
}

.section--navy {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.skip-link {
  z-index: 9999;
  color: var(--navy);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  left: 16px;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--navy);
  color: #e9f4f6;
  font-size: .84rem;
}

.topbar__inner {
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  display: flex;
}

.topbar a {
  color: #fff;
  text-underline-offset: 3px;
  font-weight: 800;
  text-decoration: underline;
}

.site-header {
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: #fffffff0;
  border-bottom: 1px solid #071a3314;
  position: sticky;
  top: 0;
}

.nav-wrap {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  height: 80px;
  display: flex;
}

.brand {
  align-items: center;
  width: 210px;
  height: 64px;
  display: flex;
  overflow: hidden;
}

.brand img {
  width: 205px;
  height: auto;
  transform: scale(1.06);
}

.nav {
  align-items: center;
  gap: 28px;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
}

.nav > a:not(.btn) {
  position: relative;
}

.nav > a:not(.btn):after {
  content: "";
  background: var(--orange);
  height: 2px;
  transition: all .25s;
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 100%;
}

.nav > a:not(.btn):hover:after {
  right: 0;
}

.nav-toggle {
  background: none;
  border: 0;
  padding: 9px;
  display: none;
}

.nav-toggle span {
  background: var(--navy);
  border-radius: 2px;
  width: 25px;
  height: 2px;
  margin: 5px;
  display: block;
}

.btn {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  display: inline-flex;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 18px;
  font-size: .9rem;
}

.btn--large {
  padding: 16px 25px;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px #e8933247;
}

.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 36px #e8933252;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--navy);
  background: #fff;
}

.btn--ghost:hover, .btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--outline {
  color: var(--navy);
  background: none;
  border-color: #b8c9cf;
}

.btn--light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 35px #00000026;
}

.btn--block {
  width: 100%;
}

.hero {
  background: linear-gradient(135deg, #f8fbfc 0%, #fff 50%, #eef8f8 100%);
  padding: 82px 0 100px;
  overflow: hidden;
}

.hero__grid {
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 65px;
  display: grid;
}

.hero__copy {
  z-index: 2;
  position: relative;
}

.eyebrow, .kicker {
  color: var(--teal);
  letter-spacing: .13em;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 900;
  display: inline-flex;
}

.eyebrow span {
  background: var(--orange);
  width: 27px;
  height: 2px;
}

.hero h1 {
  letter-spacing: -.055em;
  color: var(--navy);
  margin: 20px 0 22px;
  font-size: clamp(3rem, 5.2vw, 5.55rem);
  line-height: .99;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
  position: relative;
}

.hero h1 em:after {
  content: "";
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: .65;
  border-radius: 50%;
  height: 8px;
  position: absolute;
  bottom: -6px;
  left: 5%;
  right: 0;
}

.hero__lead {
  max-width: 650px;
  color: var(--muted);
  margin: 0 0 30px;
  font-size: 1.15rem;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 13px;
  display: flex;
}

.trust-list {
  color: #42596b;
  flex-wrap: wrap;
  gap: 22px;
  margin: 29px 0 0;
  padding: 0;
  font-size: .9rem;
  font-weight: 750;
  list-style: none;
  display: flex;
}

.trust-list span {
  color: var(--teal);
  font-weight: 900;
}

.browser-card {
  background: #fff;
  border: 1px solid #dbe7ea;
  border-radius: 24px;
  width: 94%;
  padding: 12px;
  transform: rotate(1.4deg);
  box-shadow: 0 42px 100px #071a3333;
}

.browser-card__bar {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 8px;
  display: flex;
}

.browser-card__bar i {
  background: #cad5d9;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.browser-card__bar i:first-child {
  background: #ff9f86;
}

.browser-card__bar i:nth-child(2) {
  background: #ffd16b;
}

.browser-card__bar i:nth-child(3) {
  background: #75d49a;
}

.browser-card__bar span {
  color: #82929c;
  background: #f2f6f7;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  padding: 3px 40px;
  font-size: .65rem;
}

.browser-card__screen {
  background: #f7fbfc;
  border-radius: 15px;
  margin-top: 12px;
  overflow: hidden;
}

.mini-nav {
  height: 55px;
  color: var(--navy);
  background: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  font-size: .75rem;
  display: flex;
}

.mini-nav div {
  gap: 10px;
  display: flex;
}

.mini-nav span {
  background: #d7e3e6;
  width: 26px;
  height: 3px;
  display: block;
}

.mini-hero {
  background: linear-gradient(135deg, #eff8f8, #fff);
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  min-height: 280px;
  padding: 30px;
  display: grid;
}

.mini-hero small {
  color: var(--teal);
  letter-spacing: .12em;
  font-weight: 900;
}

.mini-hero strong {
  color: var(--navy);
  margin: 10px 0;
  font-size: 2.05rem;
  line-height: 1.05;
  display: block;
}

.mini-hero p {
  color: var(--muted);
  font-size: .73rem;
}

.mini-hero button {
  background: var(--orange);
  color: #fff;
  border: 0;
  border-radius: 18px;
  padding: 9px 16px;
  font-size: .68rem;
  font-weight: 800;
}

.mini-art {
  height: 200px;
  position: relative;
}

.mini-art i {
  border: 2px solid #0d7f8a47;
  border-radius: 50%;
  position: absolute;
}

.mini-art i:first-child {
  inset: 8%;
}

.mini-art i:nth-child(2) {
  background: #0d7f8a26;
  inset: 24%;
}

.mini-art i:nth-child(3) {
  background: var(--orange);
  border: 0;
  width: 50px;
  height: 50px;
  top: 35%;
  left: 35%;
}

.mini-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 25px 24px;
  display: grid;
}

.mini-cards i {
  background: #fff;
  border-radius: 9px;
  height: 48px;
  box-shadow: 0 4px 18px #071a330f;
}

.floating-card {
  border: 1px solid var(--line);
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  display: flex;
  position: absolute;
  box-shadow: 0 18px 45px #071a3326;
}

.floating-card b, .floating-card small {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: .75rem;
}

.floating-card--bottom > span {
  width: 38px;
  height: 38px;
  color: var(--teal);
  background: #eaf7f7;
  border-radius: 50%;
  place-items: center;
  font-weight: 900;
  display: grid;
}

.pulse {
  background: #5ac88c;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 7px #5ac88c29;
}

.hero-glow {
  filter: blur(6px);
  opacity: .55;
  border-radius: 50%;
  position: absolute;
}

.hero-glow--one {
  background: #19a9b71a;
  width: 420px;
  height: 420px;
  top: -130px;
  right: -140px;
}

.hero-glow--two {
  background: #e8933217;
  width: 230px;
  height: 230px;
  bottom: -120px;
  left: 35%;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.proof-strip__grid {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.proof-strip__grid div {
  border-right: 1px solid var(--line);
  padding: 24px 30px;
}

.proof-strip__grid div:last-child {
  border: 0;
}

.proof-strip b, .proof-strip span {
  display: block;
}

.proof-strip b {
  color: var(--navy);
  font-size: 1.05rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: .82rem;
}

.section-heading {
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 50px;
  display: grid;
}

.section-heading h2, .seo-grid h2, .contact-copy h2, .faq-intro h2, .map-card h2, .final-cta h2 {
  letter-spacing: -.045em;
  color: var(--navy);
  margin: 10px 0 0;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.section-heading--center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
  display: block;
}

.section-heading--center p {
  margin-top: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  display: grid;
}

.service-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 29px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
  background: #e9f6f7;
  border-radius: 15px;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 800;
  display: grid;
}

.service-card h3 {
  color: var(--navy);
  margin: 20px 0 7px;
  font-size: 1.23rem;
}

.service-card p {
  color: var(--muted);
  font-size: .93rem;
}

.service-card a {
  color: var(--teal);
  font-size: .9rem;
  font-weight: 850;
}

.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  display: grid;
}

.project-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 35px #071a3312;
}

.project-card__img {
  aspect-ratio: 16 / 10;
  background: #e8eef1;
  position: relative;
  overflow: hidden;
}

.project-card__img img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  transition: transform .55s;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card__img span {
  backdrop-filter: blur(10px);
  color: var(--navy);
  background: #ffffffeb;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .72rem;
  font-weight: 900;
  position: absolute;
  top: 16px;
  left: 16px;
}

.project-card__body {
  justify-content: space-between;
  align-items: center;
  padding: 21px 23px;
  display: flex;
}

.project-card h3 {
  color: var(--navy);
  margin: 0;
}

.project-card p {
  color: var(--muted);
  margin: 2px 0 0;
  font-size: .88rem;
}

.project-card__body > a {
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  display: grid;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
  display: grid;
}

.price-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px #071a3312;
}

.price-card__top {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, #fff, #f1f7f8);
  padding: 30px;
}

.price-card__top > span {
  letter-spacing: .13em;
  color: var(--teal);
  font-size: .74rem;
  font-weight: 950;
}

.price-card h3 {
  color: var(--navy);
  min-height: 66px;
  margin: 10px 0;
  font-size: 1.3rem;
  line-height: 1.25;
}

.price {
  color: var(--navy);
  align-items: flex-start;
  margin-top: 18px;
  display: flex;
}

.price small {
  margin: 10px 5px 0 0;
  font-weight: 900;
}

.price b {
  letter-spacing: -.07em;
  font-size: 4.3rem;
  line-height: 1;
}

.price-card__top p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: .82rem;
}

.price-card__body {
  flex-direction: column;
  height: calc(100% - 225px);
  padding: 27px;
  display: flex;
}

.price-card__body > strong {
  color: var(--navy);
}

.price-card ul {
  flex: 1;
  margin: 17px 0 20px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: #435969;
  margin: 9px 0;
  padding-left: 23px;
  font-size: .86rem;
  position: relative;
}

.price-card li:before {
  content: "✓";
  color: var(--teal);
  font-weight: 950;
  position: absolute;
  left: 0;
}

.plan-meta {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  display: grid;
}

.plan-meta span {
  background: var(--soft);
  text-align: center;
  color: var(--navy);
  border-radius: 11px;
  padding: 10px 8px;
  font-size: .7rem;
  font-weight: 850;
}

.price-card--featured {
  border-color: var(--orange);
  transform: translateY(-15px);
  box-shadow: 0 26px 70px #071a3329;
}

.popular {
  z-index: 2;
  background: var(--orange);
  color: #fff;
  letter-spacing: .1em;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .65rem;
  font-weight: 950;
  position: absolute;
  top: 15px;
  right: 15px;
}

.price-card--dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.custom-plan {
  border: 1px solid var(--line);
  background: #f8fbfc;
  border-radius: 22px;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding: 25px 30px;
  display: flex;
}

.custom-plan span {
  color: var(--teal);
  font-size: .8rem;
  font-weight: 900;
}

.custom-plan h3 {
  color: var(--navy);
  margin: 4px 0 0;
}

.seo-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

.seo-grid h2 {
  color: #fff;
}

.seo-grid p {
  color: #b8cbd6;
  max-width: 570px;
  margin: 20px 0 30px;
}

.kicker--light {
  color: #7fdce2;
}

.seo-checklist {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

.seo-checklist > div {
  background: #ffffff12;
  border: 1px solid #ffffff1f;
  border-radius: 18px;
  gap: 15px;
  padding: 22px;
  display: flex;
}

.seo-checklist b {
  color: var(--orange);
  font-size: .85rem;
}

.seo-checklist strong, .seo-checklist small {
  display: block;
}

.seo-checklist small {
  color: #a9c0cc;
  margin-top: 4px;
}

.process-grid {
  counter-reset: process;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.process-grid li {
  border-top: 3px solid var(--line);
  background: #fff;
  padding: 26px;
}

.process-grid span {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 950;
}

.process-grid h3 {
  color: var(--navy);
  margin: 12px 0 7px;
}

.process-grid p {
  color: var(--muted);
  font-size: .9rem;
}

.faq-grid {
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  display: grid;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-intro p {
  color: var(--muted);
  margin: 20px 0 25px;
}

.accordion details {
  border-bottom: 1px solid #d4e0e4;
  padding: 7px 0;
}

.accordion summary {
  cursor: pointer;
  color: var(--navy);
  padding: 19px 38px 19px 0;
  font-weight: 850;
  list-style: none;
  position: relative;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:after {
  content: "+";
  width: 29px;
  height: 29px;
  color: var(--teal);
  background: #fff;
  border-radius: 50%;
  place-items: center;
  font-size: 1.25rem;
  display: grid;
  position: absolute;
  top: 15px;
  right: 0;
}

.accordion details[open] summary:after {
  content: "−";
}

.accordion p {
  color: var(--muted);
  max-width: 750px;
  margin: 0 0 21px;
}

.contact-grid {
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 70px;
  display: grid;
}

.contact-copy p {
  color: var(--muted);
  max-width: 540px;
}

.contact-points {
  gap: 12px;
  margin-top: 32px;
  display: grid;
}

.contact-points > a, .contact-points > div {
  align-items: center;
  gap: 13px;
  display: flex;
}

.contact-points > * > span {
  width: 42px;
  height: 42px;
  color: var(--teal);
  background: #e9f6f7;
  border-radius: 13px;
  place-items: center;
  display: grid;
}

.contact-points small, .contact-points b {
  display: block;
}

.contact-points b {
  color: var(--navy);
  font-size: .91rem;
}

.contact-form {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 25px;
  padding: 30px;
}

.contact-form label {
  color: var(--navy);
  margin-bottom: 15px;
  font-size: .83rem;
  font-weight: 800;
  display: block;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid #cfdce1;
  border-radius: 12px;
  outline: none;
  margin-top: 7px;
  padding: 13px 14px;
  transition: all .2s;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  display: grid;
}

.check {
  align-items: flex-start;
  gap: 9px;
  color: var(--muted) !important;
  font-weight: 500 !important;
  display: flex !important;
}

.check input {
  width: auto;
  margin: 4px 0 0;
}

.check a {
  color: var(--teal);
  text-decoration: underline;
}

.form-note {
  text-align: center;
  color: var(--muted);
  margin: 10px 0 0;
  font-size: .72rem;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
}

.map-section {
  padding: 0 0 105px;
}

.map-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 25px;
  grid-template-columns: .75fr 1.25fr;
  display: grid;
  overflow: hidden;
}

.map-card__copy {
  background: #fff;
  padding: 45px;
}

.map-card__copy p {
  color: var(--muted);
  margin: 17px 0 25px;
}

.map-embed {
  min-height: 420px;
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.final-cta {
  background: linear-gradient(135deg, var(--teal), #075c68);
  color: #fff;
  padding: 80px 0;
}

.final-cta__inner {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  display: flex;
}

.final-cta span {
  color: #b8f3f6;
  font-weight: 800;
}

.final-cta h2 {
  color: #fff;
  max-width: 780px;
  margin-top: 7px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.footer {
  color: #b9c9d4;
  background: #041326;
  padding-top: 70px;
}

.footer__grid {
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
  padding-bottom: 50px;
  display: grid;
}

.footer__brand img {
  background: #fff;
  border-radius: 14px;
  width: 235px;
  padding: 8px;
}

.footer__brand p {
  max-width: 390px;
}

.footer h3 {
  color: #fff;
  font-size: .95rem;
}

.footer a {
  margin: 9px 0;
  font-size: .88rem;
  display: block;
}

.footer__bottom {
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 30px;
  font-size: .78rem;
  display: flex;
}

.footer__bottom div {
  gap: 18px;
  display: flex;
}

.whatsapp-float {
  z-index: 1000;
  color: #fff;
  background: #19a75a;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 11px 16px 11px 11px;
  font-weight: 850;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 15px 40px #19a75a59;
}

.whatsapp-float svg {
  fill: #fff;
  width: 29px;
  height: 29px;
}

.cookie-banner {
  z-index: 1100;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.cookie-banner p {
  color: var(--muted);
  margin: 3px 0 0;
  font-size: .82rem;
}

.cookie-banner > div:last-child {
  gap: 8px;
  display: flex;
}

.reveal {
  opacity: 0;
  transition: opacity .65s, transform .65s;
  transform: translateY(20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
    transform: none;
  }

  .btn, .project-card__img img {
    transition: none;
  }
}

@media (width <= 1020px) {
  .nav {
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 25px 30px 35px;
    display: none;
    position: fixed;
    inset: 80px 0 auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero__grid, .seo-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions, .trust-list {
    justify-content: center;
  }

  .hero__visual {
    max-width: 720px;
    margin: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: auto;
  }

  .price-card--featured {
    transform: none;
  }

  .price-card__body {
    height: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faq-intro {
    position: static;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-embed {
    height: 420px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 2;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip__grid div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip__grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (width <= 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .topbar__inner {
    font-size: .72rem;
  }

  .topbar a {
    display: none;
  }

  .brand {
    width: 178px;
  }

  .brand img {
    width: 175px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .trust-list {
    gap: 11px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .browser-card {
    width: 100%;
  }

  .mini-hero {
    min-height: 220px;
    padding: 20px;
  }

  .mini-hero strong {
    font-size: 1.45rem;
  }

  .floating-card--top {
    top: 10px;
    right: -3px;
  }

  .floating-card--bottom {
    bottom: 8px;
    left: -3px;
  }

  .floating-card {
    padding: 9px 11px;
  }

  .service-grid, .portfolio-grid, .seo-checklist, .process-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid div {
    padding: 18px 14px;
  }

  .section-heading h2, .seo-grid h2, .contact-copy h2, .faq-intro h2, .map-card h2 {
    font-size: 2.25rem;
  }

  .custom-plan, .final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-form {
    padding: 22px;
  }

  .map-card__copy {
    padding: 30px 24px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 11px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .cookie-banner > div:last-child {
    width: 100%;
  }

  .cookie-banner .btn {
    flex: 1;
  }
}

.hero__visual {
  place-items: center;
  min-height: 560px;
  display: grid;
  position: relative;
}

.hero-device {
  backdrop-filter: blur(10px);
  background: #ffffffeb;
  border: 1px solid #071a3314;
  border-radius: 30px;
  width: min(100%, 720px);
  padding: 14px;
  position: relative;
  transform: rotate(-1.2deg);
  box-shadow: 0 40px 110px #071a332e, 0 10px 25px #071a3314;
}

.hero-device__bar {
  border-bottom: 1px solid #071a3314;
  align-items: center;
  gap: 14px;
  height: 54px;
  padding: 0 14px 14px;
  display: flex;
}

.hero-device__dots {
  align-items: center;
  gap: 7px;
  display: flex;
}

.hero-device__dots i {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
}

.hero-device__dots i:first-child {
  background: #ff8b7b;
}

.hero-device__dots i:nth-child(2) {
  background: #ffd36c;
}

.hero-device__dots i:nth-child(3) {
  background: #76d39a;
}

.hero-device__bar span {
  color: #748493;
  text-align: center;
  background: #f5f8fa;
  border: 1px solid #071a330f;
  border-radius: 999px;
  flex: 1;
  max-width: 250px;
  margin-inline: auto;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 700;
}

.hero-device__bar b {
  color: #95a4b1;
  font-size: .8rem;
  font-weight: 700;
}

.hero-device__screen {
  aspect-ratio: 16 / 10;
  background: #edf4f6;
  border-radius: 22px;
  overflow: hidden;
}

.hero-device__screen img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__visual .floating-card--top {
  top: 26px;
  right: -6px;
}

.hero__visual .floating-card--bottom {
  bottom: 26px;
  left: -12px;
}

@media (width <= 1020px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: auto;
    margin-top: 16px;
  }

  .hero-device {
    width: min(100%, 760px);
    transform: none;
  }
}

@media (width <= 680px) {
  .hero__visual {
    min-height: auto;
  }

  .hero-device {
    border-radius: 22px;
    padding: 10px;
  }

  .hero-device__bar {
    gap: 10px;
    height: 44px;
    padding: 0 10px 10px;
  }

  .hero-device__bar span {
    max-width: 180px;
    padding: 6px 12px;
    font-size: .7rem;
  }

  .hero-device__bar b {
    display: none;
  }

  .hero__visual .floating-card--top {
    top: 10px;
    right: 0;
  }

  .hero__visual .floating-card--bottom {
    bottom: 12px;
    left: 0;
  }
}

.service-grid {
  align-items: stretch;
}

.service-card {
  background: #fff;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.service-card__image {
  aspect-ratio: 16 / 10;
  background: var(--soft);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-card__image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform .55s, filter .55s;
  display: block;
}

.service-card__image:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, #071a3329, #0000);
  height: 45%;
  position: absolute;
  inset: auto 0 0;
}

.service-card__content {
  flex-direction: column;
  flex: 1;
  padding: 25px 29px 29px;
  display: flex;
}

.service-card__content h3 {
  margin: 0 0 8px;
}

.service-card__content p {
  margin: 0 0 20px;
}

.service-card__content > a {
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
}

.service-card__content > a span {
  transition: transform .25s;
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card:hover .service-card__content > a span {
  transform: translateX(4px);
}

@media (width <= 680px) {
  .service-card__image {
    aspect-ratio: 16 / 9;
  }

  .service-card__content {
    padding: 22px;
  }
}

.price-card__top {
  flex: none;
  min-height: 225px;
}

.price-card__body {
  flex-direction: column;
  flex: auto;
  height: auto;
  min-height: 0;
  display: flex;
}

.price-card__body ul {
  flex: auto;
}

.price-card__body .plan-meta, .price-card__body > .btn {
  flex: none;
}

.price-card__body > .btn {
  min-height: 48px;
  margin-top: 0;
}

@media (width <= 1020px) {
  .price-card__top {
    min-height: 0;
  }
}

:root {
  --premium-shadow: 0 28px 80px #071a3324;
  --premium-shadow-soft: 0 18px 45px #071a3317;
  --premium-border: #0d7f8a29;
  --premium-gradient: linear-gradient(135deg, #0d7f8a 0%, #19a9b7 55%, #e89332 145%);
}

body {
  background: #fff;
  overflow-x: hidden;
}

.section {
  padding: 88px 0;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.topbar {
  background: linear-gradient(90deg, #041326, #071a33 55%, #0b2a4a);
  border-bottom: 1px solid #ffffff14;
  position: relative;
  overflow: hidden;
}

.topbar:before {
  content: "";
  filter: blur(40px);
  background: #e8933238;
  border-radius: 50%;
  width: 340px;
  height: 160px;
  position: absolute;
  top: -120px;
  right: 10%;
}

.topbar__inner {
  color: #eaf7f8;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  display: flex;
  position: relative;
}

.topbar__message, .topbar__benefits {
  align-items: center;
  gap: 10px;
  display: flex;
}

.topbar__message {
  font-size: .82rem;
}

.topbar__message strong {
  color: #fff;
}

.topbar__pulse {
  background: #70e0c1;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite premiumPulse;
  box-shadow: 0 0 0 6px #70e0c11f;
}

.topbar__benefits {
  color: #a9c8d1;
  font-size: .72rem;
  font-weight: 750;
}

.topbar__benefits i {
  background: var(--orange);
  border-radius: 50%;
  width: 3px;
  height: 3px;
}

.topbar__link {
  background: #ffffff0f;
  border: 1px solid #ffffff29;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  font-size: .78rem;
  font-weight: 900;
  transition: all .25s;
  display: inline-flex;
  color: #fff !important;
  text-decoration: none !important;
}

.topbar__link:hover {
  background: #fff;
  transform: translateY(-1px);
  color: var(--navy) !important;
}

.site-header {
  background: #ffffffdb;
  border-bottom: 1px solid #071a3312;
  box-shadow: 0 8px 35px #071a330a;
}

.nav-wrap {
  height: 86px;
}

.brand {
  width: 185px;
  height: 66px;
}

.brand img {
  width: 180px;
  transform: none;
}

.nav {
  gap: 30px;
  font-size: .91rem;
}

.nav > a:not(.btn) {
  color: #183049;
  padding: 10px 0;
}

.nav > a:not(.btn):after {
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 999px;
  height: 3px;
  bottom: 2px;
}

.nav__cta {
  border: 0;
  box-shadow: 0 13px 32px #e8933247;
}

.btn--premium {
  isolation: isolate;
  letter-spacing: -.01em;
  min-height: 50px;
  position: relative;
  overflow: hidden;
}

.btn--premium:before {
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, #0000, #ffffff57, #0000);
  width: 34%;
  transition: transform .65s;
  position: absolute;
  inset: -2px auto -2px -40%;
  transform: skewX(-20deg);
}

.btn--premium:hover:before {
  transform: translateX(440%) skewX(-20deg);
}

.btn__icon {
  background: #ffffff2e;
  border-radius: 50%;
  place-items: center;
  width: 28px;
  height: 28px;
  transition: transform .25s;
  display: grid;
}

.btn--premium:hover .btn__icon {
  transform: translateX(3px) rotate(-5deg);
}

.btn--ghost.btn--premium {
  border-color: #0d7f8a59;
  box-shadow: 0 12px 35px #071a330f;
}

.btn--ghost.btn--premium:hover {
  border-color: var(--teal);
  color: var(--navy);
  background: #f1fbfb;
}

.hero--premium {
  background: radial-gradient(circle at 88% 10%, #19a9b721, #0000 28%), radial-gradient(circle at 12% 86%, #e893321a, #0000 30%), linear-gradient(135deg, #f8fbfc 0%, #fff 52%, #edf8f8 100%);
  padding: 58px 0 72px;
  position: relative;
}

.hero--premium:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#071a3306 1px, #0000 1px), linear-gradient(90deg, #071a3306 1px, #0000 1px);
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#00000080, #0000 78%);
}

.hero__grid {
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  letter-spacing: .08em;
  background: #ffffffbd;
  border: 1px solid #0d7f8a24;
  border-radius: 999px;
  flex-wrap: wrap;
  padding: 7px 10px 7px 8px;
  display: inline-flex;
  box-shadow: 0 10px 30px #071a330d;
}

.eyebrow__mark {
  position: relative;
  background: linear-gradient(135deg, var(--teal), var(--cyan)) !important;
  border-radius: 50% !important;
  width: 25px !important;
  height: 25px !important;
}

.eyebrow__mark:after {
  content: "↗";
  color: #fff;
  place-items: center;
  font-size: .75rem;
  display: grid;
  position: absolute;
  inset: 0;
}

.eyebrow__badge {
  color: #a85c12;
  letter-spacing: .08em;
  background: #fff1df;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: .63rem;
}

.hero h1 {
  max-width: 720px;
  margin: 20px 0;
  font-size: clamp(3.15rem, 5vw, 5.25rem);
  line-height: .98;
}

.hero h1 em {
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero h1 em:after {
  opacity: .5;
  height: 6px;
  bottom: -7px;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 27px;
  font-size: 1.08rem;
}

.hero__actions {
  gap: 12px;
}

.hero__actions .btn {
  padding: 15px 24px;
}

.trust-list {
  gap: 10px;
  margin-top: 24px;
}

.trust-list li {
  color: #385064;
  background: #fffc;
  border: 1px solid #071a3312;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: .78rem;
  display: flex;
  box-shadow: 0 8px 22px #071a330a;
}

.trust-list__icon {
  background: #def5f1;
  border-radius: 50%;
  place-items: center;
  width: 21px;
  height: 21px;
  display: grid;
  color: #087567 !important;
}

.hero-device {
  border-radius: 28px;
  padding: 12px;
  transform: rotate(-.7deg);
  box-shadow: 0 38px 95px #071a3333, 0 8px 24px #071a3314;
}

.hero-device__screen {
  border-radius: 18px;
}

.floating-card {
  border-color: #0d7f8a24;
  box-shadow: 0 18px 50px #071a3326;
}

.proof-strip {
  z-index: 8;
  background: none;
  border: 0;
  margin-top: -30px;
  padding-bottom: 20px;
  position: relative;
}

.proof-strip__grid {
  background: linear-gradient(135deg, #071a33, #0b2a4a);
  border: 1px solid #ffffff14;
  border-radius: 26px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 11px;
  display: grid;
  box-shadow: 0 25px 70px #071a333b;
}

.proof-card {
  background: linear-gradient(145deg, #ffffff17, #ffffff09);
  border: 1px solid #ffffff14;
  border-radius: 18px;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px;
  transition: all .25s;
  display: flex;
}

.proof-card:hover {
  background: #ffffff1c;
  border-color: #7edde347;
  transform: translateY(-4px);
}

.proof-card__icon {
  color: #9be8ed;
  background: linear-gradient(135deg, #19a9b73d, #e8933233);
  border-radius: 14px;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  display: grid;
}

.proof-card strong {
  color: #fff;
  letter-spacing: -.05em;
  align-items: baseline;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
  display: flex;
}

.proof-card strong small {
  color: #f2b86e;
  letter-spacing: 0;
  margin-left: 4px;
  font-size: .72rem;
}

.proof-card div > span {
  color: #a9c1cd;
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 700;
  display: block;
}

.services-section {
  background: linear-gradient(#fff, #fbfdfd);
  padding-top: 76px;
  position: relative;
}

.services-section:before {
  content: "";
  filter: blur(10px);
  background: #19a9b714;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  top: 18%;
  left: -250px;
}

.service-grid {
  gap: 22px;
  position: relative;
}

.service-card {
  background: #fffffff0;
  border: 1px solid #071a3314;
  border-radius: 24px;
  box-shadow: 0 12px 38px #071a3311;
}

.service-card:hover {
  box-shadow: var(--premium-shadow);
  border-color: #0d7f8a47;
  transform: translateY(-8px);
}

.service-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #edf7f8, #f9fbfc);
}

.service-card__image:after {
  background: linear-gradient(to top, #071a3366, #0000);
  height: 65%;
}

.service-card__image img {
  transition: transform .65s, filter .65s;
}

.service-card:hover .service-card__image img {
  filter: saturate(1.05);
  transform: scale(1.055);
}

.service-card__badge {
  z-index: 2;
  backdrop-filter: blur(12px);
  color: var(--navy);
  background: #ffffffeb;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .66rem;
  font-weight: 900;
  position: absolute;
  bottom: 15px;
  left: 16px;
  box-shadow: 0 8px 25px #071a3329;
}

.service-card__content {
  padding: 23px 24px 25px;
}

.service-card__heading {
  align-items: center;
  gap: 12px;
  display: flex;
}

.service-card__number {
  width: 32px;
  height: 32px;
  color: var(--teal);
  background: #eaf7f7;
  border-radius: 10px;
  place-items: center;
  font-size: .67rem;
  font-weight: 950;
  display: grid;
}

.service-card__heading h3 {
  margin: 0;
  font-size: 1.12rem;
}

.service-card__content > p {
  min-height: 48px;
  margin: 14px 0 18px;
}

.service-card__details {
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
  padding-top: 14px;
}

.service-card__details ul {
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.service-card__details li {
  color: #4c6171;
  padding-left: 20px;
  font-size: .78rem;
  position: relative;
}

.service-card__details li:before {
  content: "✓";
  color: var(--teal);
  font-weight: 950;
  position: absolute;
  left: 0;
}

.service-card__actions {
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  display: flex;
}

.service-more, .service-action {
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  transition: all .25s;
  display: inline-flex;
  font-size: .75rem !important;
  font-weight: 900 !important;
}

.service-more {
  color: var(--navy);
  cursor: pointer;
  background: #fff;
  border: 1px solid #d7e3e7;
}

.service-more:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: #f4fbfb;
}

.service-more[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.service-more span:last-child {
  transition: all .25s;
}

.service-action {
  background: var(--navy);
  box-shadow: 0 10px 24px #071a3329;
  color: #fff !important;
}

.service-action:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.portfolio-section {
  background: radial-gradient(circle at 92% 10%, #e8933221, #0000 25%), radial-gradient(circle at 10% 85%, #19a9b71a, #0000 28%), linear-gradient(#f2f7f9, #f8fbfc);
  position: relative;
  overflow: hidden;
}

.portfolio-section:before {
  content: "";
  background-image: radial-gradient(#0d7f8a1a 1px, #0000 1px);
  background-size: 22px 22px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#00000080, #0000 65%);
}

.portfolio-section > .container {
  position: relative;
}

.portfolio-heading {
  grid-template-columns: 1.15fr .45fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
  display: grid;
}

.portfolio-heading h2 {
  letter-spacing: -.05em;
  color: var(--navy);
  max-width: 850px;
  margin: 10px 0 16px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.02;
}

.portfolio-heading p {
  max-width: 720px;
  color: var(--muted);
}

.portfolio-heading__action {
  backdrop-filter: blur(12px);
  box-shadow: var(--premium-shadow-soft);
  background: #ffffffb8;
  border: 1px solid #071a3314;
  border-radius: 22px;
  padding: 22px;
}

.portfolio-mini-label {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: .76rem;
  font-weight: 800;
  display: block;
}

.portfolio-heading__action .btn {
  width: 100%;
}

.portfolio-grid {
  gap: 26px;
}

.project-card {
  border: 1px solid #071a3314;
  border-radius: 26px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 15px 48px #071a3317;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 75px #071a3329;
}

.project-card__img {
  aspect-ratio: 16 / 9;
}

.project-card__overlay {
  pointer-events: none;
  background: linear-gradient(to top, #071a3359, #0000 50%);
  position: absolute;
  inset: 0;
}

.project-card__tag, .project-card__preview {
  z-index: 2;
  backdrop-filter: blur(10px);
  color: var(--navy);
  background: #ffffffe6;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .66rem;
  font-weight: 900;
  position: absolute;
  top: 16px;
}

.project-card__tag {
  left: 16px;
}

.project-card__preview {
  color: var(--teal);
  right: 16px;
}

.project-card__body {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 22px;
  padding: 23px 24px 25px;
  display: grid;
}

.project-card__copy > span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  font-weight: 900;
}

.project-card__copy h3 {
  margin: 4px 0 6px;
  font-size: 1.35rem;
}

.project-card__copy p {
  max-width: 500px;
  color: var(--muted);
  margin: 0;
  font-size: .8rem;
}

.project-card__actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.project-card__consult {
  color: var(--navy);
  cursor: pointer;
  background: #fff;
  border: 1px solid #d9e3e7;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .72rem;
  font-weight: 900;
  transition: all .25s;
}

.project-card__consult:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: #f5fbfb;
}

.project-card__arrow {
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  transition: all .25s;
  display: grid;
}

.project-card__arrow:hover {
  background: var(--orange);
  transform: rotate(8deg);
}

.portfolio-cta {
  color: #fff;
  background: linear-gradient(125deg, #071a33, #0b2a4a 58%, #0d7f8a);
  border-radius: 26px;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 65px #071a3338;
}

.portfolio-cta:after {
  content: "";
  filter: blur(8px);
  background: #e893323d;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  position: absolute;
  top: -120px;
  right: -90px;
}

.portfolio-cta > *, .portfolio-cta .btn {
  z-index: 2;
  position: relative;
}

.portfolio-cta__eyebrow {
  letter-spacing: .12em;
  color: #8ce5e9;
  font-size: .7rem;
  font-weight: 900;
}

.portfolio-cta h3 {
  max-width: 760px;
  margin: 5px 0 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.price-card {
  border-radius: 28px;
  transition: transform .28s, box-shadow .28s;
}

.price-card:hover {
  box-shadow: var(--premium-shadow);
  transform: translateY(-7px);
}

.price-card--featured:hover {
  transform: translateY(-20px);
}

.price-card__top {
  min-height: 225px;
}

.price-card__body {
  height: auto !important;
}

.price-card__body > .btn {
  min-height: 50px;
}

.final-cta {
  background: linear-gradient(120deg, #08727c, #0d7f8a 45%, #075c68);
  position: relative;
  overflow: hidden;
}

.final-cta:before {
  content: "";
  filter: blur(8px);
  background: #e8933238;
  border-radius: 50%;
  width: 430px;
  height: 430px;
  position: absolute;
  top: -240px;
  right: -140px;
}

.final-cta__inner {
  position: relative;
}

.final-cta__actions {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  display: flex;
}

.final-cta__whatsapp {
  color: #dff9fa;
  text-underline-offset: 4px;
  font-size: .78rem;
  font-weight: 850;
  text-decoration: underline;
}

.footer {
  color: #b9c9d4;
  background: linear-gradient(145deg, #041326, #071a33 58%, #08243d);
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  filter: blur(18px);
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.footer-glow--one {
  background: #0d7f8a29;
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -200px;
}

.footer-glow--two {
  background: #e893321f;
  width: 320px;
  height: 320px;
  top: 80px;
  right: -120px;
}

.footer > .container {
  position: relative;
}

.footer__cta {
  color: var(--navy);
  background: #fffffff7;
  border: 1px solid #fffc;
  border-radius: 26px;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 30px 34px;
  display: flex;
  transform: translateY(-38px);
  box-shadow: 0 25px 80px #0000003d;
}

.footer__cta span {
  color: var(--teal);
  letter-spacing: .13em;
  font-size: .68rem;
  font-weight: 950;
}

.footer__cta h2 {
  letter-spacing: -.035em;
  margin: 4px 0 6px;
  font-size: 1.8rem;
}

.footer__cta p {
  color: var(--muted);
  margin: 0;
  font-size: .82rem;
}

.footer__logo {
  background: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 118px;
  padding: 12px;
  display: flex;
  box-shadow: 0 16px 40px #0000002e;
}

.footer__logo img {
  background: none !important;
  border-radius: 0 !important;
  width: 170px !important;
  padding: 0 !important;
}

.footer__brand p {
  color: #a9bdc8;
  max-width: 360px;
  margin: 22px 0 20px;
}

.footer__socials {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.footer__socials a {
  background: #ffffff0b;
  border: 1px solid #ffffff1a;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  transition: all .25s;
  margin: 0 !important;
  display: inline-flex !important;
}

.footer__socials a:hover {
  color: var(--navy);
  background: #fff;
  transform: translateY(-2px);
}

.footer__socials span {
  color: #93e2e6;
  background: #19a9b729;
  border-radius: 50%;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: .72rem;
  font-weight: 950;
  display: grid;
}

.footer__socials b {
  font-size: .68rem;
}

.footer__column h3 {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-size: .78rem;
}

.footer__column a, .footer__column button {
  color: #aec2cd;
  margin: 11px 0;
  font-size: .82rem;
  transition: all .2s;
  display: block;
}

.footer__column a:hover, .footer__column button:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer__column button {
  cursor: pointer;
  text-align: left;
  color: #f0b261;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 850;
}

.footer__column--trust p {
  color: #aec2cd;
  align-items: center;
  gap: 8px;
  margin: 11px 0;
  font-size: .8rem;
  display: flex;
}

.footer__column--trust span {
  color: #7de0c3;
}

.footer__bottom {
  border-top: 1px solid #ffffff17;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 25px;
  padding: 22px 0 28px;
  font-size: .72rem;
  display: grid;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

.advisory-modal {
  z-index: 5000;
  opacity: 0;
  place-items: center;
  padding: 22px;
  transition: opacity .22s;
  display: grid;
  position: fixed;
  inset: 0;
}

.advisory-modal.is-open {
  opacity: 1;
}

.advisory-modal__backdrop {
  backdrop-filter: blur(9px);
  background: #030f1eb8;
  position: absolute;
  inset: 0;
}

.advisory-dialog {
  z-index: 2;
  background: #fff;
  border-radius: 28px;
  grid-template-columns: .78fr 1.22fr;
  width: min(100%, 980px);
  max-height: min(90vh, 820px);
  transition: transform .24s;
  display: grid;
  position: relative;
  overflow: auto;
  transform: translateY(20px) scale(.98);
  box-shadow: 0 35px 110px #00000061;
}

.advisory-modal.is-open .advisory-dialog {
  transform: none;
}

.advisory-dialog__close {
  z-index: 4;
  width: 38px;
  height: 38px;
  color: var(--navy);
  cursor: pointer;
  background: #ffffffe6;
  border: 1px solid #071a331a;
  border-radius: 50%;
  font-size: 1.45rem;
  transition: all .2s;
  position: absolute;
  top: 16px;
  right: 16px;
}

.advisory-dialog__close:hover {
  background: var(--navy);
  color: #fff;
  transform: rotate(8deg);
}

.advisory-dialog__intro {
  color: #fff;
  background: linear-gradient(145deg, #071a33, #0b2a4a 70%, #0d7f8a);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.advisory-dialog__intro:after {
  content: "";
  background: #e893323d;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  position: absolute;
  bottom: -120px;
  right: -110px;
}

.advisory-dialog__intro > * {
  z-index: 2;
  position: relative;
}

.advisory-dialog__intro .kicker {
  color: #88e3e7;
}

.advisory-dialog__intro h2 {
  letter-spacing: -.045em;
  margin: 12px 0 14px;
  font-size: 2.4rem;
  line-height: 1.03;
}

.advisory-dialog__intro > p {
  color: #bed0d8;
  font-size: .88rem;
}

.advisory-dialog__benefits {
  gap: 12px;
  margin-top: 32px;
  display: grid;
}

.advisory-dialog__benefits span {
  background: #ffffff0e;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  font-size: .76rem;
  display: flex;
}

.advisory-dialog__benefits b {
  color: #f2b467;
}

.advisory-form {
  background: linear-gradient(#fff, #f8fbfc);
  padding: 42px 38px 30px;
}

.advisory-form label {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: .76rem;
  font-weight: 850;
  display: block;
}

.advisory-form input, .advisory-form select, .advisory-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdce1;
  border-radius: 12px;
  outline: none;
  margin-top: 6px;
  padding: 12px 13px;
  transition: all .2s;
}

.advisory-form input:focus, .advisory-form select:focus, .advisory-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px #0d7f8a1a;
}

.advisory-form textarea {
  resize: vertical;
}

.advisory-form .check {
  font-weight: 500;
}

@keyframes premiumPulse {
  0%, 100% {
    box-shadow: 0 0 0 5px #70e0c11c;
  }

  50% {
    box-shadow: 0 0 0 9px #70e0c100;
  }
}

@media (width <= 1120px) {
  .topbar__benefits {
    display: none;
  }

  .portfolio-heading {
    grid-template-columns: 1fr .5fr;
    gap: 30px;
  }

  .footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (width <= 1020px) {
  .section {
    padding: 76px 0;
  }

  .hero--premium {
    padding: 48px 0 62px;
  }

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

  .hero__copy {
    text-align: center;
    padding-bottom: 0;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero__visual {
    min-height: auto;
    margin-top: 22px;
  }

  .proof-strip {
    margin-top: -15px;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
  }

  .portfolio-heading__action {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    display: flex;
  }

  .portfolio-heading__action .btn {
    width: auto;
  }

  .footer__cta {
    transform: translateY(-28px);
  }

  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer__column--trust {
    grid-column: 2 / 4;
  }

  .advisory-dialog {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .advisory-dialog__intro {
    padding: 34px;
  }

  .advisory-dialog__benefits {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
  }

  .advisory-dialog__benefits span {
    align-items: flex-start;
  }
}

@media (width <= 680px) {
  .section {
    padding: 66px 0;
  }

  .topbar__inner {
    justify-content: center;
    min-height: 40px;
  }

  .topbar__message {
    text-align: center;
    font-size: .68rem;
  }

  .topbar__link {
    display: none;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand {
    width: 160px;
    height: 58px;
  }

  .brand img {
    width: 155px;
  }

  .nav {
    inset: 72px 0 auto;
  }

  .hero--premium {
    padding: 38px 0 52px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .eyebrow__badge {
    display: none;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
    display: grid;
  }

  .trust-list li {
    justify-content: flex-start;
  }

  .proof-strip {
    margin-top: -8px;
    padding-bottom: 0;
  }

  .proof-strip__grid {
    border-radius: 21px;
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .proof-card {
    min-height: 86px;
  }

  .service-card__content {
    padding: 21px;
  }

  .service-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-more, .service-action {
    width: 100%;
  }

  .portfolio-heading h2 {
    font-size: 2.55rem;
  }

  .portfolio-heading__action {
    display: block;
  }

  .portfolio-heading__action .btn {
    width: 100%;
  }

  .project-card__body {
    grid-template-columns: 1fr;
  }

  .project-card__actions {
    justify-content: space-between;
  }

  .portfolio-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }

  .portfolio-cta .btn {
    width: 100%;
  }

  .price-card--featured:hover {
    transform: translateY(-7px);
  }

  .final-cta__actions {
    align-items: stretch;
    width: 100%;
  }

  .footer__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }

  .footer__cta .btn {
    width: 100%;
  }

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

  .footer__brand, .footer__column--trust {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer__bottom div {
    margin-top: 4px;
  }

  .advisory-modal {
    padding: 10px;
  }

  .advisory-dialog {
    border-radius: 21px;
    max-height: 94vh;
  }

  .advisory-dialog__intro {
    padding: 32px 24px;
  }

  .advisory-dialog__intro h2 {
    font-size: 2rem;
  }

  .advisory-dialog__benefits {
    grid-template-columns: 1fr;
  }

  .advisory-form {
    padding: 28px 20px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar__pulse {
    animation: none;
  }

  .btn--premium:before {
    display: none;
  }

  .service-card, .project-card, .proof-card, .advisory-dialog {
    transition: none;
  }
}

.nav {
  gap: 24px;
}

.nav > a:first-child {
  color: var(--teal);
  background: #fff;
  border: 1px solid #071a3314;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px #071a330d;
}

.nav > a:first-child:hover {
  background: #f8fcfc;
  border-color: #0d7f8a47;
}

.nav__cta {
  margin-left: 8px;
}

.hero--premium {
  padding: 28px 0 56px;
}

.hero__grid {
  align-items: center;
  gap: 34px;
}

.hero__copy {
  padding: 10px 0 0;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.hero__lead {
  max-width: 620px;
  font-size: 1rem;
}

.hero .trust-list {
  margin-top: 18px;
}

.hero__visual {
  min-height: auto;
}

.hero-device {
  backdrop-filter: blur(8px);
  background: #ffffffbf;
  width: min(100%, 760px);
  padding: 14px;
  transform: none;
}

.hero-device__bar {
  border-bottom: 1px solid #071a3314;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  display: flex;
}

.hero-device__bar span {
  color: #7c8696;
  background: #f8fbfce6;
  border: 2px solid #e2eaee;
  border-radius: 999px;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 58px;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
}

.hero-device__bar b {
  display: none;
}

.hero-device__dots {
  gap: 12px;
  display: flex;
}

.hero-device__dots i {
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.hero-slider {
  position: relative;
}

.hero-slider__viewport {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #eff7f8, #f8fbfc);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s, transform .6s;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.hero-slide__caption {
  backdrop-filter: blur(8px);
  background: #ffffffeb;
  border-radius: 18px;
  max-width: 360px;
  padding: 15px 18px;
  position: absolute;
  bottom: 18px;
  left: 18px;
  box-shadow: 0 18px 40px #071a3324;
}

.hero-slide__caption strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
  display: block;
}

.hero-slide__caption span {
  color: #5b6d7c;
  margin-top: 7px;
  font-size: .84rem;
  line-height: 1.45;
  display: block;
}

.hero-slider__dots {
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  display: flex;
}

.hero-slider__dots button {
  cursor: pointer;
  background: #c8d6dd;
  border: 0;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  transition: all .25s;
}

.hero-slider__dots button.is-active {
  background: linear-gradient(90deg, var(--orange), #efb15f);
  border-radius: 999px;
  width: 28px;
}

.floating-card {
  background: #fffffff5;
  border-radius: 22px;
  padding: 14px 18px;
}

.floating-card b {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.08;
}

.floating-card small {
  color: #677889;
  margin-top: 4px;
  font-size: .83rem;
  line-height: 1.35;
}

.floating-card--top {
  top: 32px;
  right: 18px;
}

.floating-card--bottom {
  bottom: 18px;
  left: 16px;
}

.proof-strip {
  background: linear-gradient(#f7fbfc 0%, #0b1f3d 14%, #081a33 100%);
  border: 0;
  padding: 0 0 24px;
}

.proof-strip__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.proof-card {
  background: linear-gradient(145deg, #ffffff1a, #ffffff0a);
  border: 1px solid #ffffff14;
  border-radius: 28px;
  min-height: 164px;
  padding: 26px 24px;
  box-shadow: inset 0 1px #ffffff0d;
}

.proof-card__icon {
  background: linear-gradient(145deg, #19a9b72e, #e8933224);
  border-radius: 22px;
  flex: 0 0 72px;
  place-items: center;
  width: 72px;
  height: 72px;
  display: grid;
  box-shadow: inset 0 1px #ffffff14;
}

.proof-card__icon svg {
  width: 40px;
  height: 40px;
}

.proof-card div {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.proof-card strong {
  letter-spacing: -.06em;
  color: #fff;
  margin: 0 0 10px;
  font-size: 2.55rem;
  line-height: .9;
}

.proof-card strong small {
  color: #ffcf88;
  letter-spacing: 0;
  margin-left: 6px;
  font-size: .92rem;
  font-weight: 850;
}

.proof-card__textproof {
  letter-spacing: -.04em;
  color: #fff;
  font-size: 2.15rem !important;
}

.proof-card div > span {
  color: #c1d3de;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
}

.brands-strip {
  background: linear-gradient(#081a33 0%, #fff 100px 100%);
  padding: 26px 0 12px;
  position: relative;
}

.brands-strip__inner {
  gap: 22px;
  display: grid;
}

.brands-strip__copy {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.brands-strip__copy h2 {
  color: var(--navy);
  letter-spacing: -.04em;
  margin: 10px 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.brands-strip__copy p {
  color: var(--muted);
  margin: 0;
}

.brands-carousel {
  background: #fff;
  border: 1px solid #071a3314;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px #071a3314;
}

.brands-carousel:before, .brands-carousel:after {
  content: "";
  z-index: 2;
  pointer-events: none;
  width: 90px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.brands-carousel:before {
  background: linear-gradient(90deg, #fff, #fff0);
  left: 0;
}

.brands-carousel:after {
  background: linear-gradient(-90deg, #fff, #fff0);
  right: 0;
}

.brands-track {
  align-items: center;
  gap: 20px;
  width: max-content;
  padding: 22px 0;
  animation: 18s linear infinite brandsMarquee;
  display: flex;
}

.brand-logo {
  background: linear-gradient(#fff, #f8fbfc);
  border: 1px solid #071a3314;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  height: 92px;
  padding: 12px 20px;
  display: flex;
  box-shadow: 0 10px 24px #071a330d;
}

.brand-logo img {
  object-fit: contain;
  filter: saturate(1.03);
  max-width: 150px;
  max-height: 52px;
}

.brand-logo__fallback {
  color: var(--navy);
  letter-spacing: -.02em;
  font-size: 1.15rem;
  font-weight: 900;
  display: none;
}

.brand-logo.is-fallback .brand-logo__fallback {
  display: flex;
}

.services-section {
  padding-top: 48px;
}

.section-heading {
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.section-heading p {
  max-width: 560px;
  font-size: .98rem;
}

.service-card__heading h3 {
  font-size: 1rem;
}

.service-card__content > p {
  min-height: unset;
  font-size: .88rem;
}

@keyframes brandsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (width <= 1020px) {
  .hero--premium {
    padding: 20px 0 44px;
  }

  .hero__grid {
    gap: 26px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero .trust-list {
    justify-content: center;
  }

  .floating-card--top {
    top: 14px;
    right: 8px;
  }

  .floating-card--bottom {
    bottom: 10px;
    left: 8px;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <= 680px) {
  .nav > a:first-child {
    display: block;
  }

  .hero--premium {
    padding: 12px 0 34px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-device {
    border-radius: 22px;
    padding: 10px;
  }

  .hero-device__bar {
    gap: 10px;
    padding: 10px 14px;
  }

  .hero-device__bar span {
    height: 44px;
    font-size: .9rem;
  }

  .hero-slider__viewport {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .hero-slide__caption {
    max-width: none;
    padding: 12px 14px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .hero-slide__caption strong {
    font-size: .92rem;
  }

  .hero-slide__caption span {
    font-size: .76rem;
  }

  .floating-card {
    width: 100%;
    margin-top: 10px;
    position: relative !important;
    inset: auto !important;
  }

  .proof-strip {
    padding-bottom: 16px;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 130px;
    padding: 20px;
  }

  .proof-card strong {
    font-size: 2.1rem;
  }

  .brands-strip {
    padding: 18px 0 4px;
  }

  .brands-carousel:before, .brands-carousel:after {
    width: 40px;
  }

  .brand-logo {
    min-width: 170px;
    height: 78px;
  }

  .brand-logo img {
    max-width: 120px;
    max-height: 38px;
  }

  .services-section {
    padding-top: 36px;
  }
}

.hero--premium {
  padding: 42px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero--premium .hero__grid {
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 46px;
  display: grid;
}

.hero--premium .hero__copy {
  z-index: 5;
  min-width: 0;
  padding: 0;
  position: relative;
}

.hero--premium .eyebrow {
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  color: var(--teal);
  background: #ffffffeb;
  border: 1px solid #0d7f8a29;
  border-radius: 999px;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 11px 8px 8px;
  line-height: 1.2;
  display: inline-flex;
  box-shadow: 0 12px 35px #071a3312;
}

.hero--premium .eyebrow > span {
  background: none !important;
  width: auto !important;
  height: auto !important;
}

.hero--premium .eyebrow > .eyebrow__mark {
  flex: 0 0 30px;
  place-items: center;
  display: grid;
  position: relative;
  background: linear-gradient(135deg,
      var(--teal),
      var(--cyan)) !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
}

.hero--premium .eyebrow > .eyebrow__mark:after {
  content: "↗";
  color: #fff;
  place-items: center;
  font-size: .78rem;
  font-weight: 900;
  display: grid;
  position: absolute;
  inset: 0;
}

.hero--premium .eyebrow > span:nth-child(2) {
  white-space: nowrap;
  color: var(--teal);
  letter-spacing: .07em;
  flex: 0 auto;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.2;
  display: inline-block;
  background: none !important;
  width: auto !important;
  height: auto !important;
}

.hero--premium .eyebrow > .eyebrow__badge {
  color: #9a5718;
  white-space: nowrap;
  letter-spacing: .05em;
  border-radius: 999px;
  flex: none;
  align-items: center;
  padding: 6px 10px;
  font-size: .63rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  background: #fff0dc !important;
  width: auto !important;
  height: auto !important;
}

.hero--premium h1 {
  z-index: 2;
  width: 100%;
  max-width: 690px;
  color: var(--navy);
  letter-spacing: -.055em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  margin: 20px 0 18px;
  font-size: clamp(2.8rem, 4.2vw, 4.45rem);
  font-weight: 900;
  line-height: 1.01;
  position: relative;
}

.hero--premium h1 em {
  color: #0000;
  background: linear-gradient(90deg,
      var(--teal),
      var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
  position: relative;
}

.hero--premium h1 em:after {
  content: "";
  background: linear-gradient(90deg,
      var(--orange),
      #e8933200);
  opacity: .55;
  border-radius: 999px;
  height: 6px;
  position: absolute;
  bottom: -7px;
  left: 4%;
  right: 0;
}

.hero--premium .hero__lead {
  max-width: 620px;
  color: var(--muted);
  margin: 0 0 26px;
  font-size: 1rem;
  line-height: 1.75;
}

.hero--premium .hero__visual, .hero--premium .hero-device {
  min-width: 0;
  max-width: 100%;
}

@media (width <= 1020px) {
  .hero--premium {
    padding: 36px 0 54px;
  }

  .hero--premium .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero--premium .hero__copy {
    text-align: center;
  }

  .hero--premium .eyebrow {
    margin-inline: auto;
  }

  .hero--premium h1, .hero--premium .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--premium h1 {
    max-width: 780px;
  }
}

@media (width <= 680px) {
  .hero--premium {
    padding: 26px 0 42px;
  }

  .hero--premium .eyebrow {
    border-radius: 18px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 10px 12px;
  }

  .hero--premium .eyebrow > span:nth-child(2) {
    white-space: normal;
    text-align: center;
    font-size: .68rem;
    line-height: 1.35;
  }

  .hero--premium .eyebrow > .eyebrow__badge {
    display: none;
  }

  .hero--premium h1 {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.02;
  }

  .hero--premium .hero__lead {
    font-size: .96rem;
    line-height: 1.65;
  }
}

.site-header {
  box-shadow: none;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(#f8fbfcd1, #f8fbfc75);
  border-bottom: 0;
  padding: 12px 0;
  transition: padding .3s, background .3s, box-shadow .3s;
  top: 0;
}

.site-header .nav-wrap {
  background: #ffffffe0;
  border: 1px solid #071a3317;
  border-radius: 20px;
  height: 72px;
  padding: 0 12px 0 18px;
  transition: height .3s, border-radius .3s, box-shadow .3s, background .3s;
  position: relative;
  box-shadow: 0 14px 42px #071a3313, inset 0 1px #ffffffe6;
}

.site-header.is-scrolled {
  background: #f8fbfcc2;
  padding: 7px 0;
  box-shadow: 0 12px 30px #071a330b;
}

.site-header.is-scrolled .nav-wrap {
  background: #fffffff5;
  border-radius: 18px;
  height: 64px;
  box-shadow: 0 12px 34px #071a331a, inset 0 1px #fffffff2;
}

.brand {
  flex: none;
  width: 184px;
  height: 52px;
  padding: 2px 0;
  overflow: visible;
}

.brand img {
  object-fit: contain;
  width: 176px;
  height: auto;
  max-height: 48px;
  transition: transform .25s, opacity .25s;
  transform: none;
}

.brand:hover img {
  opacity: .92;
  transform: translateY(-1px);
}

.nav {
  gap: 6px;
  padding-left: 18px;
  font-size: .86rem;
  font-weight: 720;
}

.nav > a:not(.btn) {
  color: #385064;
  border-radius: 11px;
  padding: 10px 12px;
  transition: color .2s, background .2s, transform .2s;
  position: relative;
}

.nav > a:not(.btn):after {
  display: none;
}

.nav > a:not(.btn):hover {
  color: var(--navy);
  background: #f1f7f8;
  transform: translateY(-1px);
}

.nav > a:not(.btn).is-active {
  color: var(--teal);
  background: #0d7f8a14;
  box-shadow: inset 0 0 0 1px #0d7f8a14;
}

.nav > a:not(.btn).is-active:before {
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 999px;
  width: 18px;
  height: 2px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.nav__cta {
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #ef9d3d, #df7f1c);
  border-radius: 14px;
  min-height: 46px;
  margin-left: 8px;
  padding: 0 18px;
  box-shadow: 0 12px 27px #d87a183b, inset 0 1px #ffffff47;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px #d87a184d, inset 0 1px #ffffff4d;
}

.nav-toggle {
  background: #f7fafb;
  border: 1px solid #071a3317;
  border-radius: 13px;
  width: 44px;
  height: 44px;
  padding: 9px;
  transition: all .2s;
}

.nav-toggle:hover {
  background: #eef6f7;
  border-color: #0d7f8a33;
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  margin: 4px auto;
  transition: transform .25s, opacity .2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (width <= 1120px) {
  .nav {
    gap: 3px;
    font-size: .82rem;
  }

  .nav > a:not(.btn) {
    padding-inline: 9px;
  }

  .nav__cta {
    margin-left: 4px;
    padding-inline: 14px;
  }
}

@media (width <= 1020px) {
  .site-header {
    padding: 8px 0;
  }

  .site-header .nav-wrap, .site-header.is-scrolled .nav-wrap {
    border-radius: 18px;
    height: 66px;
    padding: 0 10px 0 16px;
  }

  .brand {
    width: 172px;
    height: 48px;
  }

  .brand img {
    width: 166px;
    max-height: 45px;
  }

  .nav {
    backdrop-filter: blur(20px);
    background: #fffffffa;
    border: 1px solid #071a3317;
    border-radius: 20px;
    gap: 4px;
    padding: 14px;
    inset: 82px 20px auto;
    box-shadow: 0 28px 70px #071a332e;
  }

  .site-header.is-scrolled .nav {
    inset: 75px 20px auto;
  }

  .nav > a:not(.btn) {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .94rem;
  }

  .nav > a:not(.btn).is-active:before {
    width: 22px;
    bottom: 7px;
    left: 14px;
    transform: none;
  }

  .nav__cta {
    border-radius: 14px;
    width: 100%;
    min-height: 50px;
    margin: 8px 0 0;
  }
}

@media (width <= 680px) {
  .topbar {
    display: none;
  }

  .site-header {
    background: #f8fbfce6;
    padding: 7px 0;
  }

  .site-header .nav-wrap, .site-header.is-scrolled .nav-wrap {
    border-radius: 16px;
    height: 62px;
    padding: 0 8px 0 13px;
  }

  .brand {
    width: 151px;
    height: 45px;
  }

  .brand img {
    width: 147px;
    max-height: 42px;
  }

  .nav {
    border-radius: 18px;
    padding: 12px;
    inset: 76px 14px auto;
  }

  .site-header.is-scrolled .nav {
    inset: 71px 14px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header, .site-header .nav-wrap, .brand img, .nav > a:not(.btn), .nav-toggle span {
    transition: none;
  }
}

.hero--premium {
  isolation: isolate;
  background: radial-gradient(circle at 8% 18%, #0d7f8a21, #0000 26%), radial-gradient(circle at 88% 24%, #e893321c, #0000 23%), linear-gradient(135deg, #f7fbfc 0%, #fff 46%, #f3faf9 100%);
  align-items: center;
  min-height: calc(100svh - 118px);
  padding: 42px 0 66px;
  display: flex;
}

.hero--premium:after {
  content: "";
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(#0000, #f4f8fae6);
  height: 190px;
  position: absolute;
  inset: auto 0 0;
}

.hero--premium .hero__grid {
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 72px;
}

.hero--premium .hero__copy {
  max-width: 670px;
}

.hero--premium .eyebrow {
  border: 1px solid #0d7f8a1f;
  margin-bottom: 2px;
  box-shadow: 0 8px 28px #071a330b;
}

.hero--premium h1 {
  letter-spacing: -.065em;
  text-wrap: balance;
  max-width: 680px;
  margin: 20px 0;
  font-size: clamp(3.25rem, 5.25vw, 5.8rem);
  line-height: .94;
}

.hero--premium h1 em {
  background: linear-gradient(105deg, #0d7f8a, #16a3af);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero--premium h1 em:after {
  opacity: .75;
  height: 5px;
  bottom: -8px;
  left: 1%;
  right: 9%;
}

.hero--premium .hero__lead {
  color: #536779;
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero--premium .hero__actions {
  align-items: center;
  margin-top: 30px;
}

.hero--premium .btn--premium {
  border-radius: 16px;
  min-height: 56px;
  padding-inline: 24px;
}

.hero-primary-cta {
  background: linear-gradient(135deg, #f2a345, #df7d19);
  position: relative;
  overflow: hidden;
}

.hero-primary-cta:before {
  content: "";
  background: linear-gradient(100deg, #0000, #ffffff3d, #0000);
  transition: transform .6s;
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
}

.hero-primary-cta:hover:before {
  transform: translateX(120%);
}

.hero__proofline {
  align-items: center;
  gap: 13px;
  max-width: 610px;
  margin-top: 22px;
  display: flex;
}

.hero__proofline p {
  color: #647787;
  margin: 0;
  font-size: .82rem;
  line-height: 1.45;
}

.hero__proofline strong {
  color: var(--navy);
}

.hero__avatars {
  flex: none;
  display: flex;
}

.hero__avatars span {
  background: var(--navy);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-left: -7px;
  font-size: .58rem;
  font-weight: 900;
  display: grid;
  box-shadow: 0 4px 14px #071a3324;
}

.hero__avatars span:first-child {
  background: var(--teal);
  margin-left: 0;
}

.hero__avatars span:last-child {
  background: var(--orange);
}

.hero--premium .trust-list {
  gap: 8px;
  margin-top: 20px;
}

.hero--premium .trust-list li {
  box-shadow: none;
  background: #ffffffa8;
  padding: 7px 10px;
  font-size: .74rem;
}

.hero__metrics {
  background: #071a3314;
  border: 1px solid #071a3314;
  border-radius: 16px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 610px;
  margin-top: 24px;
  display: grid;
  overflow: hidden;
  box-shadow: 0 16px 40px #071a330e;
}

.hero__metrics > div {
  background: #ffffffe8;
  padding: 13px 14px;
}

.hero__metrics strong, .hero__metrics span {
  display: block;
}

.hero__metrics strong {
  color: var(--navy);
  letter-spacing: -.02em;
  font-size: .96rem;
}

.hero__metrics span {
  color: #738392;
  margin-top: 1px;
  font-size: .66rem;
  line-height: 1.25;
}

.hero--premium .hero__visual {
  perspective: 1200px;
  min-height: 600px;
}

.hero-visual__halo {
  aspect-ratio: 1;
  filter: blur(2px);
  z-index: -1;
  background: radial-gradient(circle, #19a9b72e, #19a9b70b 46%, #0000 69%);
  border-radius: 50%;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero--premium .hero-device {
  backdrop-filter: blur(18px);
  background: #ffffffb8;
  border: 1px solid #ffffffe6;
  border-radius: 26px;
  width: min(100%, 780px);
  padding: 10px;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s;
  transform: rotateY(-3deg) rotateX(1.3deg) rotateZ(-.65deg);
  box-shadow: 0 52px 120px #071a3338, 0 12px 35px #071a3314, inset 0 1px #fff;
}

.hero--premium .hero-device:hover {
  transform: rotateY(0) rotateX(0) rotateZ(0) translateY(-5px);
  box-shadow: 0 58px 135px #071a3340, 0 14px 40px #071a3314;
}

.hero--premium .hero-device__bar {
  gap: 12px;
  height: 50px;
  padding: 0 14px 10px;
}

.hero--premium .hero-device__bar span {
  border-width: 1px;
  max-width: 280px;
  height: 34px;
  font-size: .76rem;
}

.hero--premium .hero-device__dots i {
  width: 10px;
  height: 10px;
}

.hero--premium .hero-slider__viewport {
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px #071a330a;
}

.hero-visual__label {
  z-index: 5;
  backdrop-filter: blur(12px);
  color: #465b6d;
  letter-spacing: .01em;
  background: #ffffffe0;
  border: 1px solid #071a3314;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: .68rem;
  font-weight: 800;
  position: absolute;
  box-shadow: 0 10px 30px #071a3317;
}

.hero-visual__label span {
  color: var(--orange);
  margin-right: 5px;
}

.hero-visual__label--left {
  top: 20%;
  left: -16px;
}

.hero-visual__label--right {
  bottom: 22%;
  right: -12px;
}

.hero--premium .floating-card {
  backdrop-filter: blur(14px);
  background: #ffffffe6;
  border-color: #071a3312;
  box-shadow: 0 18px 48px #071a331f;
}

.hero--premium .floating-card--top {
  top: 72px;
  right: -28px;
}

.hero--premium .floating-card--bottom {
  bottom: 42px;
  left: -30px;
}

@media (width <= 1120px) {
  .hero--premium .hero__grid {
    grid-template-columns: minmax(0, .95fr) minmax(450px, 1.05fr);
    gap: 42px;
  }

  .hero--premium h1 {
    font-size: clamp(3rem, 5vw, 4.9rem);
  }

  .hero-visual__label {
    display: none;
  }
}

@media (width <= 1020px) {
  .hero--premium {
    min-height: auto;
    padding: 40px 0 62px;
  }

  .hero--premium .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero--premium .hero__copy {
    text-align: center;
    max-width: 780px;
    margin: auto;
  }

  .hero--premium h1 {
    max-width: 820px;
  }

  .hero__proofline, .hero__metrics {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__proofline {
    text-align: left;
    justify-content: center;
  }

  .hero--premium .hero__visual {
    width: 100%;
    max-width: 800px;
    min-height: auto;
  }

  .hero--premium .hero-device {
    transform: none;
  }
}

@media (width <= 680px) {
  .hero--premium {
    padding: 24px 0 42px;
  }

  .hero--premium h1 {
    letter-spacing: -.055em;
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: .98;
  }

  .hero--premium .hero__lead {
    font-size: .98rem;
    line-height: 1.62;
  }

  .hero__proofline {
    align-items: flex-start;
  }

  .hero__proofline p {
    font-size: .75rem;
  }

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

  .hero__metrics > div {
    padding: 11px 7px;
  }

  .hero__metrics strong {
    font-size: .83rem;
  }

  .hero__metrics span {
    font-size: .59rem;
  }

  .hero--premium .floating-card {
    display: none;
  }

  .hero--premium .hero-device {
    border-radius: 20px;
    padding: 7px;
  }

  .hero--premium .hero-device__bar {
    height: 42px;
    padding: 0 8px 7px;
  }

  .hero--premium .hero-device__bar span {
    max-width: 190px;
    height: 29px;
    font-size: .66rem;
  }
}

:root {
  --tm-cream: #fbf8f1;
  --tm-cream-2: #f4efe5;
  --tm-gold: #c98c2e;
  --tm-gold-dark: #a86d17;
  --tm-charcoal: #24272a;
  --tm-soft-ink: #5c6065;
}

.topbar--light {
  color: #50545a !important;
  background: #faf7f1fa !important;
  border-bottom: 1px solid #24272a14 !important;
}

.topbar__inner--light {
  justify-content: center;
  min-height: 42px;
  position: relative;
}

.topbar__message--light {
  letter-spacing: .01em;
  color: #61656a;
  font-size: .78rem;
}

.topbar__message--light strong {
  color: #3d4145;
  font-weight: 850;
}

.topbar__gift {
  color: var(--tm-gold);
  font-size: 1rem;
}

.topbar__link--light {
  font-weight: 800;
  position: absolute;
  right: 0;
  color: var(--tm-gold-dark) !important;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.topbar__link--light:hover {
  color: #7d5315 !important;
  transform: none !important;
}

.site-header--light {
  z-index: 1500;
  padding: 10px 0;
  transition: padding .3s, background .3s;
  position: sticky;
  top: 0;
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
}

.nav-shell {
  width: min(100% - 36px, 1320px);
}

.nav-wrap--premium {
  -webkit-backdrop-filter: blur(18px);
  background: #ffffffed;
  border: 1px solid #24272a14;
  border-radius: 24px;
  height: auto;
  min-height: 88px;
  padding: 12px 18px 12px 24px;
  box-shadow: 0 14px 42px #5348361a;
}

.site-header.is-scrolled .nav-wrap--premium {
  min-height: 72px;
  box-shadow: 0 16px 42px #36302824;
}

.brand--premium {
  width: 245px;
  height: 62px;
  overflow: visible;
}

.brand--premium img {
  width: 235px;
  height: auto;
  transform: none !important;
}

.nav--premium {
  color: #303337;
  gap: 30px;
  font-size: .92rem;
  font-weight: 620;
}

.nav--premium > a:not(.btn) {
  color: #303337;
  padding: 14px 0;
}

.nav--premium > a:not(.btn):after {
  background: var(--tm-gold);
  border-radius: 999px;
  height: 2px;
  bottom: 6px;
}

.nav--premium > a.is-active {
  font-weight: 820;
}

.nav__cta--gold {
  min-height: 52px;
  color: #fff !important;
  background: linear-gradient(135deg, #d6a34d, #bd7e20) !important;
  border: 1px solid #9762112e !important;
  border-radius: 12px !important;
  padding: 14px 22px !important;
  font-weight: 850 !important;
  box-shadow: 0 10px 24px #ad70182e !important;
}

.nav__cta--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #ad70183d !important;
}

.hero-media {
  background: var(--tm-cream);
  min-height: 710px;
  margin-top: -108px;
  padding-top: 108px;
  position: relative;
  overflow: hidden;
}

.hero-media__swiper, .hero-media__swiper .swiper-wrapper, .hero-media__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-media__slide {
  background: #e9e2d5;
  overflow: hidden;
}

.hero-media__background {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.025);
}

.hero-media__video {
  object-position: center center;
  background: #e9e2d5;
}

.hero-media__slide.swiper-slide-active .hero-media__background {
  animation: 8s ease-out both tmHeroKenBurns;
}

@keyframes tmHeroKenBurns {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.hero-media__wash {
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg, #fcf9f3fa 0%, #fcf9f3f0 28%, #fcf9f3ad 47%, #fcf9f338 67%, #fcf9f31a 100%), linear-gradient(#ffffff12, #ede2cf1a);
  position: absolute;
  inset: 0;
}

.hero-media:after {
  content: "";
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(#0000, #fbf8f1b8);
  height: 150px;
  position: absolute;
  inset: auto 0 0;
}

.hero-media__content {
  z-index: 8;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  gap: 54px;
  min-height: 602px;
  padding-top: 42px;
  padding-bottom: 54px;
  display: grid;
  position: relative;
}

.hero-media__copy {
  max-width: 720px;
  padding: 50px 0 28px;
}

.hero-media__kicker {
  color: var(--tm-gold-dark);
  letter-spacing: .045em;
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 750;
  display: block;
}

.hero-media h1 {
  color: var(--tm-charcoal);
  letter-spacing: -.052em;
  max-width: 720px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3.8rem, 5.6vw, 6rem);
  font-weight: 500;
  line-height: .94;
}

.hero-media h1 span {
  color: #292b2e;
  display: block;
}

.hero-media__copy > p {
  color: #505459;
  max-width: 650px;
  margin: 22px 0 26px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.hero-media__actions {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.btn--hero-primary, .btn--hero-secondary {
  min-height: 56px;
  border-radius: 10px !important;
  padding: 16px 28px !important;
  font-weight: 820 !important;
}

.btn--hero-primary {
  color: #262017 !important;
  background: linear-gradient(135deg, #ddb45e, #c78b2c) !important;
  box-shadow: 0 12px 30px #ab6f1c29 !important;
}

.btn--hero-primary:hover {
  background: linear-gradient(135deg, #e5bf70, #ba771c) !important;
}

.btn--hero-secondary {
  color: #313438 !important;
  box-shadow: none !important;
  background: #fffc !important;
  border: 1px solid #24272a26 !important;
}

.btn--hero-secondary:hover {
  color: #202225 !important;
  background: #fff !important;
  border-color: #24272a47 !important;
}

.hero-media__chips {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
  display: flex;
}

.hero-media__chips span {
  color: #595d61;
  backdrop-filter: blur(8px);
  background: #ffffffb0;
  border: 1px solid #24272a1a;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: .74rem;
  box-shadow: 0 4px 14px #4f44340a;
}

.hero-media__video-label {
  color: #666b70;
  background: #fff9;
  border: 1px solid #24272a1a;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 8px 13px;
  font-size: .72rem;
  display: inline-flex;
}

.hero-media__video-label span {
  border: 1px solid #24272a47;
  border-radius: 50%;
  place-items: center;
  width: 21px;
  height: 21px;
  font-size: .55rem;
  display: grid;
}

.hero-media__stats {
  backdrop-filter: blur(18px);
  background: #ffffffe0;
  border: 1px solid #24272a14;
  border-radius: 22px;
  align-self: center;
  width: 100%;
  padding: 12px 28px;
  box-shadow: 0 18px 55px #493f3124;
}

.hero-media__stats div {
  border-bottom: 1px solid #24272a17;
  padding: 23px 0;
}

.hero-media__stats div:last-child {
  border-bottom: 0;
}

.hero-media__stats b {
  color: var(--tm-gold-dark);
  letter-spacing: -.035em;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.hero-media__stats span {
  color: #666b70;
  margin-top: 8px;
  font-size: .75rem;
  display: block;
}

.hero-media__arrow {
  z-index: 10;
  width: 52px;
  height: 52px;
  color: var(--tm-gold-dark);
  cursor: pointer;
  background: #ffffffd6;
  border: 1px solid #24272a1a;
  border-radius: 50%;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  transition: all .2s;
  display: grid;
  position: absolute;
  top: 55%;
  box-shadow: 0 10px 28px #3c352b1f;
}

.hero-media__arrow:hover {
  background: #fff;
  transform: scale(1.05);
}

.hero-media__arrow--prev {
  left: 30px;
}

.hero-media__arrow--next {
  right: 30px;
}

.hero-media__pagination {
  gap: 9px;
  display: flex;
  transform: translateX(-50%);
  z-index: 10 !important;
  width: auto !important;
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
}

.hero-media__pagination .swiper-pagination-bullet {
  opacity: .45;
  background: #8d8e8e;
  width: 9px;
  height: 9px;
  margin: 0 !important;
}

.hero-media__pagination .swiper-pagination-bullet-active {
  background: var(--tm-gold);
  opacity: 1;
}

@media (width <= 1180px) {
  .brand--premium {
    width: 205px;
  }

  .brand--premium img {
    width: 200px;
  }

  .nav--premium {
    gap: 20px;
    font-size: .86rem;
  }

  .nav__cta--gold {
    padding-inline: 16px !important;
  }

  .hero-media__content {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .hero-media__arrow--prev {
    left: 12px;
  }

  .hero-media__arrow--next {
    right: 12px;
  }
}

@media (width <= 1020px) {
  .topbar__link--light {
    display: none;
  }

  .topbar__inner--light {
    justify-content: center;
  }

  .site-header--light {
    padding: 8px 0;
  }

  .nav-shell {
    width: min(100% - 24px, 1320px);
  }

  .nav-wrap--premium {
    border-radius: 20px;
    min-height: 74px;
    padding: 8px 12px 8px 18px;
  }

  .brand--premium {
    width: 190px;
    height: 56px;
  }

  .brand--premium img {
    width: 185px;
  }

  .nav--premium {
    border-radius: 20px;
    box-shadow: 0 22px 60px #24272a29;
    background: #fffffffa !important;
    padding: 22px !important;
    inset: 92px 12px auto !important;
  }

  .nav--premium > a:not(.btn) {
    padding: 10px 4px;
  }

  .nav__cta--gold {
    width: 100%;
  }

  .hero-media {
    min-height: 760px;
    margin-top: -90px;
    padding-top: 90px;
  }

  .hero-media__content {
    text-align: left;
    grid-template-columns: 1fr;
    min-height: 670px;
    padding-top: 60px;
  }

  .hero-media__copy {
    max-width: 680px;
    padding: 30px 0 0;
  }

  .hero-media__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 680px;
    padding: 0 20px;
    display: grid;
  }

  .hero-media__stats div {
    border-bottom: 0;
    border-right: 1px solid #24272a17;
    padding: 20px;
  }

  .hero-media__stats div:last-child {
    border-right: 0;
  }

  .hero-media__wash {
    background: linear-gradient(90deg, #fcf9f3f5 0%, #fcf9f3d6 48%, #fcf9f33d 100%);
  }
}

@media (width <= 680px) {
  .topbar__message--light {
    text-align: center;
    font-size: .65rem;
  }

  .topbar__gift {
    display: none;
  }

  .nav-wrap--premium {
    border-radius: 17px;
  }

  .brand--premium {
    width: 165px;
  }

  .brand--premium img {
    width: 160px;
  }

  .hero-media {
    min-height: 790px;
    margin-top: -86px;
    padding-top: 86px;
  }

  .hero-media__content {
    min-height: 700px;
    padding-top: 56px;
    padding-bottom: 70px;
    display: block;
  }

  .hero-media__copy {
    padding: 44px 0 0;
  }

  .hero-media__kicker {
    margin-bottom: 14px;
    font-size: .65rem;
  }

  .hero-media h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
    line-height: .98;
  }

  .hero-media__copy > p {
    margin: 18px 0 22px;
    font-size: .92rem;
  }

  .hero-media__actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .btn--hero-primary, .btn--hero-secondary {
    width: 100%;
  }

  .hero-media__chips {
    gap: 7px;
  }

  .hero-media__chips span {
    padding: 7px 9px;
    font-size: .67rem;
  }

  .hero-media__stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
    padding: 0 8px;
  }

  .hero-media__stats div {
    padding: 15px 8px;
  }

  .hero-media__stats b {
    font-size: 1.25rem;
  }

  .hero-media__stats span {
    font-size: .62rem;
  }

  .hero-media__arrow {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: 22px;
  }

  .hero-media__arrow--prev {
    left: 18px;
  }

  .hero-media__arrow--next {
    right: 18px;
  }

  .hero-media__pagination {
    bottom: 38px !important;
  }

  .hero-media__wash {
    background: linear-gradient(90deg, #fcf9f3f5, #fcf9f3d1 68%, #fcf9f357);
  }
}

.hero-media__slides {
  z-index: 1;
  background: #d9d3ca;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media__slide {
  opacity: 0;
  visibility: hidden;
  background: #d9d3ca;
  transition: opacity .9s, visibility .9s;
  position: absolute;
  inset: 0;
}

.hero-media__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-media__background {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  transform: scale(1.01);
}

.hero-media__video {
  object-fit: cover;
  background: #1b2026;
}

.hero-media__slide.is-active .hero-media__background {
  animation: 9s ease-out both tmHeroKenBurns;
}

.hero-media__wash {
  z-index: 4;
  background: linear-gradient(90deg, #fcf9f3e6 0%, #fcf9f3c7 30%, #fcf9f361 52%, #fcf9f314 74%, #fcf9f305 100%);
}

.hero-media:after {
  z-index: 5;
  background: linear-gradient(#0000, #fbf8f170);
}

.hero-media__pagination {
  align-items: center;
  gap: 10px;
  display: flex !important;
}

.hero-media__pagination button {
  opacity: .42;
  cursor: pointer;
  background: #8d8e8e;
  border: 0;
  border-radius: 999px;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: all .25s;
}

.hero-media__pagination button.is-active {
  background: var(--tm-gold);
  opacity: 1;
  width: 26px;
}

@media (width <= 1020px) {
  .hero-media__wash {
    background: linear-gradient(90deg, #fcf9f3e6 0%, #fcf9f3b3 48%, #fcf9f31a 100%);
  }
}

@media (width <= 680px) {
  .hero-media__background {
    object-position: 58% center;
  }

  .hero-media__wash {
    background: linear-gradient(90deg, #fcf9f3f0 0%, #fcf9f3c7 64%, #fcf9f33d 100%);
  }
}

:root {
  --tm7-navy: #06182d;
  --tm7-navy-2: #0b2440;
  --tm7-panel: #102c4a;
  --tm7-copper: #dd8f5a;
  --tm7-copper-2: #c97843;
  --tm7-ivory: #f7f1e9;
  --tm7-muted: #b9c1ca;
  --tm7-line: #f7f1e929;
}

body {
  background: var(--tm7-ivory);
}

.tm-header {
  z-index: 1200;
  backdrop-filter: blur(18px);
  background: #051527f5;
  border-bottom: 1px solid #ffffff17;
  position: sticky;
  top: 0;
  box-shadow: 0 12px 34px #0000002e;
}

.tm-nav-shell {
  width: min(100% - 40px, 1480px);
}

.tm-nav-wrap {
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  min-height: 92px;
  display: flex;
}


.tm-brand {
  flex: 0 0 330px;
  align-items: center;
  height: 82px;
  display: flex;
}

.tm-brand img {
  object-fit: contain;
  object-position: left center;
  width: 320px;
  height: auto;
  max-height: 82px;
}
.tm-nav {
  color: var(--tm7-ivory);
  align-items: center;
  gap: 34px;
  font-size: .92rem;
  font-weight: 650;
  display: flex;
}

.tm-nav > a:not(.btn) {
  color: #f3eee8;
  padding: 12px 0;
  position: relative;
}

.tm-nav > a:not(.btn):after {
  content: "";
  background: var(--tm7-copper);
  border-radius: 999px;
  width: 0;
  height: 2px;
  transition: all .25s;
  position: absolute;
  bottom: 2px;
  left: 0;
}

.tm-nav > a:not(.btn):hover:after, .tm-nav > a.is-active:after {
  width: 100%;
}

.tm-nav-cta {
  background: linear-gradient(135deg, var(--tm7-copper), var(--tm7-copper-2)) !important;
  color: #fff !important;
  border: 1px solid #ffffff1a !important;
  border-radius: 10px !important;
  padding: 15px 22px !important;
  box-shadow: 0 12px 30px #c5703c33 !important;
}

.tm-nav-toggle span {
  background: var(--tm7-ivory) !important;
}

.tm-hero {
  background: var(--tm7-navy);
  min-height: 575px;
  position: relative;
  overflow: hidden;
}

.tm-hero__slides {
  z-index: 1;
  position: absolute;
  inset: 0;
}

.tm-hero .hero-media__slide {
  opacity: 0;
  visibility: hidden;
  background: var(--tm7-navy);
  transition: opacity .9s, visibility .9s;
  position: absolute;
  inset: 0;
}

.tm-hero .hero-media__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.tm-hero .hero-media__background {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.015);
}

.tm-hero .hero-media__video {
  background: var(--tm7-navy);
}

@keyframes tm7HeroZoom {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1.005);
  }
}

.tm-hero__overlay {
  z-index: 4;
  background: linear-gradient(90deg, #031120fa 0%, #041426eb 28%, #0414269e 49%, #0414263d 70%, #04142626 100%);
  position: absolute;
  inset: 0;
}

.tm-hero__content {
  z-index: 7;
  align-items: center;
  min-height: 575px;
  padding-block: 58px;
  display: flex;
  position: relative;
}

.tm-hero__copy {
  max-width: 620px;
}

.tm-hero__kicker {
  color: var(--tm7-copper);
  letter-spacing: .18em;
  margin-bottom: 20px;
  font-size: .78rem;
  font-weight: 800;
  display: block;
}

.tm-hero h1 {
  color: var(--tm7-ivory);
  letter-spacing: -.055em;
  max-width: 650px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 450;
  line-height: 1.08;
}

.tm-hero__copy > p {
  color: #d9dee4;
  max-width: 575px;
  margin: 22px 0 28px;
  font-size: 1rem;
  line-height: 1.65;
}

.tm-hero__actions {
  flex-wrap: wrap;
  gap: 18px;
  display: flex;
}

.tm-btn-primary, .tm-btn-secondary {
  min-height: 54px;
  border-radius: 9px !important;
  padding: 15px 28px !important;
  font-weight: 750 !important;
}

.tm-btn-primary {
  background: linear-gradient(135deg, var(--tm7-copper), var(--tm7-copper-2)) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px #c978433d !important;
}

.tm-btn-secondary {
  backdrop-filter: blur(8px);
  color: var(--tm7-ivory) !important;
  background: #05182d73 !important;
  border: 1px solid #dd8f5acc !important;
}

.tm-btn-secondary:hover {
  color: #fff !important;
  background: #dd8f5a1a !important;
}

.tm-hero__arrow {
  backdrop-filter: blur(10px);
  z-index: 10 !important;
  width: 46px !important;
  height: 46px !important;
  color: var(--tm7-ivory) !important;
  box-shadow: none !important;
  background: #04142685 !important;
  border: 1px solid #f7f1e940 !important;
}

.tm-hero__pagination {
  transform: translateX(-50%);
  z-index: 10 !important;
  gap: 10px !important;
  width: auto !important;
  display: flex !important;
  position: absolute !important;
  bottom: 24px !important;
  left: 50% !important;
}

.tm-hero__pagination button {
  opacity: .85;
  cursor: pointer;
  background: #eee7df;
  border: 0;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  padding: 0;
  transition: all .2s;
}

.tm-hero__pagination button.is-active {
  background: var(--tm7-copper);
  opacity: 1;
  width: 12px;
  height: 12px;
}

.tm-metrics {
  z-index: 12;
  background: var(--tm7-navy);
  padding: 0;
  position: relative;
}

.tm-metrics__panel {
  background: linear-gradient(135deg, #0b223d, #102d4d);
  border: 1px solid #ffffff24;
  border-radius: 24px 24px 0 0;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  overflow: hidden;
  box-shadow: 0 28px 60px #0000003d;
}

.tm-metric {
  border-right: 1px solid #ffffff29;
  align-items: center;
  gap: 20px;
  min-height: 145px;
  padding: 28px 30px;
  display: flex;
}

.tm-metric:last-child {
  border-right: 0;
}

.tm-metric__icon {
  width: 62px;
  height: 62px;
  color: var(--tm7-copper);
  flex: 0 0 62px;
  place-items: center;
  display: grid;
}

.tm-metric__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 58px;
  height: 58px;
}

.tm-metric strong {
  color: var(--tm7-ivory);
  letter-spacing: -.035em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.tm-metric span:not(.tm-metric__icon) {
  color: #c7d0d8;
  margin-top: 8px;
  font-size: .9rem;
  display: block;
}

.tm-clients {
  background: linear-gradient(#fbf7f1, #f7f2ea);
  padding: 34px 0 76px;
}

.tm-clients__heading > span {
  color: var(--tm7-copper-2);
  letter-spacing: .18em;
  align-items: center;
  gap: 15px;
  font-size: .78rem;
  font-weight: 850;
  display: inline-flex;
}

.tm-clients__heading > span:before, .tm-clients__heading > span:after {
  content: "";
  background: var(--tm7-copper);
  width: 50px;
  height: 1px;
}

.tm-clients__heading h2 {
  color: #243143;
  letter-spacing: 0;
  margin: 8px auto 0;
  font-size: 1rem;
  font-weight: 500;
}

.tm-client-carousel {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  display: grid;
}

.tm-client-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  display: grid;
}

.tm-client-card {
  background: #fff;
  border: 1px solid #06182d12;
  border-radius: 16px;
  place-items: center;
  height: 150px;
  padding: 24px;
  transition: all .25s;
  display: grid;
  box-shadow: 0 12px 30px #352b1f14;
}

.tm-client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px #352b1f21;
}

.tm-client-card img {
  object-fit: contain;
  max-width: 75%;
  max-height: 92px;
}

.tm-client-card:nth-child(2) img {
  max-height: 105px;
}

.tm-client-arrow {
  width: 42px;
  height: 42px;
  color: var(--tm7-copper-2);
  cursor: pointer;
  background: #fff;
  border: 1px solid #06182d24;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

@media (width <= 1080px) {
  .tm-brand {
    flex-basis: 230px;
  }

  .tm-brand img {
    width: 225px;
  }

  .tm-nav {
    gap: 22px;
  }

  .tm-metrics__panel {
    border-radius: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .tm-metric:nth-child(2) {
    border-right: 0;
  }

  .tm-metric:nth-child(-n+2) {
    border-bottom: 1px solid #ffffff29;
  }
}

@media (width <= 1020px) {
  .tm-nav-wrap {
    min-height: 78px;
  }

  .tm-brand {
    height: 60px;
  }

  .tm-nav {
    border: 1px solid #ffffff1a;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    display: none;
    box-shadow: 0 24px 60px #00000052;
    background: #071b31 !important;
    padding: 24px !important;
    position: fixed !important;
    inset: 78px 14px auto !important;
  }

  .tm-nav.is-open {
    display: flex;
  }

  .tm-nav-cta {
    width: 100%;
  }

  .tm-hero, .tm-hero__content {
    min-height: 620px;
  }

  .tm-hero__copy {
    max-width: 650px;
  }

  .tm-hero__overlay {
    background: linear-gradient(90deg, #031120fa, #041426d1 58%, #04142659);
  }
}

@media (width <= 700px) {
  .tm-nav-shell {
    width: min(100% - 24px, 1480px);
  }

  .tm-brand {
    flex-basis: 205px;
  }

  .tm-brand img {
    width: 200px;
  }

  .tm-nav-toggle {
    display: block;
  }

  .tm-hero, .tm-hero__content {
    min-height: 680px;
  }

  .tm-hero__content {
    padding-block: 44px 86px;
  }

  .tm-hero__copy {
    max-width: 92%;
  }

  .tm-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
    line-height: 1.02;
  }

  .tm-hero__copy > p {
    font-size: .92rem;
  }

  .tm-hero__actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tm-btn-primary, .tm-btn-secondary {
    width: 100%;
  }

  .tm-hero .hero-media__background {
    object-position: 68% center;
  }

  .tm-hero__overlay {
    background: linear-gradient(90deg, #031120fa, #041426e6 60%, #0414267a);
  }

  .tm-metrics__panel {
    grid-template-columns: 1fr;
  }

  .tm-metric {
    min-height: 104px;
    padding: 20px 24px;
    border-bottom: 1px solid #ffffff24 !important;
    border-right: 0 !important;
  }

  .tm-metric:last-child {
    border-bottom: 0 !important;
  }

  .tm-metric__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .tm-metric__icon svg {
    width: 44px;
    height: 44px;
  }

  .tm-metric strong {
    font-size: 1.5rem;
  }

  .tm-client-carousel {
    grid-template-columns: 1fr;
  }

  .tm-client-arrow {
    display: none;
  }

  .tm-client-grid {
    grid-template-columns: 1fr;
  }

  .tm-client-card {
    height: 128px;
  }

  .tm-clients {
    padding-bottom: 54px;
  }
}

:root {
  --navy: #06182d;
  --navy-2: #0b2440;
  --navy-3: #102c4a;
  --copper: #dd8f5a;
  --copper-dark: #c97843;
  --copper-light: #e8ac82;
  --ivory: #f7f1e9;
  --cream: #fbf8f3;
  --cream-2: #f1ebe3;
  --ink: #182638;
  --muted: #6f7780;
  --muted-dark: #adb7c1;
  --line: #06182d1f;
  --line-dark: #f7f1e924;
  --white: #fff;
  --soft: var(--cream);
  --shadow: 0 22px 60px #06182d1f;
  --teal: var(--copper);
  --cyan: var(--copper-light);
  --orange: var(--copper);
  --orange-dark: var(--copper-dark);
  --tm7-navy: var(--navy);
  --tm7-navy-2: var(--navy-2);
  --tm7-panel: var(--navy-3);
  --tm7-copper: var(--copper);
  --tm7-copper-2: var(--copper-dark);
  --tm7-ivory: var(--ivory);
  --tm7-muted: var(--muted-dark);
}

html {
  background: var(--navy);
}

.section--navy {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--navy), var(--navy-2)) !important;
}

.kicker, .eyebrow {
  color: var(--copper-dark);
}

.section-heading h2, .contact-copy h2, .faq-intro h2, .map-card h2 {
  color: var(--navy);
}

.section-heading p, .contact-copy p, .faq-intro p, .map-card__copy p {
  color: var(--muted);
}

.tm-header {
  background: #041222f6 !important;
  border-color: #f7f1e91a !important;
}

.tm-nav > a:not(.btn) {
  color: #f7f1e9ed !important;
}

.tm-nav > a:hover, .tm-nav > a.is-active {
  color: var(--copper) !important;
}

.tm-nav > a:not(.btn):after {
  background: var(--copper) !important;
}

.tm-nav-cta {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark)) !important;
}

.tm-hero {
  background: var(--navy);
  min-height: clamp(640px, 76vh, 820px) !important;
}

.tm-hero__content {
  min-height: clamp(640px, 76vh, 820px) !important;
  padding-block: 64px 92px !important;
}

.tm-hero .hero-media__background {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  animation: none !important;
  transform: scale(1) !important;
}

.tm-hero .hero-media__slide.is-active .hero-media__background {
  animation: 10s ease-out both tmHeroV8 !important;
}

@keyframes tmHeroV8 {
  from {
    transform: scale(1.008);
  }

  to {
    transform: scale(1);
  }
}

.hero-slide--design .hero-media__background {
  object-position: 68% center !important;
}

.hero-slide--responsive .hero-media__background {
  object-position: 70% center !important;
}

.hero-slide--analytics .hero-media__background {
  object-position: 72% center !important;
}

.hero-slide--video .hero-media__background {
  object-position: center center !important;
}

.tm-hero__kicker {
  color: var(--copper) !important;
}

.tm-hero h1 {
  color: var(--ivory) !important;
}

.tm-hero h1 span {
  color: var(--copper) !important;
}

.tm-hero__copy > p {
  color: #d9dee4 !important;
}

.tm-btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark)) !important;
}

.tm-btn-secondary {
  color: var(--ivory) !important;
  border-color: #dd8f5ad1 !important;
}

.tm-metrics {
  background: var(--navy) !important;
}

.tm-metrics__panel {
  background: linear-gradient(135deg, #0a213b, #102d4d) !important;
}

.tm-metric strong {
  color: var(--ivory) !important;
}

.tm-metric span:not(.tm-metric__icon) {
  color: #c7d0d8 !important;
}

.tm-clients {
  background: linear-gradient(180deg, var(--cream), var(--ivory)) !important;
}

.tm-clients__heading > span {
  color: var(--copper-dark) !important;
}

.tm-clients__heading > span:before, .tm-clients__heading > span:after {
  background: var(--copper) !important;
}

.tm-clients__heading h2 {
  color: var(--ink) !important;
}

.tm-client-card {
  background: #fff !important;
  border-color: #06182d17 !important;
  box-shadow: 0 14px 34px #06182d14 !important;
}

.tm-client-arrow {
  color: var(--copper-dark) !important;
  border-color: #06182d24 !important;
}

.services-section {
  background: var(--cream) !important;
}

.service-card {
  background: #fff !important;
  border-color: #06182d1a !important;
  box-shadow: 0 12px 36px #06182d12 !important;
}

.service-card:hover {
  border-color: #dd8f5a6b !important;
  box-shadow: 0 24px 58px #06182d21 !important;
}

.service-card__image:after {
  background: linear-gradient(to top, #06182d47, #0000) !important;
}

.service-card__badge {
  color: var(--ivory) !important;
  background: #06182deb !important;
  border-color: #f7f1e929 !important;
}

.service-card__number {
  color: var(--copper-dark) !important;
  background: #dd8f5a21 !important;
}

.service-card h3, .service-card__heading h3 {
  color: var(--navy) !important;
}

.service-card p, .service-card__content p {
  color: var(--muted) !important;
}

.service-more {
  color: var(--navy) !important;
  background: #fff !important;
  border-color: #06182d26 !important;
}

.service-more:hover {
  color: var(--copper-dark) !important;
  border-color: var(--copper) !important;
}

.service-action {
  background: var(--navy) !important;
  color: var(--ivory) !important;
  border-color: var(--navy) !important;
}

.service-action:hover {
  background: var(--copper-dark) !important;
  border-color: var(--copper-dark) !important;
}

.portfolio-heading h2 {
  color: var(--ivory) !important;
}

.portfolio-heading p {
  color: var(--muted-dark) !important;
}

.portfolio-heading .kicker, .portfolio-mini-label {
  color: var(--copper-light) !important;
}

.project-card {
  background: #fff !important;
  border-color: #f7f1e91f !important;
  box-shadow: 0 18px 50px #0003 !important;
}

.project-card__copy > span, .project-card__eyebrow {
  color: var(--copper-dark) !important;
}

.project-card h3 {
  color: var(--navy) !important;
}

.project-card p {
  color: var(--muted) !important;
}

.project-card__arrow {
  background: var(--navy) !important;
  color: var(--ivory) !important;
}

.project-card__arrow:hover {
  background: var(--copper-dark) !important;
}

.portfolio-cta {
  background: #ffffff0f !important;
  border-color: #f7f1e929 !important;
}

.portfolio-cta h3 {
  color: var(--ivory) !important;
}

.portfolio-cta p {
  color: var(--muted-dark) !important;
}

.portfolio-cta__eyebrow {
  color: var(--copper-light) !important;
}

.price-card {
  background: #fff !important;
  border-color: #06182d1a !important;
  box-shadow: 0 15px 42px #06182d14 !important;
}

.price-card__top {
  background: linear-gradient(160deg, #fff, var(--cream-2)) !important;
  border-color: #06182d17 !important;
}

.price-card__top > span {
  color: var(--copper-dark) !important;
}

.price-card h3, .price, .price-card__body > strong {
  color: var(--navy) !important;
}

.price-card li {
  color: #4f5e6d !important;
}

.price-card li:before {
  color: var(--copper-dark) !important;
}

.plan-meta span {
  background: var(--cream) !important;
  color: var(--navy) !important;
}

.price-card--featured {
  border-color: var(--copper) !important;
  box-shadow: 0 24px 64px #06182d24 !important;
}

.popular {
  background: var(--copper-dark) !important;
  color: #fff !important;
}

.price-card--dark {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--ivory) !important;
}

.price-card--dark .price-card__top {
  background: linear-gradient(150deg, var(--navy), var(--navy-2)) !important;
  border-color: var(--line-dark) !important;
}

.price-card--dark h3, .price-card--dark .price, .price-card--dark .price-card__body > strong {
  color: var(--ivory) !important;
}

.price-card--dark .price-card__top > span {
  color: var(--copper-light) !important;
}

.price-card--dark .price-card__top p, .price-card--dark li {
  color: #cbd2d9 !important;
}

.price-card--dark .plan-meta span {
  color: var(--ivory) !important;
  background: #ffffff14 !important;
}

.custom-plan {
  background: var(--ivory) !important;
  border-color: #06182d1a !important;
}

.custom-plan span {
  color: var(--copper-dark) !important;
}

.custom-plan h3 {
  color: var(--navy) !important;
}

#seo .kicker--light {
  color: var(--copper-light) !important;
}

#seo h2 {
  color: var(--ivory) !important;
}

#seo p {
  color: #bcc7d1 !important;
}

.seo-checklist > div {
  background: #ffffff0f !important;
  border-color: #ffffff1f !important;
}

.seo-checklist b {
  color: var(--copper) !important;
}

.seo-checklist strong {
  color: var(--ivory) !important;
}

.seo-checklist small {
  color: #aebbc6 !important;
}

#proceso {
  background: var(--ivory) !important;
}

.process-grid li {
  box-shadow: 0 10px 30px #06182d0d;
  background: #fff !important;
  border-top-color: #06182d1f !important;
}

.process-grid li:hover {
  border-color: var(--copper) !important;
}

.process-grid span {
  color: var(--copper-dark) !important;
}

.process-grid h3 {
  color: var(--navy) !important;
}

.process-grid p {
  color: var(--muted) !important;
}

#preguntas {
  background: var(--cream-2) !important;
}

.accordion details {
  border-color: #06182d1f !important;
}

.accordion summary {
  color: var(--navy) !important;
}

.accordion summary:after {
  background: var(--navy) !important;
  color: var(--ivory) !important;
}

.accordion details[open] summary:after {
  background: var(--copper-dark) !important;
}

.accordion p {
  color: var(--muted) !important;
}

.contact-section {
  background: var(--ivory) !important;
}

.contact-points > * > span {
  color: var(--copper-dark) !important;
  background: #dd8f5a21 !important;
}

.contact-points small {
  color: var(--muted) !important;
}

.contact-points b {
  color: var(--navy) !important;
}

.contact-form {
  background: #fff !important;
  border-color: #06182d1a !important;
  box-shadow: 0 22px 58px #06182d1a !important;
}

.contact-form label {
  color: var(--navy) !important;
}

.contact-form input, .contact-form select, .contact-form textarea {
  color: var(--ink) !important;
  background: #fcfaf7 !important;
  border-color: #06182d29 !important;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--copper) !important;
  box-shadow: 0 0 0 4px #dd8f5a21 !important;
}

.check a {
  color: var(--copper-dark) !important;
}

.map-section {
  background: var(--ivory) !important;
}

.map-card {
  border-color: #06182d1a !important;
  box-shadow: 0 20px 56px #06182d1a !important;
}

.final-cta {
  background: linear-gradient(135deg, var(--navy-2), var(--navy)) !important;
  color: var(--ivory) !important;
}

.final-cta__whatsapp {
  background: var(--copper) !important;
  color: #fff !important;
  border-color: var(--copper) !important;
}

.footer {
  background: linear-gradient(150deg, #03111f, var(--navy)) !important;
  color: #b9c5cf !important;
}

.footer h3 {
  color: var(--ivory) !important;
}

.footer a:hover {
  color: var(--copper-light) !important;
}

.footer__socials a, .footer__socials span {
  border-color: #f7f1e926 !important;
}

.cookie-banner {
  background: #fff !important;
  border-color: #06182d1f !important;
  box-shadow: 0 22px 62px #06182d29 !important;
}

.cookie-banner strong {
  color: var(--navy) !important;
}

.cookie-banner p {
  color: var(--muted) !important;
}

.advisory-dialog {
  border-color: #06182d1f !important;
}

.whatsapp-float {
  background: #19a75a !important;
}

@media (width <= 1020px) {
  .tm-hero, .tm-hero__content {
    min-height: clamp(660px, 82vh, 780px) !important;
  }

  .tm-hero__overlay {
    background: linear-gradient(90deg, #031120fa, #041426db 58%, #04142661) !important;
  }
}

@media (width <= 700px) {
  .tm-hero, .tm-hero__content {
    min-height: 720px !important;
  }

  .tm-hero .hero-media__background {
    object-position: 72% center !important;
  }

  .hero-slide--video .hero-media__background {
    object-position: center center !important;
  }

  .tm-hero__overlay {
    background: linear-gradient(90deg, #031120fa, #041426eb 64%, #04142680) !important;
  }
}

.footer {
  color: #b9c5cf !important;
  background: radial-gradient(circle at 12% 100%, #dd8f5a14, #0000 28%), linear-gradient(145deg, #03111f 0%, #06182d 58%, #0b2440 100%) !important;
}

.footer__cta {
  background: #f8f5f0 !important;
  border: 1px solid #ffffff8c !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 70px #0003 !important;
}

.footer__cta span {
  color: #c97843 !important;
}

.footer__cta h2 {
  color: #06182d !important;
}

.footer__cta p {
  color: #6f7780 !important;
}

.footer__logo {
  width: 260px !important;
  height: auto !important;
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding: 0 !important;
  display: flex !important;
}

.footer__logo img {
  object-fit: contain !important;
  object-position: left center !important;
  background: none !important;
  border-radius: 0 !important;
  width: 250px !important;
  height: auto !important;
  max-height: none !important;
  padding: 0 !important;
  display: block !important;
}

.footer__brand img {
  background: none !important;
  padding: 0 !important;
}

.footer__brand p {
  color: #b6c2cc !important;
  max-width: 380px !important;
  margin: 24px 0 22px !important;
  font-size: .98rem !important;
  line-height: 1.65 !important;
}

.footer__socials {
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  display: flex !important;
}

.footer__socials a {
  color: #e4e8ec !important;
  background: #ffffff0b !important;
  border: 1px solid #f7f1e924 !important;
  border-radius: 999px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 7px 14px 7px 8px !important;
  transition: transform .22s, background .22s, border-color .22s !important;
  display: inline-flex !important;
}

.footer__socials a:hover {
  color: #fff !important;
  background: #dd8f5a1f !important;
  border-color: #dd8f5a73 !important;
  transform: translateY(-2px) !important;
}

.footer__socials span {
  color: #e7a77d !important;
  background: #dd8f5a24 !important;
  border-radius: 50% !important;
  place-items: center !important;
  width: 27px !important;
  height: 27px !important;
  font-size: .72rem !important;
  display: grid !important;
}

.footer__socials b {
  color: inherit !important;
  font-size: .75rem !important;
}

.footer__grid {
  grid-template-columns: 1.35fr .72fr 1fr 1fr !important;
  gap: 60px !important;
  padding: 12px 0 55px !important;
}

.footer__column h3 {
  color: #f7f1e9 !important;
  letter-spacing: .09em !important;
  margin: 0 0 20px !important;
  font-size: .8rem !important;
}

.footer__column a, .footer__column button {
  color: #b9c5cf !important;
  margin: 12px 0 !important;
  font-size: .86rem !important;
}

.footer__column a:hover {
  color: #e7a77d !important;
}

.footer__column button, .footer__column--trust span {
  color: #dd8f5a !important;
}

.footer__column--trust p {
  color: #c1cbd3 !important;
}

.footer__bottom {
  color: #9eacb8 !important;
  border-top: 1px solid #f7f1e91a !important;
  padding: 24px 0 32px !important;
}

.footer__made {
  color: #748795 !important;
}

.footer__bottom a {
  color: #d1d8de !important;
}

.footer__bottom a:hover {
  color: #dd8f5a !important;
}

@media (width <= 1020px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr !important;
    gap: 38px !important;
  }

  .footer__column--trust {
    grid-column: 2 / 4 !important;
  }
}

@media (width <= 680px) {
  .footer__cta {
    padding: 24px !important;
    transform: translateY(-24px) !important;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .footer__brand, .footer__column--trust {
    grid-column: auto !important;
  }

  .footer__logo {
    width: 230px !important;
  }

  .footer__logo img {
    width: 220px !important;
  }

  .footer__bottom {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

@media (width >= 1021px) {
  .tm-hero, .tm-hero__content {
    min-height: 720px !important;
  }
}

.tm-hero, .tm-hero .hero-media__slide {
  background: #06182d !important;
}

.tm-hero .hero-media__slide img.hero-media__background {
  object-fit: contain !important;
  object-position: right center !important;
  background: #06182d !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  animation: none !important;
  position: absolute !important;
  inset: 0 0 0 auto !important;
  transform: none !important;
}

.tm-hero .hero-media__slide.is-active img.hero-media__background {
  animation: none !important;
  transform: none !important;
}

.tm-hero .hero-media__video {
  object-fit: cover !important;
  object-position: center center !important;
  background: #06182d !important;
  width: 100% !important;
  height: 100% !important;
  animation: none !important;
  position: absolute !important;
  inset: 0 !important;
  transform: none !important;
}

.tm-hero__overlay {
  background: linear-gradient(90deg, #031120 0%, #031120fa 18%, #031120e8 32%, #031120a8 47%, #0311204d 64%, #03112014 82%, #03112008 100%) !important;
}

@media (width <= 1020px) {
  .tm-hero, .tm-hero__content {
    min-height: 700px !important;
  }

  .tm-hero .hero-media__slide img.hero-media__background {
    object-fit: cover !important;
    object-position: 68% center !important;
  }

  .tm-hero__overlay {
    background: linear-gradient(90deg, #031120fa 0%, #031120eb 48%, #0311207a 100%) !important;
  }
}

@media (width <= 700px) {
  .tm-hero, .tm-hero__content {
    min-height: 720px !important;
  }

  .tm-hero .hero-media__slide img.hero-media__background {
    object-fit: cover !important;
    object-position: 72% center !important;
  }

  .tm-hero .hero-slide--video .hero-media__background {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .tm-hero__overlay {
    background: linear-gradient(90deg, #031120fa 0%, #031120ed 62%, #0311208f 100%) !important;
  }
}

html {
  scroll-padding-top: 92px !important;
}

.tm-header, .tm-header.is-scrolled {
  -webkit-backdrop-filter: blur(18px) !important;
  background: #031120fa !important;
  border-bottom: 1px solid #f7f1e91a !important;
  box-shadow: 0 10px 34px #0003 !important;
}

.tm-nav > a:not(.btn), .tm-nav > a:not(.btn):hover, .tm-nav > a:not(.btn).is-active, .tm-nav > a:not(.btn)[aria-current="page"] {
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.tm-nav > a:not(.btn) {
  color: #f7f1e9 !important;
  padding: 12px 0 !important;
  transition: color .22s !important;
  position: relative !important;
}

.tm-nav > a:not(.btn):hover {
  color: #e7a77d !important;
}

.tm-nav > a:not(.btn).is-active, .tm-nav > a:not(.btn)[aria-current="page"] {
  color: #dd8f5a !important;
}

.tm-nav > a:not(.btn):after {
  content: "" !important;
  background: #dd8f5a !important;
  border-radius: 999px !important;
  width: 0 !important;
  height: 2px !important;
  transition: width .22s !important;
  position: absolute !important;
  bottom: 2px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

.tm-nav > a:not(.btn):hover:after, .tm-nav > a:not(.btn).is-active:after, .tm-nav > a:not(.btn)[aria-current="page"]:after {
  width: 100% !important;
}

.tm-nav-cta, .tm-nav-cta:hover, .tm-header.is-scrolled .tm-nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, #dd8f5a, #c97843) !important;
  border: 1px solid #ffffff14 !important;
  box-shadow: 0 12px 30px #c9784338 !important;
}

.tm-header .tm-brand, .tm-header.is-scrolled .tm-brand {
  box-shadow: none !important;
  background: none !important;
}

@media (width <= 1020px) {
  .tm-nav {
    background: #06182d !important;
    border-bottom: 1px solid #f7f1e91a !important;
  }

  .tm-nav > a:not(.btn) {
    color: #f7f1e9 !important;
  }

  .tm-nav > a:not(.btn).is-active, .tm-nav > a:not(.btn)[aria-current="page"] {
    color: #dd8f5a !important;
  }
}

:root {
  --tm-navy: #06182d;
  --tm-navy-2: #0b2440;
  --tm-panel: #122d49;
  --tm-copper: #dd8f5a;
  --tm-copper-2: #c97843;
  --tm-ivory: #f7f1e9;
  --tm-cream: #fbf8f3;
  --tm-text: #172638;
  --tm-muted: #687482;
  --tm-line: #06182d1f;
  --tm-radius: 26px;
}

body {
  background: var(--tm-cream) !important;
  color: var(--tm-text) !important;
}

.section {
  background: var(--tm-cream) !important;
}

.section--soft {
  background: #f1ebe3 !important;
}

.kicker {
  color: var(--tm-copper-2) !important;
}

.tm-metrics {
  background: var(--tm-navy) !important;
  padding: 0 0 58px !important;
}

.tm-metrics__panel {
  overflow: hidden;
  background: linear-gradient(145deg, #102b48, #0c2540) !important;
  border: 1px solid #ffffff1f !important;
  box-shadow: 0 28px 70px #00000038 !important;
}

.tm-metric {
  min-height: 148px !important;
  padding: 30px 34px !important;
  transition: background .25s, transform .25s !important;
}

.tm-metric:hover {
  transform: translateY(-3px);
  background: #ffffff09 !important;
}

.tm-metric strong {
  letter-spacing: -.04em;
  color: var(--tm-ivory) !important;
  font-size: 1.85rem !important;
}

.tm-metric strong em {
  color: var(--tm-ivory);
  font-style: normal;
}

.tm-metric > div > span {
  color: #b8c5d0 !important;
}

.tm-metric__icon {
  color: var(--tm-copper) !important;
}

.tm-clients--premium {
  background: linear-gradient(180deg, var(--tm-cream), #f3eee7) !important;
  padding: 90px 0 105px !important;
}

.tm-clients__heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 42px;
}

.tm-clients__heading > span {
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 900;
  color: var(--tm-copper-2) !important;
}

.tm-clients__heading h2 {
  letter-spacing: -.045em;
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  color: var(--tm-navy) !important;
}

.tm-clients__heading p {
  max-width: 670px;
  color: var(--tm-muted);
  margin: 0 auto;
}

.brand-marquee {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  display: grid;
  position: relative;
}

.brand-marquee__viewport {
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  border-radius: 26px;
  overflow-x: auto;
}

.brand-marquee__viewport::-webkit-scrollbar {
  display: none;
}

.brand-marquee__track {
  gap: 16px;
  width: max-content;
  padding: 10px 3px;
  display: flex;
}

.brand-logo-card {
  scroll-snap-align: start;
  border: 1px solid var(--tm-line);
  background: #fff;
  border-radius: 22px;
  place-items: center;
  width: 220px;
  height: 132px;
  padding: 24px;
  transition: all .25s;
  display: grid;
  box-shadow: 0 12px 34px #06182d12;
}

.brand-logo-card:hover {
  border-color: #dd8f5a57;
  transform: translateY(-5px);
  box-shadow: 0 20px 44px #06182d1f;
}

.brand-logo-card img {
  object-fit: contain;
  filter: saturate(.93);
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 74px;
}

.brand-marquee__arrow {
  border: 1px solid var(--tm-line);
  width: 46px;
  height: 46px;
  color: var(--tm-navy);
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  font-size: 1.55rem;
  transition: all .22s;
  box-shadow: 0 8px 24px #06182d14;
}

.brand-marquee__arrow:hover {
  background: var(--tm-navy);
  color: #fff;
  border-color: var(--tm-navy);
}

.services-premium {
  background: var(--tm-navy) !important;
  color: #fff !important;
  padding: 110px 0 !important;
}

.services-premium__heading {
  grid-template-columns: 1.4fr .65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
  display: grid;
}

.services-premium__heading h2 {
  letter-spacing: -.055em;
  max-width: 900px;
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  line-height: .98;
  color: var(--tm-ivory) !important;
}

.services-premium__heading p {
  color: #b9c4ce;
  max-width: 470px;
  margin: 0;
}

.services-premium__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  display: grid;
}

.service-premium {
  background: var(--tm-panel);
  border: 1px solid #ffffff1a;
  border-radius: 26px;
  flex-direction: column;
  min-height: 460px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 55px #0000002e;
}

.service-premium--wide {
  grid-column: span 2;
}

.service-premium:hover {
  border-color: #dd8f5a8c;
  transform: translateY(-6px);
  box-shadow: 0 30px 75px #00000047;
}

.service-premium__media {
  background: #0b1e31;
  height: 280px;
  overflow: hidden;
}

.service-premium--wide .service-premium__media {
  height: 300px;
}

.service-premium__media img {
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  width: 100%;
  height: 100%;
  transition: transform .65s, filter .4s;
}

.service-premium:hover .service-premium__media img {
  filter: saturate() contrast(1.03);
  transform: scale(1.035);
}

.service-premium__body {
  flex: 1;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 17px;
  padding: 24px 24px 27px;
  display: grid;
}

.service-premium__index {
  width: 36px;
  height: 36px;
  color: var(--tm-copper);
  background: #dd8f5a21;
  border-radius: 12px;
  place-items: center;
  font-size: .72rem;
  font-weight: 950;
  display: grid;
}

.service-premium__body small {
  color: var(--tm-copper);
  letter-spacing: .12em;
  font-size: .62rem;
  font-weight: 900;
}

.service-premium h3 {
  color: #fff;
  letter-spacing: -.03em;
  margin: 5px 0 8px;
  font-size: 1.35rem;
}

.service-premium p {
  color: #b8c5d0;
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
}

.service-premium__body > a {
  color: #fff;
  border: 1px solid #ffffff29;
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  transition: all .22s;
  display: grid;
}

.service-premium__body > a:hover {
  background: var(--tm-copper);
  border-color: var(--tm-copper);
  transform: translate(2px, -2px);
}

.seo-premium {
  background: linear-gradient(140deg, #06182d, #0b2440) !important;
  padding-bottom: 78px !important;
}

.seo-premium .seo-checklist > div {
  background: #ffffff0e !important;
  border-color: #ffffff1f !important;
}

.seo-tech {
  border-top: 1px solid #ffffff1f;
  width: min(100% - 40px, 1180px);
  margin: 62px auto 0;
  padding-top: 32px;
}

.seo-tech > span {
  text-align: center;
  color: var(--tm-copper);
  letter-spacing: .15em;
  margin-bottom: 22px;
  font-size: .67rem;
  font-weight: 900;
  display: block;
}

.seo-tech__logos {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  display: grid;
}

.seo-tech figure {
  background: #ffffff0e;
  border: 1px solid #ffffff1a;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  margin: 0;
  padding: 20px;
  display: flex;
}

.seo-tech img {
  object-fit: contain;
  max-width: 86px;
  max-height: 48px;
}

.seo-tech figcaption {
  color: #d7dfe5;
  font-size: .78rem;
  font-weight: 800;
}

.process-premium {
  background: linear-gradient(#f7f1e9, #fbf8f3) !important;
}

.process-premium .process-grid {
  gap: 18px;
  position: relative;
}

.process-premium .process-grid:before {
  content: "";
  background: linear-gradient(90deg, transparent, var(--tm-copper), var(--tm-copper), transparent);
  opacity: .45;
  height: 1px;
  position: absolute;
  top: 27px;
  left: 7%;
  right: 7%;
}

.process-premium .process-step {
  border-radius: 22px;
  transition: all .25s;
  position: relative;
  box-shadow: 0 12px 35px #06182d0f;
  border: 1px solid var(--tm-line) !important;
  background: #fff !important;
  border-top: 0 !important;
  padding: 34px 26px 28px !important;
}

.process-premium .process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px #06182d1c;
}

.process-premium .process-step > span {
  z-index: 2;
  background: var(--tm-navy);
  border: 5px solid var(--tm-cream);
  border-radius: 50%;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -60px 0 20px;
  font-size: .78rem;
  display: grid;
  position: relative;
  color: var(--tm-copper) !important;
}

.faq-premium {
  background: #f1ebe3 !important;
  padding-top: 100px !important;
  padding-bottom: 110px !important;
}

.faq-premium .faq-grid {
  gap: 90px;
}

.faq-premium .faq-intro {
  background: var(--tm-navy);
  color: #fff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 24px 60px #06182d29;
}

.faq-premium .faq-intro h2 {
  color: var(--tm-ivory) !important;
}

.faq-premium .faq-intro p {
  color: #b8c5d0 !important;
}

.faq-premium .faq-intro .btn {
  color: #fff !important;
  border-color: #fff3 !important;
}

.faq-premium .accordion {
  background: #fff;
  border-radius: 26px;
  padding: 10px 28px;
  box-shadow: 0 18px 48px #06182d14;
}

.faq-premium .accordion details {
  border-color: #06182d1a !important;
}

.faq-premium .accordion summary:after {
  background: var(--tm-navy) !important;
  color: #fff !important;
}

.faq-premium .accordion details[open] summary:after {
  background: var(--tm-copper) !important;
}

.contact-premium {
  background: var(--tm-cream) !important;
  padding-bottom: 72px !important;
}

.contact-premium .contact-grid {
  align-items: stretch;
}

.contact-premium .contact-copy {
  color: #fff;
  background: linear-gradient(145deg, #0b2440, #06182d);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 24px 62px #06182d2e;
}

.contact-premium .contact-copy h2 {
  color: var(--tm-ivory) !important;
}

.contact-premium .contact-copy > p {
  color: #bcc8d1 !important;
}

.contact-premium .contact-points > * > span {
  color: var(--tm-copper) !important;
  background: #dd8f5a26 !important;
}

.contact-premium .contact-points small {
  color: #9fb0bd !important;
}

.contact-premium .contact-points b {
  color: #fff !important;
}

.contact-premium .contact-form {
  border-radius: 28px !important;
  box-shadow: 0 22px 60px #06182d1a !important;
}

.map-premium {
  background: var(--tm-cream) !important;
  padding: 0 0 110px !important;
}

.map-premium .map-card {
  border-radius: 28px !important;
  box-shadow: 0 24px 65px #06182d1c !important;
}

.map-premium .map-card__copy {
  background: #fff !important;
}

.final-cta {
  background: var(--tm-navy) !important;
}

.final-cta span {
  color: var(--tm-copper) !important;
}

.final-cta h2 {
  color: var(--tm-ivory) !important;
}

.footer-minimal {
  color: #aebbc6;
  padding: 78px 0 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #03111f, #06182d) !important;
}

.footer-minimal:before {
  content: "";
  filter: blur(4px);
  background: #dd8f5a17;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  top: -180px;
  right: -220px;
}

.footer-minimal > .container {
  position: relative;
}

.footer-minimal__top {
  border-bottom: 1px solid #ffffff1a;
  grid-template-columns: .7fr 1.3fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 55px;
  display: grid;
}

.footer-minimal__brand img {
  width: 245px;
  height: auto;
}

.footer-minimal__brand p {
  color: #aebbc6;
  max-width: 390px;
  margin: 22px 0 0;
}

.footer-minimal__cta > span {
  color: var(--tm-copper);
  letter-spacing: .15em;
  font-size: .68rem;
  font-weight: 900;
}

.footer-minimal__cta h2 {
  color: #fff;
  letter-spacing: -.05em;
  max-width: 820px;
  margin: 7px 0 24px;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.03;
}

.footer-minimal__nav {
  border-bottom: 1px solid #ffffff14;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 34px 0;
  display: grid;
}

.footer-minimal__nav nav {
  flex-wrap: wrap;
  gap: 26px;
  display: flex;
}

.footer-minimal__nav a {
  color: #c8d1d8;
  font-size: .84rem;
}

.footer-minimal__nav a:hover {
  color: var(--tm-copper);
}

.footer-minimal__contact {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: .8rem;
  display: flex;
}

.footer-minimal__bottom {
  color: #7f919f;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 22px;
  font-size: .72rem;
  display: flex;
}

.footer-minimal__bottom > div {
  gap: 20px;
  display: flex;
}

.footer-minimal__bottom a:hover {
  color: var(--tm-copper);
}

.whatsapp-premium {
  color: #fff !important;
  background: #25d366 !important;
  border: 0 !important;
  border-radius: 18px !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 58px !important;
  height: 58px !important;
  padding: 0 18px 0 14px !important;
  font-weight: 850 !important;
  transition: all .22s !important;
  bottom: 22px !important;
  right: 22px !important;
  box-shadow: 0 16px 42px #25d3664d !important;
}

.whatsapp-premium:hover {
  background: #20bd5a !important;
  transform: translateY(-3px) scale(1.02) !important;
}

.whatsapp-premium svg {
  fill: #fff !important;
  width: 30px !important;
  height: 30px !important;
}

.whatsapp-premium span {
  display: inline !important;
}

@media (width <= 1020px) {
  .services-premium__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-premium__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-premium--wide {
    grid-column: span 1;
  }

  .seo-tech__logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-minimal__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-minimal__nav {
    grid-template-columns: 1fr;
  }

  .footer-minimal__contact {
    justify-content: flex-start;
  }
}

@media (width <= 700px) {
  .tm-metrics__panel {
    grid-template-columns: 1fr 1fr !important;
  }

  .tm-metric {
    min-height: 128px !important;
    padding: 22px 18px !important;
  }

  .tm-metric strong {
    font-size: 1.42rem !important;
  }

  .brand-marquee {
    grid-template-columns: 1fr;
  }

  .brand-marquee__arrow {
    display: none;
  }

  .brand-logo-card {
    width: 180px;
    height: 110px;
  }

  .services-premium {
    padding: 78px 0 !important;
  }

  .services-premium__heading h2 {
    font-size: 2.55rem;
  }

  .services-premium__grid {
    grid-template-columns: 1fr;
  }

  .service-premium {
    min-height: 0;
  }

  .service-premium__media, .service-premium--wide .service-premium__media {
    height: 230px;
  }

  .seo-tech__logos {
    grid-template-columns: 1fr 1fr;
  }

  .seo-tech figure {
    text-align: center;
    flex-direction: column;
  }

  .seo-tech img {
    max-width: 74px;
  }

  .process-premium .process-grid:before {
    display: none;
  }

  .process-premium .process-step > span {
    margin: 0 0 16px;
  }

  .faq-premium .faq-grid {
    gap: 24px;
  }

  .faq-premium .faq-intro {
    padding: 26px;
  }

  .faq-premium .accordion {
    padding: 8px 20px;
  }

  .contact-premium .contact-copy {
    padding: 28px;
  }

  .footer-minimal {
    padding-top: 58px;
  }

  .footer-minimal__top {
    gap: 30px;
  }

  .footer-minimal__brand img {
    width: 210px;
  }

  .footer-minimal__nav nav {
    gap: 16px;
  }

  .footer-minimal__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-premium {
    border-radius: 50% !important;
    justify-content: center !important;
    width: 58px !important;
    padding: 0 !important;
  }

  .whatsapp-premium span {
    display: none !important;
  }
}

:root {
  --navy: #06182d !important;
  --navy-2: #0b2440 !important;
  --teal: #dd8f5a !important;
  --cyan: #e7a77d !important;
  --orange: #dd8f5a !important;
  --orange-dark: #c97843 !important;
  --ink: #172638 !important;
  --muted: #687482 !important;
  --line: #06182d1f !important;
  --soft: #f1ebe3 !important;
  --white: #fff !important;
}

.portfolio-section {
  background: linear-gradient(145deg, #071a31, #0b2440) !important;
}

.portfolio-heading h2, .portfolio-heading p {
  color: #f7f1e9 !important;
}

.portfolio-mini-label {
  color: #d0d8df !important;
}

.plans-section {
  background: #f7f1e9 !important;
}

.price-card--featured {
  border-color: #dd8f5a !important;
}

.popular {
  background: #dd8f5a !important;
}

.tm-clients--premium {
  overflow: hidden;
  background: #f2ece4 !important;
  padding: 64px 0 72px !important;
}

.tm-clients__heading {
  max-width: 780px !important;
  margin-bottom: 28px !important;
}

.tm-clients__heading h2 {
  font-size: clamp(1.9rem, 2.65vw, 2.85rem) !important;
}

.tm-clients__heading p {
  font-size: .96rem !important;
}

.brand-marquee {
  grid-template-columns: 42px 1fr 42px !important;
  gap: 10px !important;
}

.brand-marquee__viewport {
  scroll-snap-type: none !important;
  border-radius: 18px !important;
  overflow-x: auto !important;
}

.brand-marquee__track {
  gap: 12px !important;
  padding: 8px 2px !important;
}

.brand-logo-card {
  background: #fff !important;
  border: 0 !important;
  border-radius: 18px !important;
  flex: 0 0 190px !important;
  width: 190px !important;
  height: 108px !important;
  padding: 18px 22px !important;
  box-shadow: 0 8px 24px #06182d11 !important;
}

.brand-logo-card img {
  filter: none !important;
  max-width: 150px !important;
  max-height: 64px !important;
}

.brand-marquee__arrow {
  border: 0 !important;
  width: 40px !important;
  height: 40px !important;
  box-shadow: 0 7px 20px #06182d14 !important;
}

.services-premium {
  padding: 92px 0 100px !important;
}

.services-premium__heading {
  grid-template-columns: 1fr .55fr !important;
  gap: 46px !important;
  margin-bottom: 36px !important;
}

.services-premium__heading h2 {
  max-width: 850px !important;
  font-size: clamp(2.25rem, 3.65vw, 4rem) !important;
}

.services-premium__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.service-premium, .service-premium--wide {
  border-radius: 22px !important;
  grid-column: auto !important;
  min-height: 0 !important;
}

.service-premium__media {
  aspect-ratio: 1200 / 740 !important;
  background: #071a2f !important;
  justify-content: center !important;
  align-items: center !important;
  height: auto !important;
  display: flex !important;
  overflow: hidden !important;
}

.service-premium__media img {
  object-fit: contain !important;
  object-position: center !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transform: none !important;
}

.service-premium:hover .service-premium__media img {
  transform: scale(1.01) !important;
}

.service-premium__body {
  padding: 22px 22px 24px !important;
  display: block !important;
}

.service-premium__top {
  grid-template-columns: auto 1fr !important;
  align-items: start !important;
  gap: 14px !important;
  display: grid !important;
}

.service-premium h3 {
  margin-top: 4px !important;
  font-size: 1.22rem !important;
}

.service-premium p {
  font-size: .84rem !important;
}

.service-premium__details {
  background: #ffffff0b;
  border: 1px solid #ffffff14;
  border-radius: 14px;
  margin: 16px 0 0;
  padding: 14px 16px;
}

.service-premium__details[hidden] {
  display: none !important;
}

.service-premium__details ul {
  color: #b8c5d0;
  margin: 0;
  padding-left: 18px;
  font-size: .78rem;
  line-height: 1.6;
}

.service-premium__actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

.service-premium__more, .service-premium__primary, .service-premium__whatsapp {
  cursor: pointer;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 13px;
  font-size: .72rem;
  font-weight: 850;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.service-premium__more {
  color: #fff;
  background: none;
  border: 1px solid #ffffff2b;
}

.service-premium__more:hover {
  border-color: var(--tm-copper);
  color: var(--tm-copper);
}

.service-premium__primary {
  border: 1px solid var(--tm-copper);
  background: var(--tm-copper);
  color: #fff;
}

.service-premium__primary:hover {
  background: var(--tm-copper-2);
}

.service-premium__whatsapp {
  color: #dfe8ee;
  background: #ffffff0f;
  border: 1px solid #ffffff24;
}

.service-premium__whatsapp:hover {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

.seo-tech {
  margin-top: 54px !important;
  padding-top: 28px !important;
}

.seo-tech__logos {
  grid-template-columns: repeat(4, 1fr) !important;
  align-items: center !important;
  gap: 24px !important;
  display: grid !important;
}

.seo-tech figure {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  flex-direction: column !important;
  gap: 10px !important;
  min-height: 96px !important;
  padding: 4px !important;
  display: flex !important;
}

.seo-tech img {
  width: auto !important;
  max-width: 160px !important;
  height: auto !important;
  max-height: 74px !important;
}

.seo-tech figcaption {
  color: #c9d2da !important;
  font-size: .76rem !important;
}

.final-cta {
  color: var(--tm-navy) !important;
  background: #f2ece4 !important;
  padding: 70px 0 !important;
}

.final-cta__inner {
  background: linear-gradient(135deg, #0b2440, #06182d) !important;
  border-radius: 30px !important;
  padding: 48px 52px !important;
  box-shadow: 0 24px 70px #06182d29 !important;
}

.final-cta h2 {
  font-size: clamp(2rem, 3vw, 3.3rem) !important;
}

.final-cta__whatsapp {
  color: #fff !important;
  background: none !important;
  border: 1px solid #ffffff2e !important;
  border-radius: 999px !important;
  padding: 11px 16px !important;
  text-decoration: none !important;
}

.footer-minimal {
  padding: 46px 0 18px !important;
}

.footer-minimal:before {
  width: 300px !important;
  height: 300px !important;
  top: -160px !important;
  right: -160px !important;
}

.footer-minimal__top {
  grid-template-columns: .8fr 1.2fr !important;
  gap: 54px !important;
  padding-bottom: 34px !important;
}

.footer-minimal__brand img {
  width: 220px !important;
}

.footer-minimal__brand p {
  margin-top: 16px !important;
  font-size: .88rem !important;
  line-height: 1.55 !important;
}

.footer-minimal__cta h2 {
  max-width: 700px !important;
  margin-bottom: 18px !important;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem) !important;
}

.footer-minimal__nav {
  padding: 24px 0 !important;
}

.footer-minimal__bottom {
  padding-top: 16px !important;
}

.footer-minimal__socials {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
  display: flex;
}

.footer-minimal__socials a {
  color: #d2d9df;
  border: 1px solid #ffffff1f;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  font-size: .72rem;
  display: inline-flex;
}

.footer-minimal__socials a:hover {
  border-color: var(--tm-copper);
  color: #fff;
  background: #dd8f5a14;
}

.footer-minimal__socials span {
  min-width: 24px;
  height: 24px;
  color: var(--tm-copper);
  background: #dd8f5a1f;
  border-radius: 50%;
  place-items: center;
  font-size: .68rem;
  font-weight: 900;
  display: grid;
}

.footer-minimal__socials b {
  font-weight: 750;
}

.seo-premium {
  padding-top: 96px !important;
}

.process-premium {
  border-top: 1px solid #06182d0f;
  padding-top: 96px !important;
  padding-bottom: 100px !important;
}

.faq-premium, .contact-premium {
  padding-top: 96px !important;
}

.map-premium {
  padding-top: 18px !important;
}

@media (width <= 1020px) {
  .services-premium__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .services-premium__heading {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .seo-tech__logos {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-minimal__top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media (width <= 700px) {
  .tm-clients--premium {
    padding: 50px 0 58px !important;
  }

  .brand-marquee {
    grid-template-columns: 1fr !important;
  }

  .brand-logo-card {
    flex-basis: 158px !important;
    width: 158px !important;
    height: 96px !important;
  }

  .brand-logo-card img {
    max-width: 128px !important;
    max-height: 56px !important;
  }

  .services-premium {
    padding: 72px 0 78px !important;
  }

  .services-premium__grid {
    grid-template-columns: 1fr !important;
  }

  .service-premium__body {
    padding: 20px !important;
  }

  .service-premium__actions {
    gap: 7px;
  }

  .service-premium__more, .service-premium__primary, .service-premium__whatsapp {
    flex: auto;
  }

  .seo-tech__logos {
    grid-template-columns: 1fr 1fr !important;
  }

  .seo-tech img {
    max-width: 120px !important;
    max-height: 60px !important;
  }

  .final-cta {
    padding: 48px 0 !important;
  }

  .final-cta__inner {
    border-radius: 24px !important;
    padding: 32px 24px !important;
  }

  .footer-minimal {
    padding-top: 38px !important;
  }

  .footer-minimal__brand img {
    width: 195px !important;
  }

  .footer-minimal__nav {
    padding: 20px 0 !important;
  }

  .footer-minimal__contact {
    gap: 10px !important;
  }

  .footer-minimal__bottom > div {
    flex-wrap: wrap !important;
  }
}

.tm-metrics__panel {
  width: min(100%, 1320px) !important;
  margin: 0 auto !important;
}

.tm-metric {
  gap: 8px !important;
  min-height: 175px !important;
  padding: 22px 18px !important;
}

.tm-metric strong {
  gap: 4px !important;
  font-size: 2.15rem !important;
}

.tm-metric strong > span[data-counter], .tm-metric strong > em {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  color: #fff !important;
  margin: 0 !important;
  display: inline-block !important;
}

.tm-metric > div > span:last-child {
  margin-top: 8px !important;
}

.tm-metric__icon {
  flex-basis: 58px !important;
  width: 58px !important;
  height: 58px !important;
}

.tm-metric__icon svg {
  width: 52px !important;
  height: 52px !important;
}

@media (width <= 700px) {
  .tm-metric {
    min-height: 165px !important;
    padding: 20px 12px !important;
  }

  .tm-metric strong {
    font-size: 1.75rem !important;
  }
}

.tm-metric.is-counting strong {
  animation: 1.6s cubic-bezier(.22, 1, .36, 1) both tmNumberEntrance;
}

.tm-metric.is-counting .tm-metric__icon {
  animation: .9s cubic-bezier(.22, 1, .36, 1) both tmIconEntrance;
}

@keyframes tmNumberEntrance {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(18px) scale(.72);
  }

  55% {
    opacity: 1;
    filter: blur();
    text-shadow: 0 0 25px #dd8f5abf;
    transform: translateY(-3px) scale(1.1);
  }

  100% {
    opacity: 1;
    filter: blur();
    text-shadow: 0 0 12px #ffffff29;
    transform: translateY(0) scale(1);
  }
}

@keyframes tmIconEntrance {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(.75);
  }

  65% {
    opacity: 1;
    filter: drop-shadow(0 0 12px #dd8f5a99);
    transform: translateY(-3px) scale(1.08);
  }

  100% {
    opacity: 1;
    filter: none;
    transform: translateY(0) scale(1);
  }
}

.price-card {
  flex-direction: column;
  display: flex;
}

.price-card__body {
  flex: 1;
  height: auto;
}

.regular-price {
  color: var(--muted);
  margin-top: 18px;
  font-size: .84rem;
  font-weight: 750;
}

.regular-price del {
  color: #7b8994;
  text-decoration-color: #e15f4f;
  text-decoration-thickness: 2px;
}

.offer-price {
  align-items: flex-end;
  margin-top: 7px;
}

.offer-price em {
  color: var(--orange-dark);
  margin: 0 0 8px 10px;
  font-size: .88rem;
  font-style: normal;
  font-weight: 950;
}

.offer-urgency {
  color: #9c5315;
  text-align: center;
  background: linear-gradient(135deg, #fff6e9, #fffaf4);
  border: 1px solid #e893326b;
  border-radius: 14px;
  margin-top: 15px;
  padding: 12px 14px;
  box-shadow: 0 10px 28px #e893321f;
}

.offer-urgency > strong {
  letter-spacing: .08em;
  font-size: .69rem;
  display: block;
}

.offer-countdown {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 950;
}

.offer-countdown.is-expired {
  color: #9c5315;
  font-size: .78rem;
}

.price-card--dark .regular-price, .price-card--dark .regular-price del {
  color: #b9c8d3;
}

.price-card--dark .offer-price em {
  color: #ffd5a8;
}

.price-card--dark .offer-urgency {
  color: #ffd5a8;
  background: #e8933221;
  border-color: #e8933275;
}

.price-card--dark .offer-countdown {
  color: #fff;
}

@media (width <= 760px) {
  .offer-price b {
    font-size: 3.7rem;
  }

  .offer-urgency {
    padding: 11px 12px;
  }
}

.whatsapp-float, .whatsapp-premium {
  animation: 2.5s infinite whatsappCircularPulse;
  z-index: 9999 !important;
  color: #fff !important;
  background: #25d366 !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  width: 68px !important;
  min-width: 68px !important;
  height: 68px !important;
  padding: 0 !important;
  transition: transform .25s, background .25s !important;
  display: flex !important;
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  box-shadow: 0 15px 38px #0000003d, 0 0 #25d36659 !important;
}

.whatsapp-float svg, .whatsapp-premium svg {
  fill: #fff !important;
  width: 36px !important;
  height: 36px !important;
}

.whatsapp-float span, .whatsapp-premium span {
  display: none !important;
}

.whatsapp-float:hover, .whatsapp-premium:hover {
  background: #1ebe5b !important;
  transform: translateY(-4px) scale(1.06) !important;
}

@keyframes whatsappCircularPulse {
  0%, 100% {
    box-shadow: 0 15px 38px #0000003d, 0 0 #25d36659;
  }

  50% {
    box-shadow: 0 15px 38px #0000003d, 0 0 0 12px #25d36600;
  }
}

@media (width <= 700px) {
  .whatsapp-float, .whatsapp-premium {
    width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    bottom: 16px !important;
    right: 16px !important;
  }

  .whatsapp-float svg, .whatsapp-premium svg {
    width: 31px !important;
    height: 31px !important;
  }

  .tm-hero, .tm-hero__content, .tm-hero .hero-media__slides, .tm-hero .hero-media__slide {
    height: 760px !important;
    min-height: 760px !important;
  }

  .tm-hero .hero-media__slide img.hero-media__background, .tm-hero .hero-media__slide video.hero-media__background {
    object-fit: cover !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    position: absolute !important;
    inset: 0 !important;
    transform: none !important;
  }

  .tm-hero .hero-slide--design img.hero-media__background {
    object-position: 66% center !important;
  }

  .tm-hero .hero-slide--responsive img.hero-media__background {
    object-position: 70% center !important;
  }

  .tm-hero .hero-slide--analytics img.hero-media__background {
    object-position: 72% center !important;
  }

  .tm-hero .hero-slide--video video.hero-media__background {
    object-position: center center !important;
  }

  .tm-hero__overlay {
    background: linear-gradient(#0311205c 0%, #031120b3 24%, #031120f0 46%, #031120fa 100%) !important;
  }
}

.portfolio-grid .project-card__img {
  aspect-ratio: 1000 / 764 !important;
  background: #e9edf0 !important;
}

.portfolio-grid .project-card__img img {
  object-fit: contain !important;
  object-position: center top !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

.portfolio-grid .project-card:hover .project-card__img img {
  transform: none !important;
}

.portfolio-grid .project-card__tag, .portfolio-grid .project-card__preview {
  white-space: nowrap !important;
  width: auto !important;
  max-width: calc(50% - 24px) !important;
  padding: 7px 12px !important;
  line-height: 1.2 !important;
}

.portfolio-grid .project-card__tag {
  left: 14px !important;
  right: auto !important;
}

.portfolio-grid .project-card__preview {
  color: var(--navy) !important;
  background: #fffffff0 !important;
  left: auto !important;
  right: 14px !important;
  box-shadow: 0 5px 18px #0311201f !important;
}

@media (width <= 700px) {
  .portfolio-grid .project-card__img {
    aspect-ratio: 1000 / 764 !important;
  }

  .portfolio-grid .project-card__tag {
    display: none !important;
  }

  .portfolio-grid .project-card__preview {
    max-width: none !important;
    padding: 6px 10px !important;
    font-size: .64rem !important;
    top: 10px !important;
    left: auto !important;
    right: 10px !important;
  }
}

.portfolio-grid .project-card__tag, .portfolio-grid .project-card__preview, .portfolio-grid .project-card__overlay {
  display: none !important;
}

.portfolio-grid .project-card__img {
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.portfolio-grid .project-card__img img {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.portfolio-grid .project-card__img {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
}

.portfolio-grid .project-card__img img {
  object-fit: cover !important;
  object-position: center top !important;
  width: 100% !important;
  height: 100% !important;
}

@media (width <= 700px) {
  .portfolio-grid .project-card__img {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
  }
}

.portfolio-grid .project-card:nth-child(2) .project-card__img {
  background: #f7f3f1 !important;
}

.portfolio-grid .project-card:nth-child(2) .project-card__img img {
  object-fit: contain !important;
  object-position: center center !important;
  transform-origin: center !important;
  transform: none !important;
}

.portfolio-grid .project-card:nth-child(2):hover .project-card__img img {
  transform: none !important;
}

.portfolio-more {
  justify-content: center;
  margin-top: 30px;
  display: flex;
}

.portfolio-more__button {
  color: #fff;
  background: #ffffff1a;
  border: 1px solid #ffffff57;
  min-width: 154px;
  box-shadow: 0 12px 32px #0000001f;
}

.portfolio-more__button:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.portfolio-more__icon {
  margin-left: 8px;
  display: inline-block;
}

.project-card--extra:not([hidden]) {
  animation: .48s both portfolio-card-in;
}

.project-card--extra:nth-last-child(2) {
  animation-delay: 70ms;
}

.project-card--extra:last-child {
  animation-delay: .14s;
}

@keyframes portfolio-card-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-card--extra:not([hidden]) {
    animation: none;
  }
}

.portfolio-grid.is-expanded .project-card--extra:last-of-type {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 13px);
}

.portfolio-more__button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.portfolio-more__button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

@media (width <= 700px) {
  .portfolio-grid.is-expanded .project-card--extra:last-of-type {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .portfolio-more {
    width: 100%;
    margin-top: 24px;
  }

  .portfolio-more__button {
    width: min(100%, 280px);
    min-height: 48px;
  }

  .project-card--extra .project-card__body {
    grid-template-columns: 1fr;
  }

  .project-card--extra .project-card__actions {
    justify-content: space-between;
    width: 100%;
  }
}

.tm-chatbot {
  z-index: 9998;
  font-family: inherit;
  position: fixed;
  bottom: 104px;
  right: 24px;
}

.tm-chatbot__launcher {
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  border: 1px solid #ffffff4d;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 17px 8px 10px;
  font-size: .82rem;
  font-weight: 850;
  transition: transform .25s, background .25s;
  display: flex;
  box-shadow: 0 16px 42px #06182d4d;
}

.tm-chatbot__launcher:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.tm-chatbot__launcher svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8px;
  width: 32px;
  height: 32px;
}

.tm-chatbot__launcher circle {
  fill: currentColor;
  stroke: none;
}

.tm-chatbot__panel {
  width: min(370px, 100vw - 32px);
  color: var(--navy);
  background: #fff;
  border: 1px solid #071a331f;
  border-radius: 24px;
  animation: .25s both tm-chatbot-in;
  position: absolute;
  bottom: 66px;
  right: 0;
  overflow: hidden;
  box-shadow: 0 24px 70px #06182d47;
}

.tm-chatbot__header {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  display: flex;
}

.tm-chatbot__avatar {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 50%;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  font-size: .72rem;
  font-weight: 900;
  display: grid;
}

.tm-chatbot__header > div:nth-child(2) {
  flex: 1;
  display: grid;
}

.tm-chatbot__header strong {
  font-size: .88rem;
}

.tm-chatbot__header span {
  color: #ffffffb8;
  font-size: .68rem;
}

.tm-chatbot__header i {
  background: #45d483;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  display: inline-block;
}

.tm-chatbot__close {
  color: #fff;
  cursor: pointer;
  background: #ffffff1a;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 1.35rem;
  display: grid;
}

.tm-chatbot__messages {
  background: #f5f8fa;
  flex-direction: column;
  gap: 10px;
  min-height: 130px;
  max-height: 265px;
  padding: 16px;
  display: flex;
  overflow-y: auto;
}

.tm-chatbot__message {
  white-space: pre-line;
  border-radius: 15px;
  max-width: 88%;
  padding: 10px 12px;
  font-size: .78rem;
  line-height: 1.5;
}

.tm-chatbot__message--bot {
  background: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 5px 16px #071a3312;
}

.tm-chatbot__message--user {
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.tm-chatbot__message a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
}

.tm-chatbot__options {
  background: #fff;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 14px 4px;
  display: flex;
}

.tm-chatbot__options button {
  color: var(--navy);
  cursor: pointer;
  background: #fff;
  border: 1px solid #d9e3e7;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .68rem;
  font-weight: 800;
}

.tm-chatbot__options button:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.tm-chatbot__form {
  background: #fff;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 11px 14px 7px;
  display: grid;
}

.tm-chatbot__form input {
  min-width: 0;
  height: 42px;
  color: var(--navy);
  font: inherit;
  border: 1px solid #d9e3e7;
  border-radius: 12px;
  padding: 0 13px;
  font-size: .76rem;
}

.tm-chatbot__form input:focus {
  border-color: var(--teal);
  outline: 3px solid #0d7f8a1f;
}

.tm-chatbot__form button {
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
}

.tm-chatbot__note {
  color: var(--muted);
  text-align: center;
  background: #fff;
  padding: 0 14px 11px;
  font-size: .59rem;
  display: block;
}

@keyframes tm-chatbot-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (width <= 700px) {
  .tm-chatbot {
    bottom: 92px;
    right: 14px;
  }

  .tm-chatbot__launcher {
    justify-content: center;
    width: 52px;
    padding: 9px;
  }

  .tm-chatbot__launcher span {
    display: none;
  }

  .tm-chatbot__panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 110px);
    position: fixed;
    bottom: 86px;
    right: 12px;
  }

  .tm-chatbot__messages {
    max-height: min(250px, 34vh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tm-chatbot__panel {
    animation: none;
  }
}

.tm-chatbot .tm-chatbot__form {
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 11px 14px 7px !important;
  display: flex !important;
}

.tm-chatbot .tm-chatbot__form input#tm-chatbot-input {
  appearance: none;
  width: auto !important;
  min-width: 0 !important;
  height: 44px !important;
  color: var(--navy) !important;
  box-shadow: none !important;
  background: #fff !important;
  border: 1px solid #cbd8de !important;
  border-radius: 13px !important;
  flex: auto !important;
  margin: 0 !important;
  padding: 0 14px !important;
  display: block !important;
}

.tm-chatbot .tm-chatbot__form input#tm-chatbot-input::placeholder {
  color: #718093 !important;
  opacity: 1 !important;
}

.tm-chatbot .tm-chatbot__form input#tm-chatbot-input:focus {
  border-color: var(--teal) !important;
  outline: 3px solid #0d7f8a24 !important;
}

.tm-chatbot .tm-chatbot__form button[type="submit"] {
  background: var(--teal) !important;
  color: #fff !important;
  border-radius: 13px !important;
  flex: 0 0 44px !important;
  place-items: center !important;
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1rem !important;
  display: grid !important;
}

@property --nl-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 135deg;
}

.nl-title {
  max-width: 920px;
  color: var(--navy);
  letter-spacing: -.047em;
  text-wrap: balance;
  margin-top: 14px;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  font-weight: 760;
  line-height: 1.04;
}

.nl-accent {
  color: var(--copper-dark, var(--orange-dark));
  white-space: normal;
  display: inline;
  position: relative;
}

.nl-accent:after {
  z-index: -1;
  background: color-mix(in srgb, var(--copper, var(--orange)) 30%, transparent);
  content: "";
  transform-origin: 0;
  border-radius: 999px;
  height: .19em;
  transition: transform .65s cubic-bezier(.2, .75, .25, 1);
  position: absolute;
  bottom: .01em;
  left: -.05em;
  right: -.05em;
  transform: scaleX(.35);
}

.reveal.is-visible .nl-accent:after, .nl-title:hover .nl-accent:after {
  transform: scaleX(1);
}

.nl-copy {
  max-width: 650px;
  color: var(--muted);
  text-wrap: pretty;
  font-size: clamp(.98rem, 1.18vw, 1.1rem);
  line-height: 1.75;
}

:is(.services-premium__heading, .portfolio-heading, .section-heading, .contact-copy, .map-card__copy) .kicker, .tm-clients__heading > span:first-child {
  letter-spacing: .16em;
}

.kicker {
  align-items: center;
  gap: 9px;
  display: inline-flex;
}

.kicker:before {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 14%, transparent);
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.tm-clients--premium {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 20%, #de874e17, transparent 26%),
    radial-gradient(circle at 88% 80%, #0d7f8a12, transparent 25%),
    var(--cream, #f7f1e9) !important;
}

.tm-clients--premium:before {
  z-index: -1;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, #0000 0 47%, #ffffff8c 50%, #0000 53%) 0 0 / 220% 100%;
  animation: 14s ease-in-out infinite nl-soft-light;
  position: absolute;
  inset: 0;
}

.tm-clients__heading {
  max-width: 980px;
  margin-inline: auto;
}

.tm-clients__heading .nl-title {
  max-width: 780px;
  margin: 15px auto 18px;
}

.tm-clients__heading .nl-copy {
  margin-inline: auto;
}

.brand-logo-card {
  backdrop-filter: blur(14px);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  background: #ffffffb8 !important;
  border: 1px solid #071a3313 !important;
  box-shadow: 0 12px 36px #071a3311 !important;
}

.brand-logo-card:hover {
  transform: translateY(-6px);
  border-color: #c8731740 !important;
  box-shadow: 0 22px 50px #071a331c !important;
}

.services-premium, .portfolio-section {
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.services-premium:before, .portfolio-section:before {
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#ffffff06 1px, #0000 1px), linear-gradient(90deg, #ffffff06 1px, #0000 1px);
  background-size: 52px 52px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#000, #0000 82%);
}

.services-premium__heading, .portfolio-heading {
  border-top: 1px solid #f7f1e929;
  padding-top: 26px;
  padding-bottom: clamp(44px, 6vw, 70px);
  container-type: inline-size;
}

:is(.services-premium__heading, .portfolio-heading) .nl-title {
  color: var(--ivory, #fff);
}

:is(.services-premium__heading, .portfolio-heading) .nl-accent {
  color: #ff9a61;
}

:is(.services-premium__heading, .portfolio-heading) .nl-accent:after {
  background: #ff9a6133;
}

:is(.services-premium__heading, .portfolio-heading) .nl-copy {
  color: #f7f1e9b3 !important;
}

.service-premium, .project-card {
  transform: translateZ(0);
  transition: transform .38s cubic-bezier(.2, .75, .25, 1), box-shadow .38s, border-color .38s !important;
}

.service-premium:hover, .project-card:hover {
  border-color: #ff9a6147 !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 70px #00000038 !important;
}

.plans-section {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #de874e1c, transparent 29%),
    var(--cream, #f7f1e9) !important;
}

.plans-section .section-heading, .process-premium .section-heading {
  max-width: 1000px;
  margin-inline: auto;
}

.plans-section .nl-title, .process-premium .nl-title, .plans-section .nl-copy, .process-premium .nl-copy {
  margin-inline: auto;
}

.price-card {
  border: 1px solid #071a3317 !important;
  transition: transform .35s, box-shadow .35s, border-color .35s !important;
  box-shadow: 0 18px 50px #071a3314 !important;
}

.price-card:hover {
  transform: translateY(-9px);
  border-color: #c8731740 !important;
  box-shadow: 0 30px 75px #071a3324 !important;
}

.price-card--featured {
  isolation: isolate;
  position: relative;
}

.price-card--featured:before {
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from var(--nl-angle), var(--copper, #de874e), transparent 18%, transparent 78%, var(--teal));
  content: "";
  pointer-events: none;
  padding: 1px;
  animation: 12s linear infinite nl-border-turn;
  position: absolute;
  inset: -1px;
}

.process-premium {
  position: relative;
  background: radial-gradient(circle at 90% 12%, #0d7f8a14, transparent 24%),
    var(--cream, #f7f1e9) !important;
}

.process-grid {
  counter-reset: nl-step;
}

.process-step {
  backdrop-filter: blur(14px);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
  background: #ffffffc7 !important;
  border: 1px solid #071a3314 !important;
  box-shadow: 0 15px 45px #071a3312 !important;
}

.process-step:after {
  content: "";
  background: radial-gradient(circle, #de874e24, #0000 68%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  transition: transform .4s;
  position: absolute;
  bottom: -48px;
  right: -38px;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: #0d7f8a33 !important;
  box-shadow: 0 25px 60px #071a331f !important;
}

.process-step:hover:after {
  transform: scale(1.45);
}

.contact-premium .contact-copy {
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.contact-premium .contact-copy:before {
  z-index: -1;
  content: "";
  background: radial-gradient(circle, #0d7f8a33, #0000 68%);
  border-radius: 50%;
  width: 330px;
  height: 330px;
  position: absolute;
  bottom: -130px;
  right: -110px;
}

.contact-copy .nl-title {
  max-width: 570px;
  color: var(--ivory, #fff);
  font-size: clamp(2.7rem, 4.4vw, 4.65rem);
}

.contact-copy .nl-accent, .final-cta .nl-accent {
  color: #ff9a61;
}

.contact-copy .nl-copy {
  color: #f7f1e9bd !important;
}

.contact-form {
  border: 1px solid #071a3314 !important;
  box-shadow: 0 26px 75px #071a331c !important;
}

.contact-form :is(input, select, textarea) {
  transition: border-color .22s, box-shadow .22s, background .22s;
}

.contact-form :is(input, select, textarea):focus {
  border-color: var(--teal) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px #0d7f8a1a !important;
}

.map-card {
  border: 1px solid #071a3314 !important;
  box-shadow: 0 28px 80px #071a3321 !important;
}

.map-card__copy {
  background: radial-gradient(circle at 0 100%, #de874e1c, #0000 35%), #fff !important;
}

.map-card__copy .nl-title {
  max-width: 550px;
  font-size: clamp(2.55rem, 4vw, 4.35rem);
}

.map-embed iframe {
  filter: saturate(.88) contrast(1.03);
  transition: filter .4s;
}

.map-card:hover .map-embed iframe {
  filter: saturate() contrast();
}

.final-cta__inner {
  isolation: isolate;
  border: 1px solid #ffffff1f;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 85px #071a3338;
}

.final-cta__inner:before {
  z-index: -1;
  content: "";
  background: radial-gradient(circle, #de874e40, #0000 68%);
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  top: -190px;
  right: 8%;
}

.final-cta__inner > div:first-child > span {
  color: #ff9a61;
  letter-spacing: .15em;
  font-size: .68rem;
  font-weight: 900;
}

.final-cta .nl-title {
  max-width: 760px;
  color: var(--ivory, #fff);
  margin: 12px 0 0;
  font-size: clamp(2.45rem, 4vw, 4.15rem);
}

@container (width <= 760px) {
  .services-premium__heading, .portfolio-heading {
    grid-template-columns: 1fr;
  }
}

@keyframes nl-soft-light {
  0%, 35% {
    background-position: 180% 0;
  }

  75%, 100% {
    background-position: -80% 0;
  }
}

@keyframes nl-border-turn {
  to {
    --nl-angle: 495deg;
  }
}

@media (width <= 700px) {
  .nl-title, .contact-copy .nl-title, .map-card__copy .nl-title, .final-cta .nl-title {
    letter-spacing: -.042em;
    font-size: clamp(2.2rem, 10.4vw, 3.15rem);
    line-height: 1.03;
  }

  .nl-copy {
    font-size: .97rem;
    line-height: 1.68;
  }

  .tm-clients__heading {
    text-align: left;
  }

  .tm-clients__heading .nl-title, .tm-clients__heading .nl-copy {
    margin-inline: 0;
  }

  .services-premium__heading, .portfolio-heading {
    padding-top: 20px;
    padding-bottom: 38px;
  }

  .service-premium:hover, .project-card:hover, .price-card:hover, .process-step:hover {
    transform: none !important;
  }

  .final-cta__inner > div:first-child > span {
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tm-clients--premium:before, .price-card--featured:before {
    animation: none;
  }

  .nl-accent:after, .brand-logo-card, .service-premium, .project-card, .price-card, .process-step {
    transition: none;
  }
}

.process-premium {
  isolation: isolate;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 13% 14%, #19a9b72e, #0000 29%), radial-gradient(circle at 88% 82%, #de874e2e, #0000 30%), linear-gradient(145deg, #06172c 0%, #09233e 55%, #071a33 100%) !important;
  padding-block: clamp(90px, 10vw, 145px) !important;
}

.process-premium:before {
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#ffffff07 1px, #0000 1px), linear-gradient(90deg, #ffffff07 1px, #0000 1px);
  background-size: 54px 54px;
  border-radius: 0;
  width: auto;
  height: auto;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#0000, #000 18% 82%, #0000);
}

.process-premium:after {
  z-index: -1;
  content: "";
  filter: blur(.2px);
  pointer-events: none;
  background: radial-gradient(#ffffff09, #0000 66%);
  border: 1px solid #ffffff12;
  border-radius: 50%;
  width: min(760px, 76vw);
  height: 320px;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%) rotate(-7deg);
}

.process-premium .section-heading {
  z-index: 2;
  max-width: 930px;
  margin-inline: auto;
  position: relative;
}

.process-premium .kicker {
  color: #ff9a61 !important;
}

.process-premium .nl-title {
  color: #fff;
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(2.75rem, 4.8vw, 5rem);
}

.process-premium .nl-accent {
  color: #ff9a61;
}

.process-premium .nl-accent:after {
  background: #ff9a6138;
}

.process-premium .nl-copy {
  max-width: 670px;
  margin: 22px auto 0;
  color: #eef5fab3 !important;
}

.process-premium .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(58px, 7vw, 82px);
  padding: 0;
  list-style: none;
  display: grid;
  position: relative;
}

.process-premium .process-grid:before {
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, #0000, #19a9b7 14%, #ff9a61 50%, #19a9b7 86%, #0000);
  height: 2px;
  position: absolute;
  top: 30px;
  left: 9%;
  right: 9%;
  box-shadow: 0 0 18px #19a9b78c;
}

.process-premium .process-step {
  z-index: 1;
  backdrop-filter: blur(16px) saturate(130%);
  border-radius: 24px;
  min-height: 290px;
  margin: 0;
  padding: 91px 27px 29px;
  transition: transform .4s cubic-bezier(.2, .75, .25, 1), border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff1c, #ffffff0b) !important;
  border: 1px solid #ffffff1c !important;
  box-shadow: 0 22px 65px #0003 !important;
}

.process-premium .process-step:nth-child(2n) {
  margin-top: 26px;
}

.process-premium .process-step:before {
  content: "";
  opacity: .7;
  background: linear-gradient(90deg, #0000, #19a9b7, #ff9a61, #0000) 0 0 / 200% 100%;
  height: 3px;
  animation: 6s linear infinite process-light-sweep;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.process-premium .process-step:after {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #19a9b733, #0000 67%);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  transition: transform .5s, opacity .5s;
  position: absolute;
  bottom: -75px;
  right: -70px;
}

.process-premium .process-step:hover {
  border-color: #ff9a6161 !important;
  transform: translateY(-10px) !important;
  box-shadow: 0 32px 85px #0000004d, 0 0 34px #19a9b717 !important;
}

.process-premium .process-step:nth-child(2n):hover {
  transform: translateY(16px) !important;
}

.process-premium .process-step:hover:after {
  opacity: 1;
  transform: scale(1.35);
}

.process-premium .process-step > span {
  z-index: 2;
  letter-spacing: .04em;
  border: 1px solid #ff9a617a;
  place-items: center;
  font-weight: 900;
  display: grid;
  color: #ff9a61 !important;
  background: linear-gradient(145deg, #0d3152, #071a33) !important;
  border-radius: 16px !important;
  width: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  font-size: .78rem !important;
  position: absolute !important;
  top: 22px !important;
  left: 26px !important;
  transform: none !important;
  box-shadow: 0 10px 28px #00000052, 0 0 0 5px #ffffff0b !important;
}

.process-step__eyebrow {
  color: #63d1d7;
  letter-spacing: .17em;
  margin-bottom: 9px;
  font-size: .61rem;
  font-weight: 900;
  display: block;
}

.process-premium .process-step h3 {
  z-index: 1;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  position: relative;
  color: #fff !important;
}

.process-premium .process-step p {
  z-index: 1;
  margin: 0;
  font-size: .92rem;
  line-height: 1.72;
  position: relative;
  color: #eef5faad !important;
}

@keyframes process-light-sweep {
  to {
    background-position: -200% 0;
  }
}

@media (width <= 1020px) {
  .process-premium .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .process-premium .process-grid:before {
    display: none;
  }

  .process-premium .process-step:nth-child(2n) {
    margin-top: 0;
  }

  .process-premium .process-step {
    min-height: 265px;
  }
}

@media (width <= 640px) {
  .process-premium {
    padding-block: 82px !important;
  }

  .process-premium .section-heading {
    text-align: left;
  }

  .process-premium .nl-title {
    margin-inline: 0;
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .process-premium .nl-copy {
    margin: 18px 0 0;
  }

  .process-premium .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
    padding-left: 17px;
  }

  .process-premium .process-grid:before {
    background: linear-gradient(#19a9b7, #ff9a61 52%, #19a9b7);
    width: 2px;
    height: auto;
    display: block;
    top: 18px;
    bottom: 18px;
    left: 25px;
  }

  .process-premium .process-step, .process-premium .process-step:nth-child(2n) {
    border-radius: 21px;
    min-height: 0;
    margin: 0 0 0 34px;
    padding: 27px 23px 27px 72px;
  }

  .process-premium .process-step > span {
    border-radius: 15px !important;
    width: 48px !important;
    height: 48px !important;
    top: 24px !important;
    left: -44px !important;
  }

  .process-premium .process-step:hover, .process-premium .process-step:nth-child(2n):hover {
    transform: none !important;
  }
}

.tm-hero {
  aspect-ratio: 1672 / 941 !important;
  background: #f8f4ee !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
}

.tm-hero:before, .tm-hero:after, .tm-hero__overlay, .tm-hero .hero-media__wash {
  content: none !important;
  opacity: 0 !important;
  filter: none !important;
  backdrop-filter: none !important;
  background: none !important;
  display: none !important;
}

.tm-hero__slides, .tm-hero .hero-media__slide {
  background: #f8f4ee !important;
  width: 100% !important;
  height: 100% !important;
  inset: 0 !important;
}

.tm-hero .hero-media__background {
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  width: 100% !important;
  height: 100% !important;
  animation: none !important;
  position: absolute !important;
  inset: 0 !important;
  transform: none !important;
}

.tm-hero__content.container {
  pointer-events: none;
  z-index: 6 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
}

.tm-hero__seo-title {
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.tm-hero__kicker, .tm-hero__copy > h1, .tm-hero__copy > p {
  display: none !important;
}

.tm-hero__actions {
  pointer-events: auto;
  z-index: 7 !important;
  align-items: center !important;
  gap: clamp(10px, 1.25vw, 20px) !important;
  margin: 0 !important;
  display: flex !important;
  position: absolute !important;
  top: auto !important;
  bottom: clamp(12px, 1.8vw, 34px) !important;
  left: 4.8% !important;
}

.tm-hero__actions .btn {
  border-radius: 10px !important;
  min-height: clamp(44px, 4.1vw, 62px) !important;
  padding: 0 clamp(18px, 2.2vw, 34px) !important;
  font-size: clamp(.82rem, 1.05vw, 1.05rem) !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px #05182b2e !important;
}

.tm-hero__actions .tm-btn-secondary {
  color: #fff !important;
  backdrop-filter: none !important;
  background: #071a30 !important;
  border-color: #c98652 !important;
}

.tm-hero__actions .tm-btn-primary {
  color: #fff !important;
  background: #CF752F !important;
  border-color: #CF752F !important;
}
@media (width >= 1021px) {
  .tm-header, .tm-header.is-scrolled {
    height: 92px !important;
    min-height: 92px !important;
    max-height: 92px !important;
    padding: 0 !important;
  }

  .tm-nav-wrap, .tm-header.is-scrolled .tm-nav-wrap {
    height: 92px !important;
    min-height: 92px !important;
    max-height: 92px !important;
  }

  .tm-hero {
    aspect-ratio: auto !important;
    background: linear-gradient(90deg, #f8f4ee 0 50%, #071a30 50% 100%) !important;
    height: calc(100svh - 92px) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 92px) !important;
  }

  .tm-hero__content.container {
    width: min(100%, 177.683svh - 163.47px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}

@media (width >= 701px) and (width <= 1020px) {
  .tm-header, .tm-header.is-scrolled {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    padding: 0 !important;
  }

  .tm-nav-wrap, .tm-header.is-scrolled .tm-nav-wrap {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
  }

  .tm-hero {
    aspect-ratio: auto !important;
    height: calc(100svh - 78px) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 78px) !important;
  }

  .tm-hero__content.container {
    width: min(100%, 177.683svh - 138.59px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}

@media (width <= 700px) {
  .tm-header, .tm-header.is-scrolled {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    padding: 0 !important;
  }

  .tm-nav-wrap, .tm-header.is-scrolled .tm-nav-wrap {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
  }

  .tm-hero {
    aspect-ratio: auto !important;
    background: #071a30 !important;
    height: min(56.2799vw + 132px, 100svh - 78px) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 78px) !important;
  }

  .tm-hero__slides {
    height: auto !important;
    bottom: 132px !important;
  }

  .tm-hero__content.container {
    background: #071a30 !important;
    height: 132px !important;
    padding: 20px 18px !important;
    top: auto !important;
    bottom: 0 !important;
  }

  .tm-hero__actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    display: grid !important;
    position: static !important;
  }

  .tm-hero__actions .btn {
    text-align: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 12px !important;
    font-size: .78rem !important;
  }

  .tm-hero__arrow {
    top: 28.14vw !important;
  }

  .tm-hero__pagination {
    bottom: 140px !important;
  }
}

body section.process-premium > .container {
  width: min(100% - 48px, 1320px);
  padding: clamp(56px, 6vw, 82px) clamp(28px, 4vw, 54px) clamp(44px, 5vw, 64px);
}

body section.process-premium .section-heading {
  max-width: 780px;
}

body section.process-premium .nl-title {
  max-width: 720px;
  font-size: clamp(2.45rem, 3.8vw, 4rem);
}

body section.process-premium .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: clamp(44px, 5vw, 60px);
}

body section.process-premium .process-grid:before {
  display: none !important;
}

body section.process-premium .process-step, body section.process-premium .process-step:nth-child(2n) {
  border-radius: 21px;
  grid-template-rows: 50px auto 1fr;
  grid-template-columns: 50px minmax(0, 1fr);
  align-content: start;
  gap: 14px;
  min-width: 0;
  min-height: 230px;
  margin: 0 !important;
  padding: 22px !important;
  display: grid !important;
}

body section.process-premium .process-step > span {
  grid-area: 1 / 1;
  align-self: center;
  border-radius: 15px !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  position: static !important;
  transform: none !important;
}

body section.process-premium .process-step__eyebrow {
  letter-spacing: .1em;
  text-overflow: clip;
  white-space: normal;
  grid-area: 1 / 2;
  align-self: center;
  min-width: 0;
  margin: 0;
  font-size: .56rem;
  line-height: 1.35;
  overflow: visible;
  color: #69dbe1 !important;
  position: static !important;
}

body section.process-premium .process-step h3 {
  overflow-wrap: anywhere;
  grid-area: 2 / 1 / auto / -1;
  min-width: 0;
  font-size: clamp(1.1rem, 1.25vw, 1.3rem);
  margin: 0 !important;
}

body section.process-premium .process-step p {
  overflow-wrap: anywhere;
  grid-area: 3 / 1 / auto / -1;
  min-width: 0;
  font-size: .88rem;
  line-height: 1.65;
  margin: 0 !important;
}

body section.process-premium .process-step:hover, body section.process-premium .process-step:nth-child(2n):hover {
  transform: translateY(-6px) !important;
}

@media (width <= 1120px) {
  body section.process-premium .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body section.process-premium .process-step, body section.process-premium .process-step:nth-child(2n) {
    min-height: 210px;
  }
}

@media (width <= 640px) {
  body section.process-premium > .container {
    width: min(100% - 20px, 1320px);
    padding: 46px 16px 28px;
  }

  body section.process-premium .nl-title {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  body section.process-premium .process-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 34px;
  }

  body section.process-premium .process-step, body section.process-premium .process-step:nth-child(2n) {
    grid-template-rows: 46px auto auto;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px 13px;
    min-height: 0;
    padding: 19px !important;
  }

  body section.process-premium .process-step > span {
    border-radius: 14px !important;
    width: 46px !important;
    height: 46px !important;
  }

  body section.process-premium .process-step h3, body section.process-premium .process-step p {
    grid-column: 1 / -1;
  }

  body section.process-premium .process-step:hover, body section.process-premium .process-step:nth-child(2n):hover {
    transform: none !important;
  }
}

body section.process-premium {
  color: #fff !important;
  background: #f7f1e9 !important;
  padding: clamp(48px, 7vw, 92px) 0 !important;
}

body section.process-premium > .container {
  isolation: isolate;
  border: 1px solid #ffffff1c;
  border-radius: clamp(28px, 3vw, 44px);
  width: min(100% - 48px, 1500px);
  padding: clamp(64px, 7vw, 100px) clamp(34px, 5vw, 74px) clamp(54px, 6vw, 82px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 36px 100px #071a333d;
  background: radial-gradient(circle at 8% 10%, #19a9b733, #0000 27%), radial-gradient(circle at 92% 88%, #e9955e33, #0000 28%), linear-gradient(145deg, #06172c, #0a2947 58%, #071a33) !important;
}

body section.process-premium > .container:before {
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#ffffff06 1px, #0000 1px), linear-gradient(90deg, #ffffff06 1px, #0000 1px);
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#000, #0000 90%);
}

body section.process-premium .section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

body section.process-premium .kicker {
  color: #ff9a61 !important;
}

body section.process-premium .nl-title {
  max-width: 790px;
  margin: 16px auto 0;
  font-size: clamp(2.65rem, 4.2vw, 4.6rem);
  line-height: 1.04;
  color: #fff !important;
}

body section.process-premium .nl-accent {
  color: #ff9a61 !important;
}

body section.process-premium .nl-copy {
  max-width: 630px;
  margin: 20px auto 0;
  font-size: 1rem;
  color: #bfd0dc !important;
}

body section.process-premium .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin: clamp(52px, 6vw, 72px) 0 0;
  padding: 0;
  display: grid;
  position: relative;
}

body section.process-premium .process-grid:before {
  opacity: .85;
  background: linear-gradient(90deg, #0000, #19a9b7 14%, #ff9a61 50%, #19a9b7 86%, #0000);
  height: 2px;
  top: 27px;
  left: 8%;
  right: 8%;
}

body section.process-premium .process-step, body section.process-premium .process-step:nth-child(2n) {
  border-radius: 23px;
  flex-direction: column;
  min-height: 285px;
  padding: 92px 25px 28px;
  display: flex;
  background: linear-gradient(145deg, #ffffff18, #ffffff09), #0d2945 !important;
  border: 1px solid #ffffff21 !important;
  margin: 0 !important;
  box-shadow: 0 20px 55px #0003 !important;
}

body section.process-premium .process-step > span {
  width: 54px !important;
  height: 54px !important;
  top: 22px !important;
  left: 24px !important;
}

body section.process-premium .process-step__eyebrow {
  letter-spacing: .13em;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  font-size: .59rem;
  line-height: 1.2;
  position: absolute;
  top: 39px;
  left: 92px;
  right: 22px;
  overflow: hidden;
  color: #69dbe1 !important;
}

body section.process-premium .process-step h3 {
  margin: 0 0 14px;
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
  line-height: 1.2;
  color: #fff !important;
}

body section.process-premium .process-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.7;
  color: #c4d2dc !important;
}

body section.process-premium .process-step:hover, body section.process-premium .process-step:nth-child(2n):hover {
  border-color: #ff9a615c !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 70px #0000004d !important;
}

@media (width <= 1100px) {
  body section.process-premium .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body section.process-premium .process-grid:before {
    display: none;
  }
}

@media (width <= 640px) {
  body section.process-premium {
    padding: 28px 0 !important;
  }

  body section.process-premium > .container {
    border-radius: 28px;
    width: min(100% - 24px, 1500px);
    padding: 52px 18px 34px;
  }

  body section.process-premium .section-heading {
    text-align: left;
  }

  body section.process-premium .nl-title {
    margin-inline: 0;
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  body section.process-premium .nl-copy {
    margin-left: 0;
  }

  body section.process-premium .process-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }

  body section.process-premium .process-step, body section.process-premium .process-step:nth-child(2n) {
    min-height: 0;
    padding: 84px 22px 25px;
  }

  body section.process-premium .process-step__eyebrow {
    top: 39px;
    left: 88px;
    right: 18px;
  }

  body section.process-premium .process-step:hover, body section.process-premium .process-step:nth-child(2n):hover {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-premium .process-step:before {
    animation: none;
  }

  .process-premium .process-step, .process-premium .process-step:after {
    transition: none;
  }
}

body section.process-premium {
  background-color: #06172c !important;
  background-image: radial-gradient(circle at 13% 14%, #19a9b72e, #0000 29%), radial-gradient(circle at 88% 82%, #de874e2e, #0000 30%), linear-gradient(145deg, #06172c 0%, #09233e 55%, #071a33 100%) !important;
}

body section.process-premium > .container {
  z-index: 2;
  position: relative;
}

body section.process-premium .nl-title, body section.process-premium .process-step h3 {
  text-shadow: 0 2px 22px #00000029;
  color: #fff !important;
}

body section.process-premium .nl-copy, body section.process-premium .process-step p {
  color: #c7d4df !important;
}

body section.process-premium .process-step {
  background-color: #0d2945 !important;
  background-image: linear-gradient(145deg, #ffffff13, #ffffff05) !important;
  border-color: #ffffff24 !important;
}

body section.process-premium .process-step__eyebrow {
  color: #69dbe1 !important;
}

body section.portfolio-section .portfolio-heading__action {
  backdrop-filter: blur(18px) saturate(130%);
  background: #ffffff17 !important;
  border-color: #ffffff29 !important;
  box-shadow: 0 20px 55px #0000002e !important;
}

body section.portfolio-section .portfolio-mini-label {
  color: #fff !important;
}

body section.portfolio-section .portfolio-heading__action .btn {
  color: #071a33 !important;
  background: #e9955e !important;
  border-color: #e9955e !important;
  box-shadow: 0 15px 38px #e9955e47 !important;
}

body section.portfolio-section .portfolio-heading__action .btn:hover {
  background: #ffab73 !important;
  border-color: #ffab73 !important;
  box-shadow: 0 20px 48px #e9955e66 !important;
}

@media (width <= 640px) {
  body section.process-premium .process-step {
    background-color: #0d2945 !important;
  }

  body section.portfolio-section .portfolio-heading__action {
    padding: 18px !important;
  }
}

@media (width >= 701px) {
  body .tm-hero .hero-media__slide img.hero-media__background, body .tm-hero .hero-media__slide.is-active img.hero-media__background {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
  }
}

@media (width >= 1021px) {
  body .tm-header, body .tm-header.is-scrolled {
    height: 92px !important;
    min-height: 92px !important;
    max-height: 92px !important;
    padding: 0 !important;
  }

  body .tm-nav-wrap, body .tm-header.is-scrolled .tm-nav-wrap {
    height: 92px !important;
    min-height: 92px !important;
    max-height: 92px !important;
  }

  body .tm-hero {
    aspect-ratio: auto !important;
    background: linear-gradient(90deg, #f8f4ee 0 50%, #071a30 50% 100%) !important;
    width: 100% !important;
    height: min(100svh - 92px, 56.2799vw) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 92px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body .tm-hero .tm-hero__slides, body .tm-hero .hero-media__slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    position: absolute !important;
    inset: 0 !important;
  }

  body .tm-hero .hero-media__slide img.hero-media__background, body .tm-hero .hero-media__slide.is-active img.hero-media__background {
    object-fit: contain !important;
    object-position: center center !important;
    opacity: 1 !important;
    filter: none !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    animation: none !important;
    position: absolute !important;
    inset: 0 !important;
    transform: none !important;
  }

  body .tm-hero .tm-hero__content.container {
    pointer-events: none !important;
    width: min(100%, 177.683svh - 163.468px) !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    inset: 0 auto 0 50% !important;
    transform: translateX(-50%) !important;
  }

  body .tm-hero .tm-hero__content.container .tm-hero__actions {
    pointer-events: auto !important;
    margin: 0 !important;
    display: flex !important;
    position: absolute !important;
    top: 76.5% !important;
    bottom: auto !important;
    left: 4.8% !important;
    transform: none !important;
  }
}

@media (width >= 701px) {
  body .tm-hero .hero-media__slide img.hero-media__background, body .tm-hero .hero-media__slide.is-active img.hero-media__background {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
  }
}

@media (width >= 701px) and (width <= 1020px) {
  body .tm-header, body .tm-header.is-scrolled {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    padding: 0 !important;
  }

  body .tm-nav-wrap, body .tm-header.is-scrolled .tm-nav-wrap {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
  }

  body .tm-hero {
    aspect-ratio: auto !important;
    background: linear-gradient(90deg, #f8f4ee 0 50%, #071a30 50% 100%) !important;
    width: 100% !important;
    height: min(100svh - 78px, 56.2799vw) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 78px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body .tm-hero .tm-hero__slides, body .tm-hero .hero-media__slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    position: absolute !important;
    inset: 0 !important;
  }

  body .tm-hero .hero-media__slide img.hero-media__background, body .tm-hero .hero-media__slide.is-active img.hero-media__background {
    object-fit: contain !important;
    object-position: center center !important;
    opacity: 1 !important;
    filter: none !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    animation: none !important;
    position: absolute !important;
    inset: 0 !important;
    transform: none !important;
  }

  body .tm-hero .tm-hero__content.container {
    pointer-events: none !important;
    width: min(100%, 177.683svh - 138.593px) !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    inset: 0 auto 0 50% !important;
    transform: translateX(-50%) !important;
  }

  body .tm-hero .tm-hero__content.container .tm-hero__actions {
    pointer-events: auto !important;
    margin: 0 !important;
    display: flex !important;
    position: absolute !important;
    top: 76.5% !important;
    bottom: auto !important;
    left: 4.8% !important;
    transform: none !important;
  }
}

body .tm-hero:before, body .tm-hero:after, body .tm-hero .tm-hero__overlay, body .tm-hero .hero-media__wash {
  content: none !important;
  opacity: 0 !important;
  filter: none !important;
  backdrop-filter: none !important;
  background: none !important;
  display: none !important;
}

@media (width >= 701px) {
  body .tm-hero, body .tm-hero .tm-hero__slides, body .tm-hero .hero-media__slide {
    background: #0d182b !important;
  }

  body .tm-hero .hero-media__slide:before, body .tm-hero .hero-media__slide:after {
    content: none !important;
    opacity: 0 !important;
    background: none !important;
    display: none !important;
  }

  body .tm-hero .hero-media__slide img.hero-media__background, body .tm-hero .hero-media__slide.is-active img.hero-media__background {
    z-index: 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Ajuste responsive consolidado */
@media (max-width: 700px) {
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  *, *::before, *::after { min-width: 0; box-sizing: border-box; }
  img, svg, video, iframe { max-width: 100%; }
  .container { width: min(100% - 32px, 1320px); margin-inline: auto; }

  .tm-header, .tm-header.is-scrolled,
  .tm-nav-wrap, .tm-header.is-scrolled .tm-nav-wrap {
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
  }
  .tm-brand img { width: auto; max-width: min(68vw, 230px); height: auto; max-height: 52px; }
  .tm-nav-toggle { display: inline-flex; flex: 0 0 46px; align-items: center; justify-content: center; }
  .tm-nav { right: 16px; left: 16px; width: auto; max-height: calc(100dvh - 88px); overflow-y: auto; }

  body .tm-hero {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
  }
  body .tm-hero .tm-hero__slides,
  body .tm-hero .hero-media__slide {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 2048 / 941 !important;
  }
  body .tm-hero .hero-media__slide:not(.is-active) { position: absolute !important; inset: 0 !important; }
  body .tm-hero .hero-media__background {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  body .tm-hero .tm-hero__content.container {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 20px 16px !important;
    transform: none !important;
    background: #071a30;
    pointer-events: auto !important;
  }
  .tm-hero__seo-title {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  body .tm-hero .tm-hero__actions {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    transform: none !important;
  }
  .tm-hero__actions .btn,
  .service-premium__actions > *,
  .contact-actions > * {
    width: 100%; min-height: 48px; justify-content: center; text-align: center;
  }
  .tm-hero__arrow { top: calc((100vw * 941 / 2048) / 2) !important; }
  .tm-hero__pagination {
    top: calc((100vw * 941 / 2048) - 28px) !important;
    bottom: auto !important;
  }

  .tm-metrics__panel, .services-premium__grid, .plans-grid,
  .portfolio-grid, .process-grid, .footer-grid,
  .service-premium, .service-premium__top {
    grid-template-columns: 1fr !important;
  }
  .service-premium__actions, .contact-actions {
    display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%;
  }
  .service-premium__media img, .project-card img { width: 100%; height: auto; }
  .brand-marquee__arrow, .hero-media__arrow { width: 42px; height: 42px; }
  h1, h2, h3, p, li, a, button { overflow-wrap: anywhere; }
}

/* Enlaces de vista previa del portafolio */
.portfolio-grid a.project-card__img {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Los proyectos 7 y 8 comparten la misma fila al desplegarse. */
.portfolio-grid.is-expanded .project-card--extra:last-of-type {
  grid-column: auto;
  justify-self: stretch;
  width: 100%;
}

/* Seccion estatica para las dos marcas actuales */
.brand-marquee--static {
  display: block !important;
  max-width: 520px;
  margin-inline: auto;
}

.brand-marquee--static .brand-marquee__viewport {
  overflow: visible !important;
}

.brand-marquee--static .brand-marquee__track {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 190px));
  justify-content: center;
  gap: 20px !important;
}

.brand-marquee--static .brand-logo-card {
  margin: 0;
}

@media (max-width: 520px) {
  .tm-clients--premium {
    padding: 64px 0 68px !important;
    scroll-margin-top: 72px;
  }

  .tm-clients--premium .container {
    width: min(100% - 32px, 1320px);
  }

  .tm-clients__heading {
    margin: 0 0 36px !important;
    text-align: center !important;
  }

  .tm-clients__heading > span {
    display: block;
    margin-bottom: 12px;
    font-size: .65rem;
    line-height: 1.5;
  }

  .tm-clients__heading .nl-title {
    margin: 0 auto 18px !important;
    font-size: clamp(2rem, 9.5vw, 2.7rem) !important;
    line-height: 1.08 !important;
    text-align: center;
  }

  .tm-clients__heading .nl-copy {
    max-width: 340px;
    margin-inline: auto !important;
    font-size: .95rem;
    line-height: 1.65;
    text-align: center;
  }

  .brand-marquee--static {
    width: 100%;
    max-width: 300px;
  }

  .brand-marquee--static .brand-marquee__track {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px !important;
    width: 100%;
    padding: 0 !important;
  }

  .brand-marquee--static .brand-logo-card {
    width: 100% !important;
    height: 132px !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .brand-marquee--static .brand-logo-card img {
    width: 100% !important;
    max-width: 260px !important;
    max-height: 100px !important;
  }
}
/* Sección estática para las dos marcas actuales */
/* =====================================================
   LOGO HEADER - AJUSTE FINAL ESCRITORIO
===================================================== */

@media (min-width: 1081px) {

  .tm-brand {
    flex: 0 0 400px !important;
    width: 400px !important;
    height: 92px !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
  }

  .tm-brand img {
    width: 385px !important;
    max-width: none !important;
    height: auto !important;
    max-height: 88px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

}