:root {
  --tm-red: #d72638;
  --tm-red-dark: #a71828;
  --tm-blue: #073b78;
  --tm-blue-dark: #061632;
  --tm-blue-soft: #dbe8ff;
  --tm-white: #ffffff;
  --tm-ink: #172235;
  --tm-muted: #60708a;
  --tm-surface: #f4f7fb;
  --tm-surface-alt: #edf2f9;
  --tm-line: #d7e0ec;
  --tm-shadow: 0 28px 60px rgba(7, 22, 50, 0.12);
  --tm-radius-lg: 28px;
  --tm-radius-md: 18px;
  --tm-radius-sm: 12px;
  --tm-container: min(1180px, calc(100% - 2rem));
  --tm-transition: 220ms ease;
}

body[data-theme="dark"] {
  --tm-white: #09111f;
  --tm-ink: #edf3ff;
  --tm-muted: #b7c4e1;
  --tm-surface: #0d1629;
  --tm-surface-alt: #121c31;
  --tm-line: rgba(154, 177, 219, 0.16);
  --tm-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--tm-ink);
  background:
    radial-gradient(circle at top left, rgba(215, 38, 56, 0.08), transparent 24rem),
    radial-gradient(circle at top right, rgba(7, 59, 120, 0.08), transparent 24rem),
    var(--tm-white);
  line-height: 1.6;
  background-attachment: fixed;
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at top left, rgba(215, 38, 56, 0.12), transparent 24rem),
    radial-gradient(circle at top right, rgba(7, 59, 120, 0.14), transparent 24rem),
    #07111f;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  line-height: 1.05;
  color: var(--tm-blue-dark);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--tm-container);
  margin-inline: auto;
}

.site-topbar {
  background: var(--tm-blue-dark);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.28rem 0;
}

.topbar-shell p {
  margin: 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.topbar-links a:hover {
  color: var(--tm-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(215, 224, 236, 0.7);
}

body[data-theme="dark"] .site-header {
  background: rgba(9, 17, 31, 0.85);
  border-bottom-color: rgba(154, 177, 219, 0.16);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 60px;
  padding: 0.2rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  max-height: none;
  object-fit: contain;
  padding: 0.12rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(7, 21, 50, 0.12);
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-text strong {
  font-weight: 800;
  color: var(--tm-blue-dark);
  font-size: 0.9rem;
}

.brand-text span {
  font-size: 0.86rem;
  color: var(--tm-muted);
}

.site-header .brand-text span {
  display: none;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  display: inline-flex;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--tm-blue-dark);
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(7, 59, 120, 0.08);
  color: var(--tm-red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 59, 120, 0.08);
  color: var(--tm-blue-dark);
  font-size: 1.1rem;
  cursor: pointer;
}

.button,
.button-secondary,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform var(--tm-transition),
    box-shadow var(--tm-transition),
    background-color var(--tm-transition),
    border-color var(--tm-transition),
    color var(--tm-transition);
  cursor: pointer;
}

.button:hover,
.button-secondary:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 21, 50, 0.16);
}

.button,
input[type="submit"] {
  background: linear-gradient(135deg, var(--tm-red), #ef4b5d);
  color: var(--tm-white);
}

.button-secondary {
  background: rgba(7, 59, 120, 0.08);
  border-color: rgba(7, 59, 120, 0.12);
  color: var(--tm-blue);
}

.theme-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
}

body[data-theme="dark"] .button-secondary,
body[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #edf3ff;
}

body[data-theme="dark"] .brand img {
  background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .nav-links a {
  color: #edf3ff;
}

body[data-theme="dark"] .nav-links a.active,
body[data-theme="dark"] .nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ff7180;
}

.page-shell {
  overflow: clip;
}

.orb {
  display: none;
}

body.landing-design {
  background: #0c0c0c;
  color: #171717;
  background-attachment: scroll;
}

body.landing-design .page-shell {
  background: #0c0c0c;
  padding-top: 4.8rem;
}

body.landing-design .site-topbar {
  display: none;
}

body.landing-design .site-header {
  position: fixed;
  top: 1.1rem;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

body.landing-design .nav-wrap {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 2.9rem;
  padding: 0 2rem;
}

body.landing-design .brand {
  width: fit-content;
}

body.landing-design .brand img {
  width: clamp(10rem, 14vw, 15rem);
  height: auto;
  max-height: 4rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: left center;
}

body.landing-design .brand-text {
  gap: 0;
}

body.landing-design .brand-text strong {
  max-width: 10rem;
  color: #181818;
  font-size: 0.82rem;
  line-height: 1.1;
}

body.landing-design .nav-links {
  position: relative;
  align-self: start;
  padding: 0.22rem;
  gap: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 1.55rem 1.55rem;
  background: #101010;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

body.landing-design .nav-links::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.1rem;
  width: 14.8rem;
  height: 1.3rem;
  transform: translateX(-50%);
  border-radius: 0 0 1.4rem 1.4rem;
  background: #101010;
  z-index: -1;
}

body.landing-design .nav-links a {
  min-width: 4.1rem;
  justify-content: center;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.landing-design .nav-links a.active,
body.landing-design .nav-links a:hover {
  color: #191919;
  background: #f4f4f0;
}

body.landing-design .nav-cta {
  justify-self: end;
  gap: 0.55rem;
}

body.landing-design .nav-cta .button-secondary {
  min-height: 2.2rem;
  padding: 0.42rem 0.76rem;
  background: #101010;
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8f8f4;
  font-size: 0.68rem;
  box-shadow: none;
}

body.landing-design .theme-toggle {
  width: 5.6rem;
  border-radius: 999px;
  color: transparent;
  position: relative;
}

body.landing-design .theme-toggle::before {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.22rem;
  height: 1.22rem;
  border-radius: 50%;
  background: #08428c;
  box-shadow: 0 0 0 0.32rem #e8f1fb inset;
}

body.landing-design .theme-toggle::after {
  content: "New era";
  position: absolute;
  left: 0.58rem;
  top: 50%;
  transform: translateY(-50%);
  color: #f8f8f4;
  font-size: 0.56rem;
  font-weight: 800;
}

body.landing-design .nav-cta .theme-toggle {
  color: transparent;
}

body.landing-design .landing-hero {
  padding: 0;
  color: #171717;
  background: #0c0c0c;
}

body.landing-design .landing-hero::before,
body.landing-design .landing-hero::after {
  display: none;
}

body.landing-design .landing-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.76fr minmax(20rem, 1.07fr) 0.86fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  min-height: clamp(34rem, 56vw, 42rem);
  padding: clamp(5.1rem, 7vw, 6.2rem) clamp(1.6rem, 3vw, 2.3rem) clamp(1.4rem, 2vw, 1.8rem);
  border: 0.45rem solid #171717;
  border-radius: 3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 78%, rgba(0, 0, 0, 0.08), transparent 12rem),
    #fbfbf7;
}

body.landing-design .landing-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 23.5rem;
}

body.landing-design .landing-copy h1 {
  margin: 0;
  color: #1b1b1b;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 4.15vw, 4.9rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

body.landing-design .landing-copy p {
  max-width: 18.4rem;
  margin: 1.55rem 0 0;
  color: rgba(33, 33, 33, 0.36);
  font-size: 0.83rem;
  line-height: 1.5;
}

body.landing-design .hero-actions {
  margin-top: 1.35rem;
  gap: 0.72rem;
}

body.landing-design .button,
body.landing-design input[type="submit"] {
  min-width: 9.4rem;
  background: linear-gradient(135deg, #08428c, #0b63cf);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(8, 66, 140, 0.22);
}

body.landing-design .button-secondary {
  background: #ffffff;
  border-color: rgba(8, 66, 140, 0.18);
  color: #08428c;
}

body.landing-design .button-secondary:hover {
  background: rgba(8, 66, 140, 0.08);
  color: #ffffff;
}

body.landing-design .hero-actions .button-secondary[data-brochure-button] {
  display: none;
}

body.landing-design .landing-note {
  position: absolute;
  left: 0.1rem;
  bottom: 3.1rem;
  display: grid;
  gap: 0.34rem;
  max-width: 16.8rem;
  padding: 0.72rem 0.88rem;
  border: 1px solid rgba(8, 66, 140, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(8, 66, 140, 0.08);
  color: #17304d;
  font-size: 0.73rem;
  line-height: 1.38;
  backdrop-filter: blur(4px);
}

body.landing-design .landing-note span {
  color: #08428c;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

body.landing-design .landing-note strong {
  font-weight: 800;
}

body.landing-design .landing-team {
  position: absolute;
  left: 21%;
  right: 20%;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

body.landing-design .landing-team img {
  width: min(54rem, 68vw);
  min-width: 41rem;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.08));
}

body.landing-design .tech-rock,
body.landing-design .about-rock {
  position: absolute;
  background:
    linear-gradient(140deg, rgba(125, 224, 255, 0.28), rgba(66, 104, 255, 0.22)),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.34), transparent 48%),
    url("assets/wallpaper.jpg");
  background-size: cover;
  background-position: center center;
  filter: saturate(1.22) contrast(1.08) brightness(0.94);
  clip-path: polygon(8% 34%, 28% 8%, 61% 10%, 93% 36%, 80% 95%, 25% 88%, 3% 60%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  opacity: 0.96;
}

body.landing-design .rock-one {
  left: -4.45rem;
  bottom: 0.72rem;
  width: 13.8rem;
  height: 6.75rem;
}

body.landing-design .rock-two {
  left: 5.45rem;
  bottom: 0.35rem;
  width: 7.4rem;
  height: 3.95rem;
  transform: rotate(-7deg);
  opacity: 0.78;
}

body.landing-design .landing-side {
  position: relative;
  z-index: 4;
  grid-column: 3;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  justify-items: end;
  gap: 1.05rem;
  min-width: 0;
}

body.landing-design .side-copy {
  display: grid;
  justify-items: center;
  max-width: 17rem;
  margin: 0.8rem 0 0;
  text-align: center;
}

body.landing-design .side-copy p {
  margin: 0;
  color: #17304d;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.16;
}

body.landing-design .side-copy span {
  margin-top: 0.55rem;
  color: #08428c;
  font-size: 1.15rem;
  line-height: 1;
}

body.landing-design .side-copy a {
  margin-top: 0.75rem;
  color: rgba(16, 16, 16, 0.2);
  font-size: 0.68rem;
  font-weight: 800;
}

body.landing-design .side-image {
  width: min(7.4rem, 100%);
  aspect-ratio: 1 / 1.14;
  margin: 0;
  overflow: hidden;
  border-radius: 0.45rem;
  background: #d8d8d3;
}

body.landing-design .side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--tm-image-filter, saturate(0.9) contrast(1.04) brightness(1.02) hue-rotate(4deg));
}

body.landing-design .lime-card {
  align-self: end;
  width: min(26rem, 100%);
  margin-top: 1.4rem;
  padding: clamp(1.3rem, 2vw, 2rem);
  border-radius: 2rem;
  background: #08428c;
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(8, 66, 140, 0.22);
}

body.landing-design .lime-meta {
  display: flex;
  gap: 2.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.62rem;
  font-weight: 800;
}

body.landing-design .lime-card h2 {
  max-width: 18rem;
  margin: 0;
  color: #101010;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

body.landing-design .lime-card p {
  max-width: 15rem;
  margin: 1rem 0 0;
  color: rgba(16, 16, 16, 0.46);
  font-size: 0.72rem;
  line-height: 1.45;
}

body.landing-design .lime-card a {
  float: right;
  min-width: 7rem;
  margin-top: -1.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #101010;
  color: #ffffff;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
}

body.landing-design .landing-about-section {
  padding: 0 0 0.65rem;
  background: #f5f8fd;
}

body.landing-design .landing-about-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 0.34fr 1.25fr 0.66fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  min-height: 12.2rem;
  padding: clamp(1.35rem, 2vw, 1.9rem) clamp(1.4rem, 2.8vw, 2.2rem);
  border: 0.45rem solid rgba(8, 66, 140, 0.16);
  border-radius: 2.3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 50%, rgba(8, 66, 140, 0.18), transparent 11rem),
    linear-gradient(110deg, #eff5fb, #ffffff);
}

body.landing-design .about-label h2 {
  max-width: 16rem;
  margin: 0.8rem 0 0.35rem;
  color: #17304d;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

body.landing-design .about-label a {
  color: #08428c;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.landing-design .about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #ffffff;
  color: #08428c;
  font-weight: 800;
}

body.landing-design .about-portrait {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.7rem;
  background: #dce9f8;
}

body.landing-design .about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--tm-image-filter, saturate(0.9) contrast(1.04) brightness(1.02) hue-rotate(4deg));
}

body.landing-design .landing-about-panel > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #17304d;
  font-size: clamp(1.35rem, 2.6vw, 2.32rem);
  line-height: 1.22;
}

body.landing-design .about-rock {
  position: relative;
  width: 15rem;
  max-width: 100%;
  height: 11.5rem;
  justify-self: end;
}

body.landing-design .section {
  background: #f5f8fd;
}

body.landing-design .section:nth-of-type(even) {
  background:
    radial-gradient(circle at top right, rgba(8, 66, 140, 0.1), transparent 18rem),
    #eef4fb;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.6rem, 3vw, 2.6rem) 0 clamp(4rem, 8vw, 6rem);
  color: var(--tm-white);
  background:
    linear-gradient(120deg, rgba(6, 22, 54, 0.82), rgba(7, 59, 120, 0.74)),
    url("assets/wallpaper.jpg"),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.08), transparent 18rem),
    radial-gradient(circle at 82% 24%, rgba(239, 75, 93, 0.2), transparent 16rem),
    radial-gradient(circle at 72% 72%, rgba(91, 163, 255, 0.16), transparent 18rem);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.22;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--tm-white));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
  gap: 3rem;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tm-red);
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero h2 {
  color: var(--tm-white);
}

.hero h1 {
  margin-top: 0;
}

.hero h1,
.section-heading h2,
.page-intro h1 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.hero p,
.section-heading p,
.page-intro p,
.lead {
  color: var(--tm-muted);
}

.hero .lead,
.hero p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--tm-radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tm-white);
}

.stat-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel {
  position: relative;
  min-height: 34rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-glow {
  position: absolute;
  inset: 3rem 2rem 2rem 2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(160deg, rgba(215, 38, 56, 0.16), rgba(7, 59, 120, 0.2));
  filter: blur(2px);
}

.hero-panel .main-panel,
.mini-card,
.spotlight,
.service-card,
.feature-card,
.portfolio-card,
.blog-card,
.info-card,
.testimonial-card,
.value-card,
.strip-card,
.timeline,
.contact-form {
  border: 1px solid var(--tm-line);
  border-radius: var(--tm-radius-lg);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--tm-shadow);
}

.hero-panel .main-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.panel-top {
  margin-bottom: 1rem;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(7, 59, 120, 0.08);
  color: var(--tm-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tm-red);
  box-shadow: 0 0 0 0 rgba(215, 38, 56, 0.55);
  animation: pulse 2.2s infinite;
}

.mini-grid,
.grid-3,
.grid-2,
.services-grid,
.portfolio-grid,
.blog-grid,
.contact-grid,
.values-grid {
  display: grid;
  gap: 1.3rem;
}

.mini-grid,
.grid-2,
.services-grid,
.portfolio-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.blog-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card {
  position: absolute;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mini-card span {
  color: var(--tm-muted);
  font-size: 0.82rem;
}

.mini-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  color: var(--tm-blue-dark);
}

.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card.copy-card {
  padding: 1.2rem;
  background: rgba(226, 232, 245, 0.64);
  backdrop-filter: blur(20px);
}

.mini-grid .mini-card:nth-child(1) {
  top: 0.5rem;
  left: 2.5rem;
  width: 18.5rem;
  height: 22rem;
}

.mini-grid .mini-card:nth-child(2) {
  top: 3rem;
  right: 0;
  width: 14rem;
  height: 15rem;
}

.mini-grid .mini-card:nth-child(3) {
  left: 0.4rem;
  bottom: 2.3rem;
  width: 14.6rem;
  height: 10.8rem;
}

.mini-grid .mini-card:nth-child(4) {
  right: 1.2rem;
  bottom: 0.2rem;
  width: 16rem;
  height: auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section .container {
  width: min(1180px, calc(100% - 2rem));
}

.section:nth-of-type(even) {
  background:
    radial-gradient(circle at top right, rgba(91, 163, 255, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(237, 242, 249, 0.96));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.page-intro {
  position: relative;
  padding: clamp(2.3rem, 5vw, 3.4rem) 0 clamp(3.8rem, 7vw, 5rem);
  color: var(--tm-white);
  background:
    linear-gradient(120deg, rgba(7, 25, 55, 0.82), rgba(10, 47, 99, 0.72)),
    url("assets/wallpaper.jpg"),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 88% 20%, rgba(239, 75, 93, 0.22), transparent 16rem),
    radial-gradient(circle at 74% 78%, rgba(91, 163, 255, 0.18), transparent 18rem);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.18;
  pointer-events: none;
}

.page-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(244, 247, 251, 0.9));
  pointer-events: none;
}

.page-intro .container {
  width: min(1220px, calc(100% - 2rem));
}

.page-intro h1,
.page-intro p,
.page-intro .eyebrow,
.breadcrumbs {
  color: var(--tm-white);
}

.page-intro h1 {
  margin-top: 0;
}

.breadcrumbs {
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.page-intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: start;
  gap: 2.25rem;
  position: relative;
  z-index: 1;
}

.page-intro-copy {
  max-width: 42rem;
  padding-top: 0.8rem;
}

.page-intro-visual {
  position: relative;
  min-height: 29rem;
}

.intro-card,
.intro-note {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--tm-shadow);
}

.intro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-card.main {
  top: 0;
  left: 3rem;
  width: 18rem;
  height: 22rem;
}

.intro-card.accent {
  right: 0.6rem;
  top: 1.8rem;
  width: 13.6rem;
  height: 14rem;
}

.intro-card.base {
  left: 0;
  bottom: 1.2rem;
  width: 14.5rem;
  height: 10.5rem;
}

.intro-note {
  right: 1.6rem;
  bottom: 0;
  width: 16rem;
  padding: 1.2rem 1.2rem;
  background: rgba(226, 232, 245, 0.64);
  backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-note strong {
  color: #0f3f82;
}

.intro-note p {
  margin: 0.35rem 0 0;
  color: rgba(23, 34, 53, 0.72);
}

.intro-note .signal {
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.22);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.strip-card,
.value-card,
.timeline,
.spotlight,
.feature-card,
.service-card,
.portfolio-card,
.blog-card,
.info-card,
.testimonial-card,
.contact-form {
  padding: 1.5rem;
}

.service-card,
.portfolio-card,
.blog-card,
.feature-card,
.info-card,
.testimonial-card,
.strip-card,
.value-card,
.timeline,
.spotlight,
.contact-form {
  position: relative;
}

.service-card::before,
.portfolio-card::before,
.blog-card::before,
.feature-card::before,
.info-card::before,
.testimonial-card::before,
.strip-card::before,
.value-card::before,
.timeline::before,
.spotlight::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 55%);
  pointer-events: none;
}

.card-kicker,
.portfolio-tag,
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(7, 59, 120, 0.08);
  color: var(--tm-blue);
}

.service-media,
.about-showcase,
.portfolio-photo {
  overflow: hidden;
  margin-bottom: 1.2rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(7, 59, 120, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(215, 38, 56, 0.08), rgba(7, 59, 120, 0.08)),
    var(--tm-white);
}

.service-media img,
.about-showcase img,
.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media {
  aspect-ratio: 16 / 10;
}

.feature-media,
.value-media {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(7, 59, 120, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(215, 38, 56, 0.08), rgba(7, 59, 120, 0.08)),
    var(--tm-white);
}

.feature-media img,
.value-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media {
  aspect-ratio: 16 / 9;
}

.value-media {
  aspect-ratio: 4 / 3;
}

.about-showcase {
  min-height: 20rem;
}

.portfolio-photo {
  aspect-ratio: 16 / 11;
}

.service-card h3,
.feature-card h3,
.portfolio-card h3,
.blog-card h3,
.testimonial-card h3,
.info-card h3,
.value-card h3 {
  font-size: 1.28rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(215, 38, 56, 0.12), rgba(7, 59, 120, 0.1));
  color: var(--tm-red);
  flex-shrink: 0;
  margin-bottom: 1rem;
  font-weight: 800;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: start;
}

.timeline.company-focus {
  display: grid;
  gap: 1rem;
}

.check-list,
.contact-list,
.portfolio-meta,
.service-card ul {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.check-list li,
.contact-list li,
.portfolio-meta li,
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: linear-gradient(135deg, var(--tm-red), var(--tm-blue));
  flex: none;
}

.portfolio-preview {
  overflow: hidden;
  margin-bottom: 1.2rem;
  border-radius: var(--tm-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(7, 59, 120, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(215, 38, 56, 0.08), rgba(7, 59, 120, 0.08)),
    var(--tm-white);
}

.mockup {
  display: grid;
  min-height: 16rem;
  padding: 1.2rem;
  border-radius: var(--tm-radius-lg);
}

.mockup .bar {
  width: 84px;
  height: 8px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--tm-red), var(--tm-blue));
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
}

.mockup-panel,
.mockup-stack span {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(219, 232, 255, 0.5), rgba(237, 242, 249, 0.6)),
    var(--tm-surface);
  border: 1px solid var(--tm-line);
}

.mockup-panel {
  min-height: 9rem;
}

.mockup-stack {
  display: grid;
  gap: 0.75rem;
}

.mockup-stack span {
  display: block;
  min-height: 3.5rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--tm-line);
  border-radius: var(--tm-radius-lg);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: var(--tm-shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

body[data-theme="dark"] .hero-panel .main-panel,
body[data-theme="dark"] .mini-card,
body[data-theme="dark"] .spotlight,
body[data-theme="dark"] .service-card,
body[data-theme="dark"] .feature-card,
body[data-theme="dark"] .portfolio-card,
body[data-theme="dark"] .blog-card,
body[data-theme="dark"] .info-card,
body[data-theme="dark"] .testimonial-card,
body[data-theme="dark"] .value-card,
body[data-theme="dark"] .strip-card,
body[data-theme="dark"] .timeline,
body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .map-card {
  background: rgba(12, 22, 41, 0.74);
}

body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4,
body[data-theme="dark"] .brand-text strong,
body[data-theme="dark"] label {
  color: #edf3ff;
}

body[data-theme="dark"] input,
body[data-theme="dark"] textarea,
body[data-theme="dark"] select {
  background: rgba(255, 255, 255, 0.06);
  color: #edf3ff;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field.full {
  grid-column: 1 / -1;
}

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

label {
  font-weight: 700;
  color: var(--tm-blue-dark);
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid var(--tm-line);
  border-radius: 18px;
  background: var(--tm-white);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(7, 59, 120, 0.42);
  box-shadow: 0 0 0 4px rgba(7, 59, 120, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.status-message {
  margin-top: 1rem;
  color: var(--tm-blue);
  font-weight: 600;
}

.footer {
  padding: 4rem 0 2.5rem;
  background: var(--tm-blue-dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-panel {
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(190, 206, 232, 0.55);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(189, 213, 255, 0.68), transparent 18rem),
    linear-gradient(135deg, rgba(255, 241, 243, 0.9), rgba(241, 247, 255, 0.82)),
    rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(28px);
  box-shadow: 0 28px 60px rgba(7, 22, 50, 0.16);
}

.footer-newsletter-copy {
  max-width: 34rem;
}

.footer-newsletter .eyebrow {
  color: var(--tm-red);
}

.footer-newsletter h2 {
  color: var(--tm-blue-dark);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.footer-newsletter p {
  color: rgba(23, 34, 53, 0.82);
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(100%, 34rem);
}

.footer-newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(190, 206, 232, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  color: var(--tm-blue-dark);
}

body[data-theme="dark"] .footer-newsletter {
  background:
    radial-gradient(circle at top right, rgba(91, 163, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(18, 31, 56, 0.92), rgba(11, 20, 37, 0.88)),
    rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .footer-newsletter h2,
body[data-theme="dark"] .footer-newsletter p {
  color: #edf3ff;
}

body[data-theme="dark"] .footer-newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  color: #edf3ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 0.95fr);
  gap: 1.6rem;
}

.footer-wrap {
  align-items: start;
}

.footer strong,
.footer a,
.footer h3 {
  color: var(--tm-white);
}

.footer h3 {
  margin-bottom: 1rem;
}

.footer-tagline {
  margin-bottom: 1rem;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icon-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
}

.footer-stack {
  display: grid;
  gap: 0.75rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.75rem;
}

.footer-stack a,
.footer-contact-list span,
.footer-tagline {
  color: rgba(255, 255, 255, 0.82);
}

.footer-stack a:hover,
.social-links a:hover {
  color: var(--tm-white);
}

.footer-bottom {
  padding-top: 1.6rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.chatbot-widget {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
}

.chatbot-toggle {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--tm-red), #ef4b5d);
  box-shadow: 0 18px 40px rgba(7, 22, 50, 0.2);
  cursor: pointer;
}

.chatbot-panel {
  width: min(360px, calc(100vw - 2rem));
  margin-top: 0.8rem;
  border: 1px solid var(--tm-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 60px rgba(7, 22, 50, 0.22);
  overflow: hidden;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.8rem;
  border-bottom: 1px solid rgba(215, 224, 236, 0.8);
}

.chatbot-close {
  border: 0;
  background: transparent;
  color: var(--tm-blue-dark);
  font-size: 1.35rem;
  cursor: pointer;
}

.chatbot-messages {
  max-height: 320px;
  overflow: auto;
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.chatbot-message {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  line-height: 1.5;
}

.chatbot-message.bot {
  background: rgba(7, 59, 120, 0.08);
}

.chatbot-message.user {
  background: rgba(215, 38, 56, 0.1);
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  padding: 0 1rem 1rem;
}

body[data-theme="dark"] .chatbot-panel {
  background: rgba(12, 22, 41, 0.84);
}

body[data-theme="dark"] .chatbot-close {
  color: #edf3ff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 38, 56, 0.55);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(215, 38, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(215, 38, 56, 0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-intro-shell,
  .spotlight-grid,
  .contact-grid,
  .strip,
  .grid-3,
  .grid-2,
  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 28rem;
  }

  .page-intro-visual {
    min-height: 24rem;
  }

  .mini-grid .mini-card:nth-child(1),
  .mini-grid .mini-card:nth-child(2),
  .mini-grid .mini-card:nth-child(3),
  .mini-grid .mini-card:nth-child(4),
  .hero-panel .main-panel,
  .intro-card.main,
  .intro-card.accent,
  .intro-card.base,
  .intro-note {
    position: absolute;
  }

  .intro-card.main {
    left: 2rem;
    width: 16rem;
    height: 19rem;
  }

  .intro-card.accent {
    width: 11.5rem;
    height: 12rem;
  }

  .intro-card.base {
    width: 12rem;
    height: 8.6rem;
  }

  .intro-note {
    width: 13rem;
  }

  .nav-wrap {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--tm-line);
    border-radius: var(--tm-radius-lg);
    background: var(--tm-white);
    box-shadow: var(--tm-shadow);
    display: none;
  }

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

  .nav-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar-shell,
  .hero-stats,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-shell {
    display: grid;
  }

  .page-intro-visual {
    min-height: auto;
    display: grid;
    gap: 0.9rem;
  }

  .page-intro {
    padding-top: 1.8rem;
  }

  .page-intro-copy {
    padding-top: 0;
  }

  .intro-card,
  .intro-note,
  .mini-grid .mini-card:nth-child(1),
  .mini-grid .mini-card:nth-child(2),
  .mini-grid .mini-card:nth-child(3),
  .mini-grid .mini-card:nth-child(4),
  .hero-panel .main-panel {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
  }

  .intro-card.main,
  .intro-card.accent,
  .intro-card.base {
    min-height: 13rem;
  }

  .hero-actions,
  .page-actions,
  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .button,
  .button-secondary,
  input[type="submit"] {
    width: 100%;
  }

  .brand-text span {
    display: none;
  }
}

@media (max-width: 1120px) {
  body.landing-design .landing-hero-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    min-height: auto;
    padding-bottom: 2rem;
  }

  body.landing-design .landing-copy {
    min-height: 31rem;
  }

  body.landing-design .landing-team {
    left: 16%;
    right: 4%;
  }

  body.landing-design .landing-team img {
    width: min(49rem, 80vw);
    min-width: 34rem;
  }

  body.landing-design .landing-side {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 8rem minmax(16rem, 0.85fr);
    align-items: end;
  }

  body.landing-design .side-copy {
    justify-items: start;
    text-align: left;
  }

  body.landing-design .lime-card {
    margin-top: 0;
  }

  body.landing-design .landing-about-panel {
    grid-template-columns: minmax(0, 0.65fr) 8rem minmax(0, 1fr);
  }

  body.landing-design .about-rock {
    display: none;
  }
}

@media (max-width: 1080px) {
  body.landing-design .site-header {
    top: 1rem;
  }

  body.landing-design .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  body.landing-design .nav-toggle {
    display: inline-flex;
    justify-self: end;
    background: #101010;
    color: #ffffff;
  }

  body.landing-design .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 1.5rem;
  }

  body.landing-design .nav-links::before {
    display: none;
  }

  body.landing-design .nav-links.open {
    display: flex;
  }

  body.landing-design .nav-links a {
    width: 100%;
  }

  body.landing-design .nav-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  body.landing-design .page-shell {
    padding-top: 4.2rem;
  }

  body.landing-design .site-header {
    top: 0.9rem;
  }

  body.landing-design .nav-wrap {
    padding: 0 1.1rem;
  }

  body.landing-design .brand-text strong {
    max-width: 9rem;
    font-size: 0.72rem;
  }

  body.landing-design .landing-hero-card,
  body.landing-design .landing-about-panel {
    width: min(100%, calc(100% - 0.7rem));
    border-width: 0.32rem;
    border-radius: 2rem;
  }

  body.landing-design .landing-hero-card {
    display: block;
    padding: 5.2rem 1.05rem 1.1rem;
  }

  body.landing-design .landing-copy {
    min-height: auto;
    max-width: none;
  }

  body.landing-design .landing-copy h1 {
    max-width: 18rem;
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  body.landing-design .landing-copy p {
    max-width: 19rem;
    color: rgba(33, 33, 33, 0.56);
  }

  body.landing-design .hero-actions {
    width: 100%;
  }

  body.landing-design .button,
  body.landing-design .button-secondary,
  body.landing-design input[type="submit"] {
    width: 100%;
  }

  body.landing-design .landing-note {
    position: static;
    margin-top: 1.15rem;
  }

  body.landing-design .landing-team {
    position: relative;
    left: auto;
    right: auto;
    margin: 0.85rem -1.45rem 0;
  }

  body.landing-design .landing-team img {
    width: 128%;
    min-width: 0;
  }

  body.landing-design .tech-rock {
    display: none;
  }

  body.landing-design .landing-side {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    margin-top: 1rem;
  }

  body.landing-design .side-copy {
    max-width: none;
    justify-items: start;
    text-align: left;
  }

  body.landing-design .side-image {
    display: none;
  }

  body.landing-design .lime-card {
    width: 100%;
    border-radius: 1.55rem;
  }

  body.landing-design .lime-card a {
    float: none;
    display: inline-flex;
    justify-content: center;
    margin-top: 1rem;
  }

  body.landing-design .landing-about-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.landing-design .about-portrait {
    width: 8rem;
  }

  body.landing-design .landing-about-panel > p {
    font-size: 1.45rem;
  }
}

/* Sitewide editorial design system inspired by the supplied reference. */
body.landing-design {
  --tm-red: #08428c;
  --tm-red-dark: #062b5b;
  --tm-blue: #08428c;
  --tm-blue-dark: #062b5b;
  --tm-muted: #5d7390;
  --tm-line: rgba(8, 66, 140, 0.14);
  --tm-shadow: 0 24px 50px rgba(8, 66, 140, 0.12);
  background: #f5f8fd;
  overflow-x: hidden;
}

body.landing-design .brand {
  gap: 0;
}

body.landing-design * {
  min-width: 0;
}

body.landing-design .brand img {
  width: clamp(10rem, 16vw, 16rem);
  height: auto;
  max-height: 4.5rem;
  object-fit: contain;
  object-position: left center;
}

body.landing-design .brand-text {
  display: none;
}

body.landing-design .nav-cta .button,
body.landing-design .nav-cta .button-secondary {
  background: #08428c;
  border-color: #08428c;
  color: #ffffff;
}

body.landing-design main {
  background: #f5f8fd;
  overflow-x: hidden;
}

body.landing-design [data-reveal] {
  opacity: 1;
  transform: none;
}

body.landing-design .page-intro {
  padding: 0 0 0.65rem;
  overflow: visible;
  color: #17304d;
  background: #f5f8fd;
}

body.landing-design .page-intro::before,
body.landing-design .page-intro::after {
  display: none;
}

body.landing-design .page-intro > .container {
  width: var(--tm-container);
  min-height: clamp(30rem, 48vw, 40rem);
  padding: clamp(5.5rem, 7vw, 6.7rem) clamp(1.55rem, 3vw, 2.35rem) clamp(1.6rem, 3vw, 2.35rem);
  border: 0.45rem solid rgba(8, 66, 140, 0.16);
  border-radius: 3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 76%, rgba(8, 66, 140, 0.1), transparent 15rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
}

body.landing-design .page-intro-shell {
  min-height: clamp(22rem, 34vw, 30rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

body.landing-design .page-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 37rem;
  padding-top: 0;
}

body.landing-design .breadcrumbs,
body.landing-design .page-intro .eyebrow {
  color: #08428c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.landing-design .page-intro h1 {
  color: #171717;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

body.landing-design .page-intro p {
  max-width: 31rem;
  color: rgba(23, 23, 23, 0.55);
  font-size: 1rem;
}

body.landing-design .page-intro-visual {
  min-height: 28rem;
}

body.landing-design .intro-card,
body.landing-design .intro-note {
  border: 0;
  border-radius: 1.9rem;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.14);
}

body.landing-design .intro-card img,
body.landing-design .service-media img,
body.landing-design .feature-media img,
body.landing-design .portfolio-photo img,
body.landing-design .about-showcase img,
body.landing-design .value-media img {
  filter: var(--tm-image-filter, saturate(0.9) contrast(1.04) brightness(1.02) hue-rotate(4deg));
}

body.landing-design .intro-note {
  background: rgba(8, 66, 140, 0.1);
  color: #17304d;
}

body.landing-design .intro-note strong,
body.landing-design .intro-note p {
  color: #17304d;
}

body.landing-design .signal {
  background: #08428c;
  color: #ffffff;
}

body.landing-design .pulse {
  background: #08428c;
}

body.landing-design main > .section {
  padding: 0.65rem 0;
  background: #f5f8fd;
}

body.landing-design main > .section > .container {
  padding: clamp(2rem, 4.5vw, 4.2rem);
  border: 0.45rem solid rgba(8, 66, 140, 0.16);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(8, 66, 140, 0.08), transparent 18rem),
    #ffffff;
}

body.landing-design .section-heading h2,
body.landing-design .spotlight h2,
body.landing-design .footer-newsletter h2,
body.landing-design .brochure h1,
body.landing-design .brochure h2 {
  color: #151515;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

body.landing-design .section-heading p,
body.landing-design .lead,
body.landing-design .service-card p,
body.landing-design .feature-card p,
body.landing-design .portfolio-card p,
body.landing-design .blog-card p,
body.landing-design .info-card p,
body.landing-design .testimonial-card p,
body.landing-design .spotlight p,
body.landing-design .value-card p {
  color: rgba(21, 21, 21, 0.62);
}

body.landing-design .spotlight,
body.landing-design .service-card,
body.landing-design .feature-card,
body.landing-design .portfolio-card,
body.landing-design .blog-card,
body.landing-design .info-card,
body.landing-design .testimonial-card,
body.landing-design .value-card,
body.landing-design .strip-card,
body.landing-design .timeline,
body.landing-design .contact-form,
body.landing-design .map-card {
  border-color: rgba(8, 66, 140, 0.14);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(8, 66, 140, 0.08);
}

body.landing-design .service-media,
body.landing-design .feature-media,
body.landing-design .value-media,
body.landing-design .portfolio-photo,
body.landing-design .about-showcase {
  border-radius: 1.3rem;
  background: #dce9f8;
}

body.landing-design .eyebrow,
body.landing-design .card-kicker,
body.landing-design .portfolio-tag,
body.landing-design .blog-tag {
  color: #08428c;
  background: rgba(8, 66, 140, 0.12);
  letter-spacing: 0;
}

body.landing-design .icon-badge,
body.landing-design .dot {
  background: #08428c;
  color: #ffffff;
}

body.landing-design input,
body.landing-design textarea,
body.landing-design select {
  border-color: rgba(8, 66, 140, 0.16);
  border-radius: 1rem;
  background: #ffffff;
  color: #17304d;
}

body.landing-design label,
body.landing-design h1,
body.landing-design h2,
body.landing-design h3,
body.landing-design h4 {
  color: #151515;
}

body.landing-design .footer {
  padding: 0.65rem 0 2rem;
  background: #f5f8fd;
}

body.landing-design .footer-panel,
body.landing-design .footer-wrap,
body.landing-design .footer-bottom {
  width: var(--tm-container);
}

body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid {
  border: 0.45rem solid rgba(8, 66, 140, 0.16);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 88% 20%, rgba(8, 66, 140, 0.16), transparent 18rem),
    #ffffff;
}

body.landing-design .footer-newsletter {
  color: #17304d;
}

body.landing-design .footer-newsletter p,
body.landing-design .footer-tagline,
body.landing-design .footer-stack a,
body.landing-design .footer-contact-list span {
  color: rgba(21, 21, 21, 0.64);
}

body.landing-design .footer-wrap.footer-grid {
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

body.landing-design .footer a,
body.landing-design .footer h3,
body.landing-design .footer strong {
  color: #151515;
}

body.landing-design .footer .brand img {
  width: min(13rem, 100%);
  max-height: 3.2rem;
}

body.landing-design .social-icon-link {
  background: #08428c;
  color: #ffffff;
}

body.landing-design .chatbot-toggle {
  background: #08428c;
}

body.landing-design .brochure {
  margin-top: 0.65rem;
}

body.landing-design .brochure-cover,
body.landing-design .brochure-section {
  border: 0.45rem solid rgba(8, 66, 140, 0.16);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at top right, rgba(8, 66, 140, 0.14), transparent 18rem),
    #ffffff;
}

body.landing-design .brochure-cover img[alt="Technomaze Technologies logo"] {
  width: min(18rem, 100%) !important;
}

body.landing-design .brochure-service {
  border-color: rgba(8, 66, 140, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1080px) {
  body.landing-design .page-intro-shell {
    grid-template-columns: 1fr;
  }

  body.landing-design .page-intro-visual {
    min-height: 24rem;
  }
}

@media (max-width: 760px) {
  body.landing-design .site-header {
    overflow-x: clip;
  }

  body.landing-design .container,
  body.landing-design .nav-wrap {
    width: calc(min(100vw, 390px) - 0.7rem);
    max-width: calc(min(100vw, 390px) - 0.7rem);
    margin-left: 0.35rem;
    margin-right: auto;
  }

  body.landing-design .brand img {
    width: clamp(7rem, 34vw, 9rem);
    max-height: 3rem;
  }

  body.landing-design .page-intro > .container,
  body.landing-design main > .section > .container,
  body.landing-design .footer-newsletter,
  body.landing-design .footer-wrap.footer-grid,
  body.landing-design .brochure-cover,
  body.landing-design .brochure-section {
    width: calc(min(100vw, 390px) - 0.7rem);
    max-width: calc(min(100vw, 390px) - 0.7rem);
    border-width: 0.32rem;
    border-radius: 2rem;
    overflow: hidden;
  }

  body.landing-design .page-intro > .container {
    padding: 5.2rem 1.05rem 1.2rem;
  }

  body.landing-design .page-intro h1 {
    font-size: clamp(2.35rem, 10vw, 3.65rem);
    overflow-wrap: anywhere;
  }

  body.landing-design .page-intro-copy,
  body.landing-design .page-intro-shell,
  body.landing-design .page-intro p,
  body.landing-design .intro-note,
  body.landing-design .intro-note * {
    max-width: 100%;
    min-width: 0;
  }

  body.landing-design .page-intro p {
    overflow-wrap: break-word;
  }

  body.landing-design .signal {
    white-space: normal;
    line-height: 1.2;
  }

  body.landing-design .page-intro-visual {
    min-height: auto;
    margin-top: 1.4rem;
  }

  body.landing-design .intro-note {
    padding: 1rem;
  }
}

/* Thin-frame refinement and brand-toned image treatment. */
body.landing-design {
  --tm-container: min(1440px, calc(100% - 0.75rem));
  --tm-frame-border: 2px solid #171717;
  --tm-image-filter: saturate(0.9) contrast(1.04) brightness(1.02) hue-rotate(4deg);
}

body.landing-design .landing-hero-card,
body.landing-design .landing-about-panel,
body.landing-design .page-intro > .container,
body.landing-design main > .section > .container,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid,
body.landing-design .brochure-cover,
body.landing-design .brochure-section {
  border: var(--tm-frame-border);
}

body.landing-design .intro-card img,
body.landing-design .service-media img,
body.landing-design .feature-media img,
body.landing-design .portfolio-photo img,
body.landing-design .about-showcase img,
body.landing-design .value-media img,
body.landing-design .side-image img,
body.landing-design .about-portrait img {
  filter: var(--tm-image-filter);
}

body.landing-design .landing-team img {
  filter: var(--tm-image-filter) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.08));
}

body.landing-design .tech-rock,
body.landing-design .about-rock {
  filter: saturate(1.22) contrast(1.08) brightness(0.94);
}

body.landing-design .brand img,
body.landing-design .footer .brand img,
body.landing-design .brochure-cover img[alt="Technomaze Technologies logo"] {
  filter: none;
}

@media (max-width: 760px) {
  body.landing-design {
    --tm-container: calc(100% - 0.5rem);
  }

  body.landing-design .landing-hero-card,
  body.landing-design .landing-about-panel,
  body.landing-design .page-intro > .container,
  body.landing-design main > .section > .container,
  body.landing-design .footer-newsletter,
  body.landing-design .footer-wrap.footer-grid,
  body.landing-design .brochure-cover,
  body.landing-design .brochure-section {
    border-width: 2px;
  }
}

/* Final visibility and layout hardening for the landing-inspired system. */
body.landing-design,
body.landing-design[data-theme="dark"] {
  color-scheme: light;
  overflow-x: clip;
}

body.landing-design .site-header {
  isolation: isolate;
}

body.landing-design .landing-hero-card {
  isolation: isolate;
}

body.landing-design .landing-team {
  left: 21%;
  right: 20%;
}

body.landing-design .landing-team img {
  width: min(56rem, 70vw);
  min-width: 40rem;
  max-height: calc(100% - 0.8rem);
}

body.landing-design .landing-copy,
body.landing-design .landing-side {
  z-index: 5;
}

body.landing-design .landing-copy p {
  color: rgba(23, 23, 23, 0.62);
}

body.landing-design .side-copy p,
body.landing-design .lime-card p,
body.landing-design .landing-about-panel > p,
body.landing-design .page-intro p,
body.landing-design .section-heading p,
body.landing-design .lead {
  color: rgba(21, 21, 21, 0.72);
}

body.landing-design .lime-card h2,
body.landing-design .page-intro h1,
body.landing-design .section-heading h2 {
  text-wrap: balance;
}

body.landing-design .nav-links {
  z-index: 70;
}

@media (max-width: 1120px) {
  body.landing-design .landing-team {
    left: 16%;
    right: 4%;
  }

  body.landing-design .landing-team img {
    width: min(50rem, 82vw);
    min-width: 33rem;
  }
}

@media (max-width: 1080px) {
  body.landing-design .nav-links {
    background: #101010;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 760px) {
  body.landing-design .container,
  body.landing-design .nav-wrap {
    width: min(100% - 0.7rem, 42rem);
    max-width: min(100% - 0.7rem, 42rem);
    margin-left: auto;
    margin-right: auto;
  }

  body.landing-design .landing-hero-card,
  body.landing-design .landing-about-panel,
  body.landing-design .page-intro > .container,
  body.landing-design main > .section > .container,
  body.landing-design .footer-newsletter,
  body.landing-design .footer-wrap.footer-grid,
  body.landing-design .brochure-cover,
  body.landing-design .brochure-section {
    width: min(100% - 0.7rem, 42rem);
    max-width: min(100% - 0.7rem, 42rem);
  }

  body.landing-design .landing-team {
    margin: 0.9rem -1.3rem 0;
  }

  body.landing-design .landing-team img {
    width: 124%;
    min-width: 0;
    max-height: none;
  }

  body.landing-design .nav-links a {
    font-size: 0.74rem;
  }

  body.landing-design .landing-copy h1,
  body.landing-design .page-intro h1 {
    line-height: 1;
  }
}

/* Homepage depth pass */
body.landing-design .landing-hero-card {
  min-height: clamp(36rem, 59vw, 46rem);
}

body.landing-design .landing-about-panel {
  min-height: clamp(14rem, 18vw, 18rem);
}

body.landing-design .home-impact-section .container,
body.landing-design .home-delivery-section .container {
  border: var(--tm-frame-border);
}

body.landing-design .home-impact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
  gap: clamp(1.2rem, 2.4vw, 2.3rem);
  align-items: end;
  background:
    linear-gradient(105deg, rgba(248, 248, 244, 0.98) 0%, rgba(236, 239, 230, 0.9) 100%);
}

body.landing-design .home-impact-intro p {
  max-width: 31rem;
  margin-bottom: 0;
}

body.landing-design .home-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

body.landing-design .home-impact-item {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: 1rem;
  background: rgba(255, 255, 252, 0.85);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

body.landing-design .home-impact-item strong {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1;
  color: #121212;
}

body.landing-design .home-impact-item span {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.7);
}

body.landing-design .home-delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.2rem, 2.5vw, 2.6rem);
  align-items: stretch;
  background:
    linear-gradient(102deg, rgba(248, 248, 244, 0.98) 0%, rgba(237, 241, 233, 0.9) 100%);
}

body.landing-design .home-delivery-copy {
  display: grid;
  align-content: start;
  gap: 0.82rem;
}

body.landing-design .home-delivery-copy p {
  margin: 0;
  max-width: 36rem;
}

body.landing-design .home-delivery-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

body.landing-design .home-delivery-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(8, 66, 140, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

body.landing-design .home-delivery-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #08428c;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
}

body.landing-design .home-delivery-list h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #17304d;
}

body.landing-design .home-delivery-list p {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(23, 48, 77, 0.7);
}

body.landing-design .home-delivery-visual {
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.14);
  background: #dce0d8;
}

body.landing-design .home-delivery-visual img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  filter: var(--tm-image-filter);
}

@media (max-width: 1080px) {
  body.landing-design .home-impact-panel,
  body.landing-design .home-delivery-panel {
    grid-template-columns: 1fr;
  }

  body.landing-design .home-delivery-visual img {
    min-height: 19rem;
  }
}

@media (max-width: 760px) {
  body.landing-design .landing-hero-card {
    min-height: auto;
  }

  body.landing-design .home-impact-grid {
    grid-template-columns: 1fr;
  }

  body.landing-design .home-impact-item strong {
    font-size: 1.5rem;
  }

  body.landing-design .home-delivery-list li {
    padding: 0.82rem 0.85rem;
  }

  body.landing-design .home-delivery-list h3 {
    font-size: 0.94rem;
  }

  body.landing-design .home-delivery-list p {
    font-size: 0.82rem;
  }
}

/* Shirt logo overlay on hero team */
body.landing-design .landing-team .shirt-logo {
  position: absolute;
  width: clamp(0.9rem, 1.55vw, 1.3rem);
  min-width: 0;
  max-width: none;
  height: auto;
  opacity: 0.8;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
  mix-blend-mode: multiply;
}

body.landing-design .landing-team .shirt-logo-left {
  left: 36.8%;
  top: 55.8%;
  transform: rotate(-3deg);
}

body.landing-design .landing-team .shirt-logo-center {
  left: 55.8%;
  top: 62.3%;
  transform: rotate(2deg);
}

body.landing-design .landing-team .shirt-logo-right {
  left: 74.6%;
  top: 57.5%;
  transform: rotate(3deg);
}

@media (max-width: 1120px) {
  body.landing-design .landing-team .shirt-logo {
    width: clamp(0.82rem, 1.95vw, 1.16rem);
  }
}

@media (max-width: 760px) {
  body.landing-design .landing-team .shirt-logo {
    width: clamp(0.72rem, 2.6vw, 0.96rem);
    opacity: 0.7;
  }

  body.landing-design .landing-team .shirt-logo-left {
    left: 36.7%;
    top: 55.7%;
  }

  body.landing-design .landing-team .shirt-logo-center {
    left: 55.7%;
    top: 62.2%;
  }

body.landing-design .landing-team .shirt-logo-right {
    left: 74.4%;
    top: 57.4%;
  }
}

body.landing-design .service-media img[src$=".svg"] {
  filter: none;
}

/* Hero keyword motion on left headline */
body.landing-design .landing-copy h1 .motion-word {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #0a2450 0%, #08428c 45%, #5da8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  animation:
    tm-word-flow 4.8s ease-in-out infinite,
    tm-word-float 3.4s ease-in-out infinite;
}

body.landing-design .landing-copy h1 .motion-word::after {
  content: "";
  position: absolute;
  top: -6%;
  left: -16%;
  width: 40%;
  height: 112%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  transform: skewX(-18deg) translateX(-170%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: tm-word-sweep 3.2s cubic-bezier(0.35, 0.06, 0.22, 1) infinite;
}

@keyframes tm-word-flow {
  0% {
    background-position: 0% 50%;
    filter: saturate(1);
  }
  50% {
    background-position: 100% 50%;
    filter: saturate(1.25);
  }
  100% {
    background-position: 0% 50%;
    filter: saturate(1);
  }
}

@keyframes tm-word-sweep {
  0%,
  16% {
    transform: skewX(-18deg) translateX(-170%);
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  60% {
    transform: skewX(-18deg) translateX(320%);
    opacity: 0.9;
  }
  100% {
    transform: skewX(-18deg) translateX(320%);
    opacity: 0;
  }
}

@keyframes tm-word-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-design .landing-copy h1 .motion-word,
  body.landing-design .landing-copy h1 .motion-word::after {
    animation: none;
  }
}

/* Hero blend and headline descender fix */
body.landing-design .landing-hero-card {
  background: #fdfdfd;
}

body.landing-design .landing-team img {
  mix-blend-mode: normal;
}

body.landing-design .landing-copy h1 {
  line-height: 1.04;
  overflow: visible;
}

body.landing-design .landing-copy h1 .motion-word {
  padding-bottom: 0.04em;
  color: #2db84c;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  animation:
    tm-word-color 2.8s ease-in-out infinite,
    tm-word-float 3.4s ease-in-out infinite;
}

body.landing-design .landing-copy h1 .motion-word::after {
  content: none;
}

@keyframes tm-word-color {
  0%,
  100% {
    color: #1ea93f;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    color: #39d85e;
    text-shadow: 0 0 16px rgba(57, 216, 94, 0.2);
  }
}

/* Depth upgrade for about + impact bands */
body.landing-design .landing-about-panel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.18);
  background:
    radial-gradient(circle at 14% 18%, rgba(8, 66, 140, 0.14), transparent 32%),
    radial-gradient(circle at 88% 30%, rgba(93, 168, 255, 0.18), transparent 34%),
    linear-gradient(112deg, #ffffff 0%, #eef5fc 54%, #e5eff9 100%);
}

body.landing-design .landing-about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  pointer-events: none;
}

body.landing-design .about-label {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 0.28rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.15rem;
  background: linear-gradient(145deg, #0f1114, #161a20);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

body.landing-design .about-label h2 {
  color: #f8faf8;
  letter-spacing: 0.01em;
}

body.landing-design .about-label a {
  color: #6af126;
}

body.landing-design .about-icon {
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

body.landing-design .about-portrait {
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

body.landing-design .landing-about-panel > p {
  color: #1b232e;
  font-weight: 500;
  line-height: 1.16;
  text-wrap: balance;
}

body.landing-design .about-rock {
  width: 16.2rem;
  height: 12.5rem;
  opacity: 0.95;
  transform: rotate(-3deg);
}

body.landing-design .home-impact-panel {
  position: relative;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.14);
  background:
    radial-gradient(circle at 82% 22%, rgba(8, 66, 140, 0.12), transparent 30%),
    linear-gradient(100deg, #ffffff 0%, #eef5fc 57%, #e5eff9 100%);
}

body.landing-design .home-impact-intro h2 {
  text-wrap: balance;
}

body.landing-design .home-impact-item {
  border-color: rgba(18, 18, 18, 0.1);
  border-width: 1.5px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 245, 0.82));
}

@media (max-width: 1080px) {
  body.landing-design .about-label {
    max-width: 22rem;
  }
}

@media (max-width: 760px) {
  body.landing-design .about-label {
    max-width: none;
    padding: 0.82rem 0.85rem;
  }

  body.landing-design .landing-about-panel > p {
    line-height: 1.2;
  }
}

/* Restore original hero motion color treatment */
body.landing-design .landing-copy h1 .motion-word {
  color: transparent;
  background: linear-gradient(100deg, #1f3f8f 0%, #1f78d8 46%, #22c7d9 78%, #5a2fc7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  padding-bottom: 0.08em;
  animation:
    tm-word-flow 4.8s ease-in-out infinite,
    tm-word-float 3.4s ease-in-out infinite;
}

body.landing-design .landing-copy h1 .motion-word::after {
  content: "";
  position: absolute;
  top: -4%;
  left: -16%;
  width: 40%;
  height: 110%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  transform: skewX(-18deg) translateX(-170%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: tm-word-sweep 3.2s cubic-bezier(0.35, 0.06, 0.22, 1) infinite;
}

/* Global corner + width refinement */
body.landing-design {
  --tm-container: min(1720px, calc(100% - 0.45rem));
  --tm-frame-border: 1.5px solid #171717;
  --tm-radius-shell: 2.9rem;
  --tm-radius-panel: 2.25rem;
  --tm-radius-card: 1.35rem;
}

body.landing-design .landing-hero-card,
body.landing-design .landing-about-panel {
  border-radius: var(--tm-radius-shell);
  overflow: hidden;
}

body.landing-design .page-intro > .container,
body.landing-design main > .section > .container,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid,
body.landing-design .brochure-cover,
body.landing-design .brochure-section {
  border-radius: var(--tm-radius-panel);
  overflow: hidden;
}

body.landing-design .service-card,
body.landing-design .feature-card,
body.landing-design .portfolio-card,
body.landing-design .blog-card,
body.landing-design .info-card,
body.landing-design .testimonial-card,
body.landing-design .value-card,
body.landing-design .strip-card,
body.landing-design .timeline,
body.landing-design .contact-form,
body.landing-design .map-card,
body.landing-design .home-impact-item,
body.landing-design .home-delivery-list li,
body.landing-design .lime-card,
body.landing-design .about-label {
  border-radius: var(--tm-radius-card);
  overflow: hidden;
}

body.landing-design .service-media,
body.landing-design .feature-media,
body.landing-design .value-media,
body.landing-design .portfolio-photo,
body.landing-design .about-showcase,
body.landing-design .home-delivery-visual,
body.landing-design .about-portrait,
body.landing-design .side-image,
body.landing-design .side-image img {
  border-radius: calc(var(--tm-radius-card) - 0.22rem);
}

/* Reduce moving outer-light band width */
body.landing-design::before {
  inset: 0.45rem;
  padding: 0.58rem;
  filter: blur(6px);
}

@media (max-width: 760px) {
  body.landing-design {
    --tm-container: calc(100% - 0.42rem);
    --tm-radius-shell: 2.15rem;
    --tm-radius-panel: 1.75rem;
    --tm-radius-card: 1.12rem;
  }
}

/* Sitewide anti-flat elevation pass */
body.landing-design {
  --tm-elev-1: 0 10px 24px rgba(0, 0, 0, 0.08);
  --tm-elev-2: 0 20px 40px rgba(0, 0, 0, 0.12);
  --tm-elev-3: 0 30px 56px rgba(0, 0, 0, 0.16);
}

body.landing-design .page-intro > .container,
body.landing-design main > .section > .container,
body.landing-design .landing-hero-card,
body.landing-design .landing-about-panel,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid {
  box-shadow: var(--tm-elev-2);
}

body.landing-design .page-intro > .container,
body.landing-design main > .section > .container {
  background:
    radial-gradient(circle at 90% 8%, rgba(8, 66, 140, 0.08), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(93, 168, 255, 0.1), transparent 26%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
}

body.landing-design .service-card,
body.landing-design .feature-card,
body.landing-design .portfolio-card,
body.landing-design .blog-card,
body.landing-design .info-card,
body.landing-design .testimonial-card,
body.landing-design .value-card,
body.landing-design .strip-card,
body.landing-design .timeline,
body.landing-design .contact-form,
body.landing-design .map-card,
body.landing-design .home-impact-item,
body.landing-design .home-delivery-list li,
body.landing-design .lime-card {
  position: relative;
  border: 1.5px solid rgba(18, 18, 18, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 242, 0.88));
  box-shadow: var(--tm-elev-1);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

body.landing-design .service-card:hover,
body.landing-design .feature-card:hover,
body.landing-design .portfolio-card:hover,
body.landing-design .blog-card:hover,
body.landing-design .info-card:hover,
body.landing-design .testimonial-card:hover,
body.landing-design .value-card:hover,
body.landing-design .home-impact-item:hover,
body.landing-design .home-delivery-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 66, 140, 0.35);
  box-shadow: var(--tm-elev-2);
}

body.landing-design .service-media,
body.landing-design .feature-media,
body.landing-design .value-media,
body.landing-design .portfolio-photo,
body.landing-design .about-showcase,
body.landing-design .home-delivery-visual,
body.landing-design .about-portrait,
body.landing-design .side-image {
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 10px 22px rgba(0, 0, 0, 0.12);
}

body.landing-design .button,
body.landing-design input[type="submit"] {
  border-color: rgba(16, 16, 16, 0.08);
  background: linear-gradient(145deg, #6ff022, #42bf00);
  box-shadow: 0 14px 26px rgba(66, 191, 0, 0.28);
}

body.landing-design .button-secondary {
  background: linear-gradient(145deg, #121419, #1c222b);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

body.landing-design .button:hover,
body.landing-design .button-secondary:hover,
body.landing-design input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.01);
}

body.landing-design .nav-links {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

body.landing-design .nav-links a {
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

body.landing-design .nav-links a:hover {
  transform: translateY(-1px);
}

body.landing-design input,
body.landing-design textarea,
body.landing-design select {
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.06);
}

body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid {
  background:
    radial-gradient(circle at 95% 8%, rgba(8, 66, 140, 0.16), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(93, 168, 255, 0.14), transparent 26%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 252, 0.94));
}

@media (max-width: 760px) {
  body.landing-design .service-card:hover,
  body.landing-design .feature-card:hover,
  body.landing-design .portfolio-card:hover,
  body.landing-design .blog-card:hover,
  body.landing-design .info-card:hover,
  body.landing-design .testimonial-card:hover,
  body.landing-design .value-card:hover,
  body.landing-design .home-impact-item:hover,
  body.landing-design .home-delivery-list li:hover {
    transform: none;
  }
}

/* Circulating outer-margin light (blue/cyan from reference image) */
body.landing-design {
  isolation: isolate;
}

body.landing-design .page-shell {
  position: relative;
  z-index: 1;
}

body.landing-design::before,
body.landing-design::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 2rem;
}

body.landing-design::before {
  inset: 0.35rem;
  padding: 1rem;
  background:
    conic-gradient(
      from 0deg,
      rgba(0, 0, 0, 0) 0deg 286deg,
      rgba(112, 225, 255, 0.16) 302deg,
      rgba(66, 178, 255, 0.68) 324deg,
      rgba(103, 236, 255, 0.5) 344deg,
      rgba(0, 0, 0, 0) 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(8px);
  mix-blend-mode: screen;
  animation: tm-outer-margin-spin 10s linear infinite;
}

body.landing-design::after {
  inset: -14%;
  background:
    radial-gradient(circle at 16% 18%, rgba(90, 208, 255, 0.24), transparent 38%),
    radial-gradient(circle at 84% 82%, rgba(71, 145, 255, 0.22), transparent 40%);
  filter: blur(42px);
  animation: tm-outer-margin-drift 14s ease-in-out infinite alternate;
}

@keyframes tm-outer-margin-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tm-outer-margin-drift {
  0% {
    transform: translate3d(-1.2%, -1.2%, 0) scale(1);
  }
  100% {
    transform: translate3d(1.2%, 1.2%, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-design::before,
  body.landing-design::after {
    animation: none;
  }
}

/* Final lock: consistent round corners + slimmer outer margin band */
body.landing-design {
  --tm-container: min(1720px, calc(100% - 0.28rem)) !important;
  --tm-frame-border: 1.5px solid #171717 !important;
  --tm-radius-shell: 3rem !important;
  --tm-radius-panel: 2.3rem !important;
  --tm-radius-card: 1.38rem !important;
}

body.landing-design .landing-hero-card,
body.landing-design .landing-about-panel {
  border-radius: var(--tm-radius-shell) !important;
  overflow: hidden !important;
}

body.landing-design .page-intro > .container,
body.landing-design main > .section > .container,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid,
body.landing-design .brochure-cover,
body.landing-design .brochure-section {
  border-radius: var(--tm-radius-panel) !important;
  overflow: hidden !important;
}

body.landing-design .service-card,
body.landing-design .feature-card,
body.landing-design .portfolio-card,
body.landing-design .blog-card,
body.landing-design .info-card,
body.landing-design .testimonial-card,
body.landing-design .value-card,
body.landing-design .strip-card,
body.landing-design .timeline,
body.landing-design .contact-form,
body.landing-design .map-card,
body.landing-design .home-impact-item,
body.landing-design .home-delivery-list li,
body.landing-design .lime-card,
body.landing-design .about-label {
  border-radius: var(--tm-radius-card) !important;
  overflow: hidden !important;
}

body.landing-design .service-media,
body.landing-design .feature-media,
body.landing-design .value-media,
body.landing-design .portfolio-photo,
body.landing-design .about-showcase,
body.landing-design .home-delivery-visual,
body.landing-design .about-portrait,
body.landing-design .side-image,
body.landing-design .side-image img {
  border-radius: calc(var(--tm-radius-card) - 0.2rem) !important;
}

body.landing-design::before,
body.landing-design::after {
  border-radius: 2.65rem !important;
}

body.landing-design::before {
  inset: 0.22rem !important;
  padding: 0.42rem !important;
  filter: blur(5px) !important;
}

@media (max-width: 760px) {
  body.landing-design {
    --tm-container: calc(100% - 0.24rem) !important;
    --tm-radius-shell: 2.25rem !important;
    --tm-radius-panel: 1.82rem !important;
    --tm-radius-card: 1.12rem !important;
  }

  body.landing-design::before {
    inset: 0.18rem !important;
    padding: 0.34rem !important;
  }
}

/* Theme-toggle visual state sync */
body.landing-design .nav-cta .theme-toggle {
  width: 6.3rem !important;
  min-height: 2.28rem !important;
  padding: 0.22rem 0.42rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: linear-gradient(145deg, #0f1319, #151b24) !important;
  color: #eef3fb !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  gap: 0.2rem !important;
  transition: background-color 220ms ease, box-shadow 220ms ease !important;
}

body.landing-design .theme-toggle::before,
body.landing-design .theme-toggle::after {
  content: none !important;
}

body.landing-design .theme-toggle .theme-toggle-label {
  font-size: 0.61rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  color: #eef3fb !important;
  margin-left: 0.2rem !important;
  user-select: none !important;
}

body.landing-design .theme-toggle .theme-toggle-knob {
  flex: 0 0 auto !important;
  width: 1.22rem !important;
  height: 1.22rem !important;
  border-radius: 50% !important;
  background: #08428c !important;
  box-shadow: inset 0 0 0 0.24rem #e8f1fb, 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease !important;
}

body.landing-design[data-theme="dark"] .nav-cta .theme-toggle {
  background: linear-gradient(145deg, #1a2230, #121926) !important;
  border-color: rgba(131, 169, 255, 0.28) !important;
  flex-direction: row-reverse !important;
}

body.landing-design[data-theme="dark"] .theme-toggle .theme-toggle-knob {
  background: #5da8ff !important;
  box-shadow: inset 0 0 0 0.24rem #d7e7ff, 0 2px 6px rgba(0, 0, 0, 0.24) !important;
}

body.landing-design[data-theme="dark"] .theme-toggle .theme-toggle-label {
  color: #dcedff !important;
}

/* Home-only white background mode */
body.landing-design.home-page,
body.landing-design.home-page .page-shell,
body.landing-design.home-page main {
  background: #fdfdfd !important;
}

body.landing-design.home-page .landing-hero,
body.landing-design.home-page .landing-about-section,
body.landing-design.home-page .section,
body.landing-design.home-page .footer {
  background: #fdfdfd !important;
}

body.landing-design.home-page::before,
body.landing-design.home-page::after {
  display: none !important;
}

body.landing-design.home-page .landing-team img {
  mix-blend-mode: normal !important;
}

/* Final hero template-match pass: larger team + diagonal shadow cut base */
body.landing-design .landing-hero-card {
  min-height: clamp(38rem, 62vw, 48rem) !important;
}

body.landing-design .landing-hero-card::after {
  content: "";
  position: absolute;
  left: 34%;
  right: -5%;
  bottom: -2.95rem;
  height: 9.25rem;
  background: linear-gradient(145deg, #080a0e, #141a23);
  clip-path: polygon(0 42%, 74% 42%, 100% 100%, 0 100%);
  border-radius: 2.8rem 2.8rem 0 0;
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.12), 0 14px 34px rgba(0, 0, 0, 0.42);
  z-index: 1;
  pointer-events: none;
}

body.landing-design .landing-team {
  left: 18% !important;
  right: 15% !important;
  bottom: -0.25rem !important;
  z-index: 3 !important;
}

body.landing-design .landing-team img {
  width: min(61rem, 77vw) !important;
  min-width: 47rem !important;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.18)) !important;
}

body.landing-design .tech-rock {
  z-index: 4 !important;
  filter: saturate(0.92) contrast(1.16) brightness(0.78) !important;
}

body.landing-design .rock-one {
  left: -4.7rem !important;
  bottom: 0.08rem !important;
  width: 16.8rem !important;
  height: 8.2rem !important;
  opacity: 0.96 !important;
}

body.landing-design .rock-two {
  left: 4.9rem !important;
  bottom: -0.18rem !important;
  width: 10rem !important;
  height: 4.95rem !important;
  opacity: 0.82 !important;
}

@media (max-width: 1120px) {
  body.landing-design .landing-team {
    left: 15% !important;
    right: 3% !important;
    bottom: -0.15rem !important;
  }

  body.landing-design .landing-team img {
    width: min(56rem, 88vw) !important;
    min-width: 38rem !important;
  }

  body.landing-design .landing-hero-card::after {
    left: 24%;
    right: -8%;
    height: 8rem;
  }
}

@media (max-width: 760px) {
  body.landing-design .landing-team {
    left: auto !important;
    right: auto !important;
    bottom: 0 !important;
  }

  body.landing-design .landing-team img {
    width: 134% !important;
    min-width: 0 !important;
  }

  body.landing-design .landing-hero-card::after {
    left: 8%;
    right: -16%;
    bottom: -2.4rem;
    height: 6.4rem;
    clip-path: polygon(0 36%, 76% 36%, 100% 100%, 0 100%);
  }
}

/* White capsule header pinned while scrolling. */
body.landing-design .site-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 140;
  padding: 0 1rem;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

body.landing-design .site-header .nav-wrap {
  position: relative;
  width: min(1260px, calc(100vw - 1.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.6rem;
  padding: 0.72rem 1.35rem;
  border: 1px solid rgba(8, 66, 140, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(8, 66, 140, 0.12);
  backdrop-filter: blur(18px);
}

body.landing-design .site-header .brand {
  width: auto;
}

body.landing-design .site-header .brand img {
  width: clamp(9rem, 11vw, 11rem);
  height: auto;
  max-height: 2.9rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: left center;
}

body.landing-design .site-header .brand-text {
  display: none;
}

body.landing-design .site-header .nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

body.landing-design .site-header .nav-links::before {
  display: none;
}

body.landing-design .site-header .nav-links a {
  min-width: 0;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  color: #5b6472;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
  background: transparent;
}

body.landing-design .site-header .nav-links a.active,
body.landing-design .site-header .nav-links a:hover {
  color: #ffffff;
  background: #08428c;
}

body.landing-design .site-header .nav-cta {
  justify-self: end;
  display: flex;
  align-items: center;
}

body.landing-design .site-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  color: #08428c;
  font-size: 1.15rem;
  line-height: 1;
}

body.landing-design .site-header .header-icon svg {
  width: 1.12rem;
  height: 1.12rem;
  display: block;
}

body.landing-design .site-header .nav-toggle {
  display: none;
}

@media (max-width: 1080px) {
  body.landing-design .site-header {
    top: 0.85rem;
  }

  body.landing-design .site-header .nav-wrap {
    width: calc(min(100vw, 390px) - 0.7rem);
    max-width: calc(min(100vw, 390px) - 0.7rem);
    min-height: 4.2rem;
    padding: 0.7rem 0.95rem;
  }

  body.landing-design .site-header .nav-toggle {
    display: inline-flex;
    justify-self: end;
    background: rgba(8, 66, 140, 0.1);
    color: #08428c;
  }

  body.landing-design .site-header .nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0.35rem;
    right: 0.35rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 66, 140, 0.12);
    border-radius: 1.4rem;
    box-shadow: 0 18px 38px rgba(8, 66, 140, 0.12);
  }

  body.landing-design .site-header .nav-links.open {
    display: flex;
  }

  body.landing-design .site-header .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.8rem 0.95rem;
  }
}

@media (max-width: 760px) {
  body.landing-design .site-header {
    top: 0.7rem;
    padding: 0 0.35rem;
  }

  body.landing-design .site-header .nav-wrap {
    width: calc(100vw - 0.7rem);
    max-width: calc(100vw - 0.7rem);
  }

body.landing-design .site-header .brand img {
    width: clamp(7.5rem, 38vw, 9rem);
    max-height: 2.4rem;
  }
}

/* Theme color lock for the hero result card. */
body.landing-design .lime-card {
  border: 1px solid rgba(8, 66, 140, 0.22) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(93, 168, 255, 0.36), transparent 10rem),
    linear-gradient(145deg, #08428c, #062b5b) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 52px rgba(8, 66, 140, 0.3) !important;
}

body.landing-design .lime-card h2,
body.landing-design .lime-card p,
body.landing-design .lime-meta {
  color: #ffffff !important;
}

body.landing-design .lime-card p {
  color: rgba(255, 255, 255, 0.76) !important;
}

body.landing-design .lime-card a {
  background: #ffffff !important;
  color: #08428c !important;
  box-shadow: 0 14px 28px rgba(2, 19, 45, 0.18);
}

/* Floating header + working light/dark theme polish. */
body.landing-design {
  color-scheme: light;
}

body.landing-design[data-theme="dark"] {
  color-scheme: dark;
  background: #061426 !important;
  color: #dceafe;
}

body.landing-design[data-theme="dark"] .page-shell,
body.landing-design[data-theme="dark"] main,
body.landing-design[data-theme="dark"].home-page,
body.landing-design[data-theme="dark"].home-page .page-shell,
body.landing-design[data-theme="dark"].home-page main,
body.landing-design[data-theme="dark"] .landing-hero,
body.landing-design[data-theme="dark"] .landing-about-section,
body.landing-design[data-theme="dark"] main > .section,
body.landing-design[data-theme="dark"] .footer {
  background: #061426 !important;
}

body.landing-design .site-header .nav-wrap {
  border-color: rgba(8, 66, 140, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.88));
  box-shadow:
    0 18px 46px rgba(8, 66, 140, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

body.landing-design[data-theme="dark"] .site-header .nav-wrap {
  border-color: rgba(93, 168, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(9, 29, 58, 0.92), rgba(5, 18, 37, 0.9));
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.landing-design[data-theme="dark"] .site-header .nav-links a {
  color: #c8d8ec;
}

body.landing-design[data-theme="dark"] .site-header .nav-links a.active,
body.landing-design[data-theme="dark"] .site-header .nav-links a:hover {
  color: #ffffff;
  background: rgba(93, 168, 255, 0.22);
}

body.landing-design .site-header .theme-toggle.header-icon {
  width: 2.3rem !important;
  min-height: 2.3rem !important;
  height: 2.3rem !important;
  padding: 0 !important;
  border: 1px solid rgba(8, 66, 140, 0.16) !important;
  border-radius: 999px !important;
  background: rgba(8, 66, 140, 0.08) !important;
  color: #08428c !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  cursor: pointer;
}

body.landing-design[data-theme="dark"] .site-header .theme-toggle.header-icon {
  border-color: rgba(93, 168, 255, 0.24) !important;
  background: rgba(93, 168, 255, 0.12) !important;
  color: #dceafe !important;
}

body.landing-design .site-header .theme-toggle.header-icon::before,
body.landing-design .site-header .theme-toggle.header-icon::after {
  content: none !important;
}

body.landing-design .site-header .theme-toggle.header-icon .theme-icon {
  width: 1.08rem;
  height: 1.08rem;
  display: none;
}

body.landing-design .site-header .theme-toggle.header-icon .theme-icon-moon {
  display: block;
}

body.landing-design[data-theme="dark"] .site-header .theme-toggle.header-icon .theme-icon-moon {
  display: none;
}

body.landing-design[data-theme="dark"] .site-header .theme-toggle.header-icon .theme-icon-sun {
  display: block;
}

body.landing-design[data-theme="dark"] .page-intro > .container,
body.landing-design[data-theme="dark"] main > .section > .container,
body.landing-design[data-theme="dark"] .footer-newsletter,
body.landing-design[data-theme="dark"] .footer-wrap.footer-grid,
body.landing-design[data-theme="dark"] .brochure-cover,
body.landing-design[data-theme="dark"] .brochure-section {
  border-color: rgba(93, 168, 255, 0.18) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(93, 168, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(12, 36, 70, 0.98), rgba(7, 22, 45, 0.96)) !important;
}

body.landing-design[data-theme="dark"] .landing-hero-card,
body.landing-design[data-theme="dark"] .landing-about-panel {
  border-color: rgba(93, 168, 255, 0.18) !important;
  background:
    radial-gradient(circle at 72% 20%, rgba(93, 168, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, #0c2446, #07162d) !important;
}

body.landing-design[data-theme="dark"] h1,
body.landing-design[data-theme="dark"] h2,
body.landing-design[data-theme="dark"] h3,
body.landing-design[data-theme="dark"] h4,
body.landing-design[data-theme="dark"] label,
body.landing-design[data-theme="dark"] .landing-copy h1,
body.landing-design[data-theme="dark"] .page-intro h1,
body.landing-design[data-theme="dark"] .section-heading h2,
body.landing-design[data-theme="dark"] .landing-about-panel > p,
body.landing-design[data-theme="dark"] .about-label h2 {
  color: #f3f8ff !important;
}

body.landing-design[data-theme="dark"] p,
body.landing-design[data-theme="dark"] .lead,
body.landing-design[data-theme="dark"] .landing-copy p,
body.landing-design[data-theme="dark"] .page-intro p,
body.landing-design[data-theme="dark"] .section-heading p,
body.landing-design[data-theme="dark"] .service-card p,
body.landing-design[data-theme="dark"] .feature-card p,
body.landing-design[data-theme="dark"] .portfolio-card p,
body.landing-design[data-theme="dark"] .blog-card p,
body.landing-design[data-theme="dark"] .info-card p,
body.landing-design[data-theme="dark"] .value-card p {
  color: rgba(220, 234, 254, 0.74) !important;
}

/* Remove the black outer strip behind the floating header in light mode. */
body.landing-design:not([data-theme="dark"]),
body.landing-design:not([data-theme="dark"]) .page-shell,
body.landing-design:not([data-theme="dark"]) main,
body.landing-design:not([data-theme="dark"]) .landing-hero,
body.landing-design:not([data-theme="dark"]) .landing-about-section,
body.landing-design:not([data-theme="dark"]) main > .section,
body.landing-design:not([data-theme="dark"]) .footer {
  background: #f5f8fd !important;
}

body.landing-design:not([data-theme="dark"])::after {
  background:
    radial-gradient(circle at 14% 10%, rgba(93, 168, 255, 0.18), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(8, 66, 140, 0.1), transparent 38%),
    linear-gradient(180deg, #f5f8fd 0%, #ffffff 58%, #f5f8fd 100%) !important;
  filter: blur(28px) !important;
  mix-blend-mode: normal !important;
}

/* Dark-mode visibility lock across all landing-design surfaces. */
body.landing-design[data-theme="dark"] {
  --tm-ink: #eef6ff;
  --tm-muted: #b9cce4;
  --tm-line: rgba(147, 197, 253, 0.18);
  --tm-shadow: 0 26px 56px rgba(0, 0, 0, 0.35);
  color: #eef6ff !important;
}

body.landing-design[data-theme="dark"] .landing-copy,
body.landing-design[data-theme="dark"] .landing-side,
body.landing-design[data-theme="dark"] .page-intro-copy,
body.landing-design[data-theme="dark"] .section-heading,
body.landing-design[data-theme="dark"] .footer,
body.landing-design[data-theme="dark"] .footer * {
  color: #eef6ff;
}

body.landing-design[data-theme="dark"] .service-card,
body.landing-design[data-theme="dark"] .feature-card,
body.landing-design[data-theme="dark"] .portfolio-card,
body.landing-design[data-theme="dark"] .blog-card,
body.landing-design[data-theme="dark"] .info-card,
body.landing-design[data-theme="dark"] .testimonial-card,
body.landing-design[data-theme="dark"] .value-card,
body.landing-design[data-theme="dark"] .strip-card,
body.landing-design[data-theme="dark"] .timeline,
body.landing-design[data-theme="dark"] .contact-form,
body.landing-design[data-theme="dark"] .map-card,
body.landing-design[data-theme="dark"] .home-impact-item,
body.landing-design[data-theme="dark"] .home-delivery-list li,
body.landing-design[data-theme="dark"] .intro-card,
body.landing-design[data-theme="dark"] .intro-note,
body.landing-design[data-theme="dark"] .landing-note,
body.landing-design[data-theme="dark"] .about-label {
  border-color: rgba(147, 197, 253, 0.2) !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(93, 168, 255, 0.1), transparent 12rem),
    rgba(11, 31, 60, 0.92) !important;
  color: #eef6ff !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28) !important;
}

body.landing-design[data-theme="dark"] .service-card *,
body.landing-design[data-theme="dark"] .feature-card *,
body.landing-design[data-theme="dark"] .portfolio-card *,
body.landing-design[data-theme="dark"] .blog-card *,
body.landing-design[data-theme="dark"] .info-card *,
body.landing-design[data-theme="dark"] .testimonial-card *,
body.landing-design[data-theme="dark"] .value-card *,
body.landing-design[data-theme="dark"] .strip-card *,
body.landing-design[data-theme="dark"] .timeline *,
body.landing-design[data-theme="dark"] .contact-form *,
body.landing-design[data-theme="dark"] .map-card *,
body.landing-design[data-theme="dark"] .home-impact-item *,
body.landing-design[data-theme="dark"] .home-delivery-list li *,
body.landing-design[data-theme="dark"] .intro-card *,
body.landing-design[data-theme="dark"] .intro-note *,
body.landing-design[data-theme="dark"] .landing-note *,
body.landing-design[data-theme="dark"] .about-label * {
  color: inherit;
}

body.landing-design[data-theme="dark"] .eyebrow,
body.landing-design[data-theme="dark"] .card-kicker,
body.landing-design[data-theme="dark"] .portfolio-tag,
body.landing-design[data-theme="dark"] .blog-tag,
body.landing-design[data-theme="dark"] .breadcrumbs,
body.landing-design[data-theme="dark"] .page-intro .eyebrow {
  background: rgba(93, 168, 255, 0.14) !important;
  color: #cfe6ff !important;
}

body.landing-design[data-theme="dark"] .icon-badge,
body.landing-design[data-theme="dark"] .dot,
body.landing-design[data-theme="dark"] .home-delivery-list li > span,
body.landing-design[data-theme="dark"] .about-icon {
  background: #5da8ff !important;
  color: #061426 !important;
}

body.landing-design[data-theme="dark"] input,
body.landing-design[data-theme="dark"] textarea,
body.landing-design[data-theme="dark"] select {
  border-color: rgba(147, 197, 253, 0.24) !important;
  background: rgba(5, 18, 37, 0.88) !important;
  color: #eef6ff !important;
}

body.landing-design[data-theme="dark"] input::placeholder,
body.landing-design[data-theme="dark"] textarea::placeholder {
  color: rgba(220, 234, 254, 0.58) !important;
}

body.landing-design[data-theme="dark"] .button,
body.landing-design[data-theme="dark"] input[type="submit"] {
  background: linear-gradient(135deg, #5da8ff, #2c7bd9) !important;
  color: #061426 !important;
  box-shadow: 0 16px 30px rgba(93, 168, 255, 0.18) !important;
}

body.landing-design[data-theme="dark"] .button-secondary,
body.landing-design[data-theme="dark"] .lime-card a {
  border-color: rgba(147, 197, 253, 0.24) !important;
  background: rgba(220, 234, 254, 0.1) !important;
  color: #eef6ff !important;
}

body.landing-design[data-theme="dark"] .lime-card {
  border-color: rgba(147, 197, 253, 0.24) !important;
  background:
    radial-gradient(circle at 84% 14%, rgba(93, 168, 255, 0.22), transparent 11rem),
    linear-gradient(145deg, #0b2a55, #061426) !important;
}

body.landing-design[data-theme="dark"] .lime-card h2,
body.landing-design[data-theme="dark"] .lime-card p,
body.landing-design[data-theme="dark"] .lime-meta {
  color: #eef6ff !important;
}

body.landing-design[data-theme="dark"] .side-copy p,
body.landing-design[data-theme="dark"] .side-copy span,
body.landing-design[data-theme="dark"] .side-copy a,
body.landing-design[data-theme="dark"] .about-label a,
body.landing-design[data-theme="dark"] .footer a,
body.landing-design[data-theme="dark"] .footer h3,
body.landing-design[data-theme="dark"] .footer strong,
body.landing-design[data-theme="dark"] .footer-tagline,
body.landing-design[data-theme="dark"] .footer-contact-list span {
  color: #dceafe !important;
}

body.landing-design[data-theme="dark"] .service-media,
body.landing-design[data-theme="dark"] .feature-media,
body.landing-design[data-theme="dark"] .value-media,
body.landing-design[data-theme="dark"] .portfolio-photo,
body.landing-design[data-theme="dark"] .about-showcase,
body.landing-design[data-theme="dark"] .home-delivery-visual,
body.landing-design[data-theme="dark"] .about-portrait,
body.landing-design[data-theme="dark"] .side-image {
  border-color: rgba(147, 197, 253, 0.18) !important;
  background: #0b1f3c !important;
}

/* Premium motion layer */
:root {
  --tm-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tm-motion-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --tm-motion-medium: 620ms;
  --tm-motion-slow: 920ms;
}

html {
  scroll-padding-top: 7.5rem;
}

body.landing-design .site-header,
body.landing-design .site-header .nav-wrap,
body.landing-design .site-header .brand img,
body.landing-design .site-header .nav-links a,
body.landing-design .site-header .theme-toggle.header-icon {
  transition:
    transform var(--tm-motion-medium) var(--tm-motion-ease),
    box-shadow var(--tm-motion-medium) var(--tm-motion-ease),
    background-color var(--tm-motion-medium) var(--tm-motion-ease),
    background var(--tm-motion-medium) var(--tm-motion-ease),
    border-color var(--tm-motion-medium) var(--tm-motion-ease),
    color var(--tm-motion-medium) var(--tm-motion-ease),
    opacity var(--tm-motion-medium) var(--tm-motion-ease);
}

body.landing-design.header-scrolled .site-header {
  transform: translateY(-0.18rem);
}

body.landing-design.header-scrolled .site-header .nav-wrap {
  transform: scale(0.985);
  border-color: rgba(8, 66, 140, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.93)) !important;
  box-shadow:
    0 24px 56px rgba(8, 66, 140, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.95) inset;
}

body.landing-design[data-theme="dark"].header-scrolled .site-header .nav-wrap {
  border-color: rgba(93, 168, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(9, 29, 58, 0.96), rgba(5, 18, 37, 0.94)) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(147, 197, 253, 0.16) inset;
}

body.motion-ready [data-reveal] {
  opacity: 0 !important;
  filter: blur(9px);
  transform: translate3d(0, 2.15rem, 0) scale(0.985);
  transition:
    opacity var(--tm-motion-slow) var(--tm-motion-ease),
    transform var(--tm-motion-slow) var(--tm-motion-ease),
    filter var(--tm-motion-slow) var(--tm-motion-ease),
    box-shadow var(--tm-motion-medium) var(--tm-motion-ease),
    border-color var(--tm-motion-medium) var(--tm-motion-ease),
    background var(--tm-motion-medium) var(--tm-motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.motion-ready [data-reveal="fade"] {
  transform: none;
}

body.motion-ready [data-reveal="left"] {
  transform: translate3d(-2.3rem, 0, 0) scale(0.985);
}

body.motion-ready [data-reveal="right"] {
  transform: translate3d(2.3rem, 0, 0) scale(0.985);
}

body.motion-ready [data-reveal="scale"] {
  transform: translate3d(0, 1rem, 0) scale(0.94);
}

body.motion-ready [data-reveal].revealed {
  opacity: 1 !important;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

body.motion-ready [data-reveal].reveal-complete {
  transition-delay: 0ms;
  will-change: auto;
}

body.landing-design .button,
body.landing-design .button-secondary,
body.landing-design input[type="submit"],
body.landing-design .chatbot-toggle,
body.landing-design .chatbot-form button {
  transition:
    transform 360ms var(--tm-motion-snap),
    box-shadow 360ms var(--tm-motion-snap),
    background 360ms var(--tm-motion-snap),
    border-color 360ms var(--tm-motion-snap),
    color 360ms var(--tm-motion-snap);
}

body.landing-design .button:hover,
body.landing-design .button-secondary:hover,
body.landing-design input[type="submit"]:hover,
body.landing-design .chatbot-toggle:hover,
body.landing-design .chatbot-form button:hover {
  transform: translateY(-2px);
}

body.landing-design .landing-hero-card,
body.landing-design .landing-about-panel,
body.landing-design .page-intro > .container,
body.landing-design main > .section > .container,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid,
body.landing-design .spotlight,
body.landing-design .service-card,
body.landing-design .feature-card,
body.landing-design .portfolio-card,
body.landing-design .blog-card,
body.landing-design .info-card,
body.landing-design .testimonial-card,
body.landing-design .value-card,
body.landing-design .strip-card,
body.landing-design .timeline,
body.landing-design .contact-form,
body.landing-design .map-card,
body.landing-design .home-impact-item,
body.landing-design .home-delivery-list li {
  transition:
    transform 520ms var(--tm-motion-ease),
    box-shadow 520ms var(--tm-motion-ease),
    border-color 520ms var(--tm-motion-ease),
    background 520ms var(--tm-motion-ease),
    color 360ms var(--tm-motion-ease);
}

body.landing-design .service-card:hover,
body.landing-design .feature-card:hover,
body.landing-design .portfolio-card:hover,
body.landing-design .blog-card:hover,
body.landing-design .info-card:hover,
body.landing-design .testimonial-card:hover,
body.landing-design .value-card:hover,
body.landing-design .strip-card:hover,
body.landing-design .home-impact-item:hover,
body.landing-design .home-delivery-list li:hover {
  transform: translateY(-0.42rem);
  border-color: rgba(8, 66, 140, 0.22);
  box-shadow:
    0 26px 56px rgba(8, 66, 140, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

body.landing-design[data-theme="dark"] .service-card:hover,
body.landing-design[data-theme="dark"] .feature-card:hover,
body.landing-design[data-theme="dark"] .portfolio-card:hover,
body.landing-design[data-theme="dark"] .blog-card:hover,
body.landing-design[data-theme="dark"] .info-card:hover,
body.landing-design[data-theme="dark"] .testimonial-card:hover,
body.landing-design[data-theme="dark"] .value-card:hover,
body.landing-design[data-theme="dark"] .strip-card:hover,
body.landing-design[data-theme="dark"] .home-impact-item:hover,
body.landing-design[data-theme="dark"] .home-delivery-list li:hover {
  border-color: rgba(93, 168, 255, 0.32) !important;
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(93, 168, 255, 0.08) inset !important;
}

body.landing-design .intro-card img,
body.landing-design .service-media img,
body.landing-design .feature-media img,
body.landing-design .portfolio-photo img,
body.landing-design .about-showcase img,
body.landing-design .value-media img,
body.landing-design .home-delivery-visual img,
body.landing-design .side-image img {
  transition:
    transform 980ms var(--tm-motion-ease),
    filter 620ms var(--tm-motion-ease),
    opacity 620ms var(--tm-motion-ease);
  will-change: transform;
}

body.landing-design .service-card:hover .service-media img,
body.landing-design .feature-card:hover .feature-media img,
body.landing-design .portfolio-card:hover .portfolio-photo img,
body.landing-design .blog-card:hover .portfolio-photo img,
body.landing-design .value-card:hover .value-media img,
body.landing-design .info-card:hover img,
body.landing-design .testimonial-card:hover img,
body.landing-design .home-delivery-visual:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

body.landing-design .landing-team img {
  transition:
    transform 1100ms var(--tm-motion-ease),
    filter 700ms var(--tm-motion-ease);
}

body.landing-design .landing-team:hover img {
  transform: translate3d(0, -0.35rem, 0) scale(1.015);
  filter: saturate(1.04) contrast(1.02);
}

body.landing-design .eyebrow,
body.landing-design .card-kicker,
body.landing-design .portfolio-tag,
body.landing-design .blog-tag,
body.landing-design .icon-badge,
body.landing-design .home-delivery-list li > span {
  transition:
    transform 360ms var(--tm-motion-snap),
    background 360ms var(--tm-motion-snap),
    color 360ms var(--tm-motion-snap),
    box-shadow 360ms var(--tm-motion-snap);
}

body.landing-design .service-card:hover .icon-badge,
body.landing-design .feature-card:hover .icon-badge,
body.landing-design .home-delivery-list li:hover > span {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 14px 24px rgba(8, 66, 140, 0.18);
}

@media (max-width: 760px) {
  body.landing-design.header-scrolled .site-header,
  body.landing-design.header-scrolled .site-header .nav-wrap {
    transform: none;
  }

  body.motion-ready [data-reveal] {
    transform: translate3d(0, 1.3rem, 0);
    filter: blur(5px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready [data-reveal],
  body.motion-ready [data-reveal].revealed {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Footer legal row and cookie consent */
body.landing-design .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b1028;
  box-shadow: 0 0 0 100vmax #0b1028;
  clip-path: inset(0 -100vmax);
}

body.landing-design .footer-bottom p {
  margin: 0;
  color: rgba(242, 246, 255, 0.76);
  font-weight: 700;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

body.landing-design .footer .footer-legal-links a {
  color: rgba(242, 246, 255, 0.84);
  font-weight: 800;
  transition:
    color 260ms var(--tm-motion-snap),
    transform 260ms var(--tm-motion-snap);
}

body.landing-design .footer .footer-legal-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

body.landing-design[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(147, 197, 253, 0.18);
  background: #050b1d;
  box-shadow: 0 0 0 100vmax #050b1d;
}

body.landing-design[data-theme="dark"] .footer-bottom p,
body.landing-design[data-theme="dark"] .footer .footer-legal-links a {
  color: rgba(220, 234, 254, 0.78) !important;
}

body.landing-design[data-theme="dark"] .footer .footer-legal-links a:hover {
  color: #ffffff !important;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  width: min(920px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(8, 66, 140, 0.18);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 8% 10%, rgba(93, 168, 255, 0.22), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.95));
  box-shadow: 0 24px 60px rgba(8, 66, 140, 0.18);
  opacity: 0;
  transform: translate3d(0, 1.3rem, 0) scale(0.985);
  transition:
    opacity 360ms var(--tm-motion-ease),
    transform 360ms var(--tm-motion-ease);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.cookie-consent-copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-kicker {
  width: fit-content;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(8, 66, 140, 0.1);
  color: #08428c;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.cookie-consent p {
  margin: 0;
  max-width: 48rem;
  color: rgba(21, 21, 21, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.cookie-consent .button,
.cookie-consent .button-secondary {
  white-space: nowrap;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
}

body[data-theme="dark"] .cookie-consent {
  border-color: rgba(93, 168, 255, 0.26);
  background:
    radial-gradient(circle at 8% 10%, rgba(93, 168, 255, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(9, 29, 58, 0.98), rgba(5, 18, 37, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

body[data-theme="dark"] .cookie-kicker {
  background: rgba(93, 168, 255, 0.14);
  color: #cfe6ff;
}

body[data-theme="dark"] .cookie-consent h2 {
  color: #f3f8ff;
}

body[data-theme="dark"] .cookie-consent p {
  color: rgba(220, 234, 254, 0.76);
}

@media (max-width: 760px) {
  body.landing-design .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 0.9rem;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    align-items: stretch;
    bottom: 0.7rem;
    width: calc(100vw - 1.4rem);
    padding: 0.9rem;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent .button,
  .cookie-consent .button-secondary {
    flex: 1 1 0;
    padding-inline: 0.75rem;
  }
}

body.landing-design .legal-intro .page-intro-shell {
  grid-template-columns: minmax(0, 1fr);
}

body.landing-design .legal-intro .page-intro-copy {
  max-width: 58rem;
}

body.landing-design .legal-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: var(--tm-frame-border);
  border-radius: var(--tm-radius-panel);
  background:
    radial-gradient(circle at 95% 8%, rgba(8, 66, 140, 0.12), transparent 26%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 252, 0.94));
  box-shadow: var(--tm-elev-2);
}

body.landing-design .legal-card h2 {
  margin: 1rem 0 0;
  color: #101820;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

body.landing-design .legal-card p {
  margin: 0;
  color: rgba(21, 21, 21, 0.68);
  line-height: 1.75;
}

body.landing-design .legal-card a {
  color: #08428c;
  font-weight: 800;
}

body.landing-design .legal-updated {
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(8, 66, 140, 0.1);
  color: #08428c !important;
  font-weight: 900;
}

body.landing-design[data-theme="dark"] .legal-card {
  border-color: rgba(93, 168, 255, 0.18) !important;
  background:
    radial-gradient(circle at 95% 8%, rgba(93, 168, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #0c2446, #07162d) !important;
}

body.landing-design[data-theme="dark"] .legal-card h2 {
  color: #f3f8ff;
}

body.landing-design[data-theme="dark"] .legal-card p {
  color: rgba(220, 234, 254, 0.76);
}

body.landing-design[data-theme="dark"] .legal-card a {
  color: #cfe6ff;
}

body.landing-design[data-theme="dark"] .legal-updated {
  background: rgba(93, 168, 255, 0.14);
  color: #cfe6ff !important;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent,
  .cookie-consent.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Cohesive footer redesign */
body.landing-design .footer,
body.landing-design.home-page .footer,
body.landing-design:not([data-theme="dark"]) .footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 0 !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(93, 168, 255, 0.22), transparent 25rem),
    radial-gradient(circle at 92% 22%, rgba(8, 66, 140, 0.42), transparent 28rem),
    linear-gradient(145deg, #061426 0%, #071c39 48%, #050b1d 100%) !important;
  color: #eef6ff !important;
}

body.landing-design .footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
}

body.landing-design .footer-panel,
body.landing-design .footer-wrap,
body.landing-design .footer-bottom {
  position: relative;
  z-index: 1;
}

body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid {
  border: 1px solid rgba(147, 197, 253, 0.18) !important;
  border-radius: 1.8rem !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(93, 168, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(9, 29, 58, 0.78), rgba(5, 18, 37, 0.62)) !important;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
  backdrop-filter: blur(18px);
}

body.landing-design .footer-newsletter {
  padding: clamp(1.3rem, 3vw, 2.2rem);
}

body.landing-design .footer-newsletter .eyebrow {
  width: fit-content;
  background: rgba(93, 168, 255, 0.14);
  color: #cfe6ff;
}

body.landing-design .footer-newsletter h2 {
  max-width: 46rem;
  margin: 0.35rem 0 0;
  color: #ffffff !important;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.02;
}

body.landing-design .footer-newsletter p,
body.landing-design .footer-tagline,
body.landing-design .footer-contact-list span,
body.landing-design .footer-stack a {
  color: rgba(220, 234, 254, 0.76) !important;
}

body.landing-design .footer-newsletter-form {
  padding: 0.35rem;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

body.landing-design .footer-newsletter-form input {
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
}

body.landing-design .footer-newsletter-form input::placeholder {
  color: rgba(220, 234, 254, 0.62);
}

body.landing-design .footer-newsletter-form .button {
  background: linear-gradient(135deg, #5da8ff, #08428c) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 32px rgba(8, 66, 140, 0.34) !important;
}

body.landing-design .footer-wrap.footer-grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.72fr));
  padding: clamp(1.5rem, 3vw, 2.4rem) !important;
  margin-top: 1.35rem;
}

body.landing-design .footer-branding {
  width: fit-content;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

body.landing-design .footer .brand img {
  width: min(14rem, 100%) !important;
  max-height: 3.4rem !important;
}

body.landing-design .footer a,
body.landing-design .footer h3,
body.landing-design .footer strong {
  color: #ffffff !important;
}

body.landing-design .footer h3 {
  position: relative;
  padding-bottom: 0.72rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

body.landing-design .footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.2rem;
  height: 2px;
  border-radius: 999px;
  background: #5da8ff;
}

body.landing-design .footer-stack a,
body.landing-design .footer-contact-list span {
  font-size: 0.95rem;
  line-height: 1.55;
}

body.landing-design .footer-stack a:hover,
body.landing-design .footer .footer-legal-links a:hover,
body.landing-design .social-links a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 18px rgba(93, 168, 255, 0.5);
}

body.landing-design .social-icon-link {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dceafe !important;
}

body.landing-design .footer-download {
  width: fit-content;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(147, 197, 253, 0.2) !important;
  box-shadow: none !important;
}

body.landing-design .footer-download:hover {
  background: #08428c !important;
  border-color: #5da8ff !important;
}

body.landing-design .footer-bottom {
  width: var(--tm-container);
  padding: 1.2rem 0 1.35rem;
  margin-top: 1.35rem;
  border-top: 1px solid rgba(147, 197, 253, 0.14);
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

body.landing-design .footer-bottom p,
body.landing-design .footer .footer-legal-links a {
  color: rgba(220, 234, 254, 0.76) !important;
}

@media (max-width: 1080px) {
  body.landing-design .footer-wrap.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.landing-design .footer {
    padding-top: 2.2rem !important;
  }

  body.landing-design .footer-newsletter,
  body.landing-design .footer-wrap.footer-grid,
  body.landing-design .footer-bottom {
    width: calc(100vw - 1rem) !important;
    max-width: calc(100vw - 1rem) !important;
  }

  body.landing-design .footer-newsletter-form {
    align-items: stretch;
    border-radius: 1.35rem;
  }

  body.landing-design .footer-newsletter-form .button {
    width: 100%;
  }

  body.landing-design .footer-wrap.footer-grid {
    grid-template-columns: 1fr;
  }

  body.landing-design .footer-bottom {
    padding-inline: 0;
  }
}

/* Bottom legal strip correction */
body.landing-design .footer-bottom {
  width: min(100% - 2rem, 1240px) !important;
  max-width: min(100% - 2rem, 1240px) !important;
  min-height: 4.15rem;
  align-items: center !important;
  padding: 1.1rem clamp(1rem, 2vw, 1.5rem) !important;
  padding-right: clamp(6.25rem, 8vw, 7.4rem) !important;
  margin: 1.35rem auto 0 !important;
  border-top: 1px solid rgba(147, 197, 253, 0.14) !important;
  background: transparent !important;
  border-radius: 0;
}

body.landing-design .footer-bottom p {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 800;
  line-height: 1.45;
}

body.landing-design .footer-legal-links {
  gap: clamp(1.2rem, 2.5vw, 2.1rem);
}

body.landing-design .footer .footer-legal-links a {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.45;
}

@media (max-width: 760px) {
  body.landing-design .footer-bottom {
    width: calc(100vw - 1rem) !important;
    max-width: calc(100vw - 1rem) !important;
    min-height: auto;
    padding: 1rem !important;
    padding-bottom: 5rem !important;
    border-radius: 0;
  }
}

/* Restore light rounded footer cards from the original design */
body.landing-design .footer,
body.landing-design.home-page .footer,
body.landing-design:not([data-theme="dark"]) .footer {
  padding: 0.65rem 0 2rem !important;
  background: #f5f8fd !important;
  color: #151515 !important;
}

body.landing-design.home-page .footer {
  background: #fdfdfd !important;
}

body.landing-design .footer::before {
  content: none !important;
}

body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid {
  border: var(--tm-frame-border) !important;
  border-radius: var(--tm-radius-panel) !important;
  background:
    radial-gradient(circle at 95% 8%, rgba(8, 66, 140, 0.16), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(93, 168, 255, 0.14), transparent 26%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 252, 0.94)) !important;
  box-shadow: var(--tm-elev-2) !important;
  backdrop-filter: none !important;
}

body.landing-design .footer-newsletter {
  padding: clamp(1.5rem, 3vw, 2.3rem) !important;
  color: #17304d !important;
}

body.landing-design .footer-newsletter .eyebrow {
  background: rgba(8, 66, 140, 0.1) !important;
  color: #08428c !important;
}

body.landing-design .footer-newsletter h2 {
  max-width: 43rem;
  margin: 0;
  color: #151515 !important;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
}

body.landing-design .footer-newsletter p,
body.landing-design .footer-tagline,
body.landing-design .footer-stack a,
body.landing-design .footer-contact-list span {
  color: rgba(21, 21, 21, 0.64) !important;
}

body.landing-design .footer-newsletter-form {
  width: min(100%, 34rem);
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.landing-design .footer-newsletter-form input {
  border: 1px solid rgba(190, 206, 232, 0.8) !important;
  border-radius: 1rem !important;
  background: #ffffff !important;
  color: #151515 !important;
}

body.landing-design .footer-newsletter-form input::placeholder {
  color: rgba(21, 21, 21, 0.48);
}

body.landing-design .footer-newsletter-form .button,
body.landing-design .footer-column .button {
  background: linear-gradient(135deg, #52e61a, #37c900) !important;
  color: #050505 !important;
  box-shadow: 0 18px 38px rgba(63, 216, 21, 0.28) !important;
}

body.landing-design .footer-wrap.footer-grid {
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 0.95fr) !important;
  gap: 1.6rem;
  padding: clamp(1.5rem, 3vw, 2.3rem) !important;
  margin-top: 1.35rem;
}

body.landing-design .footer-branding {
  width: auto;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.landing-design .footer .brand img {
  width: min(13rem, 100%) !important;
  max-height: 3.2rem !important;
}

body.landing-design .footer a,
body.landing-design .footer h3,
body.landing-design .footer strong {
  color: #151515 !important;
}

body.landing-design .footer h3 {
  padding-bottom: 0 !important;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  text-transform: none;
}

body.landing-design .footer h3::after {
  content: none !important;
}

body.landing-design .footer-stack a,
body.landing-design .footer-contact-list span {
  font-size: 1rem;
  line-height: 1.55;
}

body.landing-design .footer-stack a:hover,
body.landing-design .social-links a:hover {
  color: #08428c !important;
  text-shadow: none !important;
}

body.landing-design .social-icon-link {
  width: 2.75rem;
  height: 2.75rem;
  border: 0 !important;
  background: #08428c !important;
  color: #ffffff !important;
}

body.landing-design .footer-bottom {
  background: transparent !important;
}

@media (max-width: 1080px) {
  body.landing-design .footer-wrap.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.landing-design .footer-wrap.footer-grid {
    grid-template-columns: 1fr !important;
  }

  body.landing-design .footer-newsletter-form {
    width: 100%;
  }
}

/* Premium legal strip */
body.landing-design .footer-bottom {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.25rem !important;
  width: min(100% - 2rem, 1240px) !important;
  max-width: min(100% - 2rem, 1240px) !important;
  min-height: 4.75rem;
  margin: 1.35rem auto 0 !important;
  padding: 1.05rem clamp(1.2rem, 2.4vw, 1.9rem) !important;
  padding-right: clamp(6.8rem, 8.6vw, 8.2rem) !important;
  overflow: hidden;
  border: 1px solid rgba(93, 168, 255, 0.22) !important;
  border-bottom: 0 !important;
  border-radius: 1.45rem 1.45rem 0 0 !important;
  background:
    radial-gradient(circle at 8% 8%, rgba(93, 168, 255, 0.26), transparent 18rem),
    radial-gradient(circle at 92% 24%, rgba(8, 66, 140, 0.42), transparent 22rem),
    linear-gradient(135deg, #061426 0%, #08244a 54%, #050b1d 100%) !important;
  box-shadow:
    0 -22px 54px rgba(8, 66, 140, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
}

body.landing-design .footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 55%);
  transform: translateX(-35%);
  opacity: 0.9;
}

body.landing-design .footer-bottom::after {
  content: "";
  position: absolute;
  left: clamp(1.2rem, 2.4vw, 1.9rem);
  right: clamp(6.8rem, 8.6vw, 8.2rem);
  top: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, #5da8ff, rgba(93, 168, 255, 0), #5da8ff);
  opacity: 0.62;
}

body.landing-design .footer-bottom p {
  position: relative;
  z-index: 1;
  color: rgba(242, 246, 255, 0.84) !important;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

body.landing-design .footer-legal-links {
  position: relative;
  z-index: 1;
  gap: 0.6rem;
}

body.landing-design .footer .footer-legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 246, 255, 0.88) !important;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

body.landing-design .footer .footer-legal-links a:hover {
  border-color: rgba(147, 197, 253, 0.34);
  background: rgba(93, 168, 255, 0.16);
  color: #ffffff !important;
  text-shadow: 0 0 18px rgba(93, 168, 255, 0.55) !important;
}

@media (max-width: 760px) {
  body.landing-design .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
    width: calc(100vw - 1rem) !important;
    max-width: calc(100vw - 1rem) !important;
    min-height: auto;
    padding: 1rem !important;
    padding-bottom: 5rem !important;
  }

  body.landing-design .footer-bottom::after {
    right: 1rem;
  }

  body.landing-design .footer-legal-links {
    gap: 0.5rem;
  }
}

/* Visible loading and scroll effects */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(93, 168, 255, 0.32), transparent 18rem),
    radial-gradient(circle at 82% 78%, rgba(8, 66, 140, 0.34), transparent 22rem),
    linear-gradient(135deg, #f8fbff, #e9f3ff);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 420ms var(--tm-motion-ease),
    visibility 420ms var(--tm-motion-ease);
  visibility: hidden;
}

.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-loader-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 24rem);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(8, 66, 140, 0.16);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(8, 66, 140, 0.2);
  overflow: hidden;
  transform: translate3d(0, 1rem, 0) scale(0.98);
  transition: transform 520ms var(--tm-motion-ease);
}

.page-loader.is-visible .page-loader-card {
  transform: translate3d(0, 0, 0) scale(1);
}

.page-loader-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 0deg, transparent, rgba(93, 168, 255, 0.26), transparent 34%);
  animation: tm-loader-spin 1.4s linear infinite;
}

.page-loader-card > * {
  position: relative;
  z-index: 1;
}

.page-loader-mark {
  display: grid;
  place-items: center;
  width: 3.8rem;
  aspect-ratio: 1;
  border-radius: 1.05rem;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(8, 66, 140, 0.18);
}

.page-loader-mark img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  animation: tm-loader-pulse 1.1s var(--tm-motion-ease) infinite;
}

.page-loader strong,
.page-loader span {
  display: block;
}

.page-loader strong {
  color: #061426;
  font-size: 1rem;
}

.page-loader span {
  margin-top: 0.18rem;
  color: rgba(21, 21, 21, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
}

body[data-theme="dark"] .page-loader {
  background:
    radial-gradient(circle at 18% 18%, rgba(93, 168, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 78%, rgba(8, 66, 140, 0.34), transparent 22rem),
    linear-gradient(135deg, #061426, #081b36);
}

body[data-theme="dark"] .page-loader-card {
  border-color: rgba(93, 168, 255, 0.22);
  background: rgba(7, 22, 45, 0.9);
}

body[data-theme="dark"] .page-loader strong {
  color: #f3f8ff;
}

body[data-theme="dark"] .page-loader span {
  color: rgba(220, 234, 254, 0.72);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  height: 4px;
  pointer-events: none;
  background: rgba(8, 66, 140, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #08428c, #5da8ff, #37c900);
  box-shadow: 0 0 18px rgba(93, 168, 255, 0.55);
  transition: transform 120ms linear;
}

body.landing-design.motion-ready [data-reveal]:not(.revealed) {
  opacity: 0 !important;
  filter: blur(14px) saturate(0.9);
  transform: translate3d(0, 4rem, 0) scale(0.95) rotateX(7deg) !important;
}

body.landing-design.motion-ready [data-reveal].revealed {
  opacity: 1 !important;
  filter: blur(0) saturate(1);
  transform: translate3d(0, 0, 0) scale(1) rotateX(0deg) !important;
}

body.landing-design.motion-ready .service-card.revealed,
body.landing-design.motion-ready .feature-card.revealed,
body.landing-design.motion-ready .portfolio-card.revealed,
body.landing-design.motion-ready .blog-card.revealed,
body.landing-design.motion-ready .info-card.revealed,
body.landing-design.motion-ready .value-card.revealed,
body.landing-design.motion-ready .home-impact-item.revealed,
body.landing-design.motion-ready .home-delivery-list li.revealed {
  animation: tm-reveal-pop 900ms var(--tm-motion-ease) both;
}

body.landing-design.page-loaded .landing-hero-card {
  animation: tm-page-lift 780ms var(--tm-motion-ease) both;
}

body.landing-design.page-loaded .site-header .nav-wrap {
  animation: tm-header-drop 720ms var(--tm-motion-ease) both;
}

@keyframes tm-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tm-loader-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes tm-reveal-pop {
  0% {
    opacity: 0;
    transform: translate3d(0, 3rem, 0) scale(0.94);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, -0.3rem, 0) scale(1.012);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tm-page-lift {
  0% {
    opacity: 0.74;
    transform: translate3d(0, 1rem, 0) scale(0.992);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tm-header-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, -1.2rem, 0) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .scroll-progress {
    display: none !important;
  }

  body.landing-design.page-loaded .landing-hero-card,
  body.landing-design.page-loaded .site-header .nav-wrap,
  body.landing-design.motion-ready [data-reveal].revealed {
    animation: none !important;
  }
}

/* Pointer tracer */
.pointer-tracer {
  position: fixed;
  inset: 0;
  z-index: 160;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms var(--tm-motion-ease);
}

.pointer-tracer.is-active {
  opacity: 1;
}

.pointer-core,
.pointer-trail {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 999px;
  pointer-events: none;
  translate: -50% -50%;
  will-change: transform;
}

.pointer-core {
  width: 0.72rem;
  height: 0.72rem;
  background: #ffffff;
  border: 2px solid #08428c;
  box-shadow:
    0 0 0 0.42rem rgba(93, 168, 255, 0.12),
    0 0 22px rgba(8, 66, 140, 0.46);
  transition:
    width 180ms var(--tm-motion-snap),
    height 180ms var(--tm-motion-snap),
    box-shadow 180ms var(--tm-motion-snap);
}

.pointer-tracer.is-pressing .pointer-core {
  width: 1.05rem;
  height: 1.05rem;
  box-shadow:
    0 0 0 0.7rem rgba(55, 201, 0, 0.16),
    0 0 28px rgba(8, 66, 140, 0.5);
}

.pointer-trail {
  width: 1.25rem;
  height: 1.25rem;
  background:
    radial-gradient(circle, rgba(93, 168, 255, 0.52), rgba(8, 66, 140, 0.24) 48%, transparent 72%);
  filter: blur(0.5px);
  opacity: 0.72;
}

.pointer-trail:nth-child(3) {
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.58;
}

.pointer-trail:nth-child(4) {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.48;
}

.pointer-trail:nth-child(5) {
  width: 0.82rem;
  height: 0.82rem;
  opacity: 0.38;
}

.pointer-trail:nth-child(6) {
  width: 0.68rem;
  height: 0.68rem;
  opacity: 0.3;
}

.pointer-trail:nth-child(7),
.pointer-trail:nth-child(8) {
  width: 0.56rem;
  height: 0.56rem;
  opacity: 0.22;
  background:
    radial-gradient(circle, rgba(55, 201, 0, 0.46), rgba(93, 168, 255, 0.16) 54%, transparent 72%);
}

body[data-theme="dark"] .pointer-core {
  background: #dceafe;
  border-color: #5da8ff;
  box-shadow:
    0 0 0 0.42rem rgba(93, 168, 255, 0.16),
    0 0 24px rgba(93, 168, 255, 0.6);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .pointer-tracer {
    display: none !important;
  }
}

body.landing-design main > .section {
  padding-inline: 0.2rem !important;
}

body.landing-design main > .section > .container {
  width: calc(100% - 0.45rem) !important;
  max-width: none !important;
  padding: clamp(1rem, 1.8vw, 1.75rem) clamp(0.95rem, 1.9vw, 1.65rem) !important;
}

/* Restore the reference-like landing spacing: inset cards, softer outer gutters. */
body.landing-design {
  --tm-container: min(1180px, calc(100% - 2rem));
}

body.landing-design .container,
body.landing-design .nav-wrap {
  width: var(--tm-container) !important;
  max-width: var(--tm-container) !important;
  margin-inline: auto !important;
}

body.landing-design .site-header .nav-wrap {
  width: min(1260px, calc(100% - 1.5rem)) !important;
  max-width: min(1260px, calc(100% - 1.5rem)) !important;
}

body.landing-design main > .section {
  padding-inline: clamp(1rem, 2vw, 1.45rem) !important;
}

body.landing-design .page-intro > .container,
body.landing-design main > .section > .container,
body.landing-design .footer-panel,
body.landing-design .footer-wrap,
body.landing-design .footer-bottom,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid,
body.landing-design .brochure-cover,
body.landing-design .brochure-section {
  width: var(--tm-container) !important;
  max-width: var(--tm-container) !important;
}

body.landing-design .landing-hero-card,
body.landing-design .landing-about-panel {
  width: 100% !important;
}

body.landing-design .landing-hero-card {
  padding: clamp(5rem, 6.4vw, 6rem) clamp(1.55rem, 2.6vw, 2rem) clamp(1.3rem, 1.9vw, 1.8rem) !important;
}

body.landing-design .landing-about-panel,
body.landing-design main > .section > .container {
  padding: clamp(1.6rem, 3vw, 2.4rem) !important;
}

body.landing-design .footer-wrap.footer-grid {
  padding: clamp(1.5rem, 2.8vw, 2.2rem) !important;
}

/* Sleek teal / lime / charcoal refresh inspired by the supplied references. */
body.landing-design {
  --tm-accent-teal: #004a4d;
  --tm-accent-lime: #94bc45;
  --tm-accent-charcoal: #231f20;
  --tm-accent-teal-soft: rgba(0, 74, 77, 0.08);
  --tm-accent-lime-soft: rgba(148, 188, 69, 0.14);
}

body.landing-design .eyebrow,
body.landing-design .card-kicker,
body.landing-design .portfolio-tag,
body.landing-design .blog-tag {
  width: fit-content;
  color: var(--tm-accent-teal);
  background: var(--tm-accent-teal-soft);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  line-height: 1;
}

body.landing-design .section-heading h2,
body.landing-design .spotlight h2,
body.landing-design .footer-newsletter h2,
body.landing-design .brochure h1,
body.landing-design .brochure h2,
body.landing-design .page-intro h1 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.landing-design .section-heading p,
body.landing-design .lead {
  max-width: 46rem;
}

body.landing-design .site-header .nav-links a.active,
body.landing-design .site-header .nav-links a:hover {
  background: var(--tm-accent-teal);
}

body.landing-design .home-impact-panel,
body.landing-design .home-delivery-panel,
body.landing-design .sleek-strategy-panel,
body.landing-design .sleek-blogs-panel {
  position: relative;
  overflow: hidden;
}

body.landing-design main > .section > .container,
body.landing-design .page-intro > .container {
  position: relative;
  overflow: hidden;
}

body.landing-design .home-impact-panel::before,
body.landing-design .home-delivery-panel::before,
body.landing-design .sleek-strategy-panel::before,
body.landing-design .sleek-blogs-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(148, 188, 69, 0.12), transparent 14rem),
    radial-gradient(circle at 88% 12%, rgba(0, 74, 77, 0.09), transparent 16rem);
  opacity: 0.95;
}

body.landing-design main > .section > .container::before,
body.landing-design .page-intro > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 0%, rgba(148, 188, 69, 0.09), transparent 18rem),
    radial-gradient(circle at 86% 14%, rgba(0, 74, 77, 0.06), transparent 20rem),
    linear-gradient(120deg, transparent 46%, rgba(0, 74, 77, 0.035) 47%, transparent 48%);
  opacity: 0.7;
}

body.landing-design.home-page .landing-hero-card {
  background:
    linear-gradient(135deg, rgba(0, 74, 77, 0.96), rgba(35, 31, 32, 0.94)),
    url("assets/IT consulting.jpg") center/cover no-repeat !important;
  border-color: rgba(0, 74, 77, 0.34) !important;
  box-shadow: 0 28px 64px rgba(0, 74, 77, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08) inset !important;
}

body.landing-design.home-page .landing-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 74, 77, 0.35), rgba(35, 31, 32, 0.08)),
    radial-gradient(circle at 18% 16%, rgba(148, 188, 69, 0.22), transparent 12rem),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 10rem);
  pointer-events: none;
}

body.landing-design.home-page .landing-copy h1,
body.landing-design.home-page .landing-copy p,
body.landing-design.home-page .side-copy p,
body.landing-design.home-page .side-copy a,
body.landing-design.home-page .landing-note,
body.landing-design.home-page .landing-side {
  color: #f8fbf6 !important;
}

body.landing-design.home-page .landing-copy h1 {
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

body.landing-design.home-page .motion-word {
  color: var(--tm-accent-lime);
}

body.landing-design.home-page .landing-copy p,
body.landing-design.home-page .side-copy a {
  color: rgba(248, 251, 246, 0.76) !important;
}

body.landing-design.home-page .hero-actions .button {
  background: linear-gradient(135deg, var(--tm-accent-lime), #b6d95d) !important;
  color: #121212 !important;
  box-shadow: 0 18px 36px rgba(148, 188, 69, 0.26) !important;
}

body.landing-design.home-page .hero-actions .button-secondary {
  background: rgba(35, 31, 32, 0.54) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18) !important;
}

body.landing-design.home-page .landing-note {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(10px);
}

body.landing-design.home-page .landing-note span {
  color: var(--tm-accent-lime) !important;
}

body.landing-design.home-page .landing-team {
  left: 18%;
  right: 16%;
}

body.landing-design.home-page .landing-team img {
  width: min(60rem, 74vw);
  min-width: 44rem;
  mix-blend-mode: normal;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.18));
}

body.landing-design.home-page .lime-card {
  background:
    radial-gradient(circle at 88% 14%, rgba(148, 188, 69, 0.28), transparent 12rem),
    linear-gradient(145deg, #004a4d, #231f20) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.landing-design.home-page .lime-card h2,
body.landing-design.home-page .lime-card p,
body.landing-design.home-page .lime-meta {
  color: #ffffff !important;
}

body.landing-design.home-page .lime-card p {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.landing-design.home-page .lime-card a {
  background: var(--tm-accent-lime) !important;
  color: #231f20 !important;
}

body.landing-design.home-page .landing-about-panel {
  border-color: rgba(0, 74, 77, 0.16) !important;
  background:
    radial-gradient(circle at 82% 50%, rgba(148, 188, 69, 0.18), transparent 12rem),
    linear-gradient(110deg, #ffffff, #f0f7f5) !important;
}

body.landing-design.home-page .landing-about-panel > p,
body.landing-design.home-page .home-impact-intro h2,
body.landing-design.home-page .home-delivery-copy h2 {
  color: #231f20 !important;
}

body.landing-design.home-page .home-impact-panel,
body.landing-design.home-page .home-delivery-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 246, 0.94)) !important;
  border-color: rgba(0, 74, 77, 0.16) !important;
}

body.landing-design.home-page .home-impact-item,
body.landing-design.home-page .home-delivery-list li {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(0, 74, 77, 0.14) !important;
}

body.landing-design.home-page .home-impact-item strong,
body.landing-design.home-page .home-delivery-list li > span {
  color: #ffffff !important;
  background: var(--tm-accent-teal) !important;
}

body.landing-design.home-page .home-impact-item strong {
  display: inline-flex;
  width: fit-content;
  padding: 0.08rem 0.45rem;
  border-radius: 0.5rem;
}

body.landing-design.home-page .sleek-strategy-section .container,
body.landing-design.home-page .sleek-blogs-section .container {
  border-color: rgba(0, 74, 77, 0.16) !important;
  background:
    radial-gradient(circle at 80% 18%, rgba(148, 188, 69, 0.14), transparent 16rem),
    linear-gradient(180deg, #ffffff, #f5fbf9) !important;
}

body.landing-design.home-page .sleek-strategy-panel,
body.landing-design.home-page .sleek-blogs-panel {
  display: grid;
  gap: 1.4rem;
}

body.landing-design.home-page .strategy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(8rem, auto));
  gap: 1rem;
  padding: 0.8rem 0 0.4rem;
}

body.landing-design.home-page .strategy-grid::before {
  content: "";
  position: absolute;
  inset: 17% 23%;
  border: 1px dashed rgba(0, 74, 77, 0.22);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body.landing-design.home-page .strategy-grid > * {
  position: relative;
  z-index: 1;
}

body.landing-design.home-page .strategy-node {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(0, 74, 77, 0.14);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 246, 0.94));
  box-shadow: 0 18px 34px rgba(0, 74, 77, 0.08);
}

body.landing-design.home-page .strategy-node h3 {
  margin: 0;
  color: #231f20;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.15;
}

body.landing-design.home-page .strategy-node p {
  margin: 0;
  color: rgba(35, 31, 32, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

body.landing-design.home-page .strategy-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(148, 188, 69, 0.18);
  color: var(--tm-accent-teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.landing-design.home-page .strategy-design { grid-column: 1; grid-row: 1; }
body.landing-design.home-page .strategy-develop { grid-column: 3; grid-row: 1; }
body.landing-design.home-page .strategy-define { grid-column: 1; grid-row: 3; }
body.landing-design.home-page .strategy-deliver { grid-column: 3; grid-row: 3; }

body.landing-design.home-page .strategy-core {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  place-items: center;
  gap: 0.15rem;
  margin: auto;
  width: min(15rem, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 35% 28%, rgba(148, 188, 69, 0.36), transparent 36%),
    linear-gradient(145deg, var(--tm-accent-teal), var(--tm-accent-charcoal));
  box-shadow: 0 24px 52px rgba(0, 74, 77, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-align: center;
}

body.landing-design.home-page .strategy-core span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

body.landing-design.home-page .strategy-core strong {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.9;
}

body.landing-design.home-page .strategy-core p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

body.landing-design.home-page .sleek-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.landing-design.home-page .sleek-blog-grid .blog-card {
  display: grid;
  align-content: start;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 77, 0.14);
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 74, 77, 0.08);
}

body.landing-design.home-page .sleek-blog-grid .blog-card-featured {
  grid-row: span 2;
}

body.landing-design.home-page .sleek-blog-grid .portfolio-photo {
  margin: 0;
  border-radius: 0;
}

body.landing-design.home-page .sleek-blog-grid .portfolio-photo img {
  min-height: 12rem;
  object-fit: cover;
}

body.landing-design.home-page .sleek-blog-grid .blog-card-featured .portfolio-photo img {
  min-height: 18rem;
}

body.landing-design.home-page .blog-date {
  display: inline-flex;
  width: fit-content;
  margin: 0.7rem 1rem 0;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(148, 188, 69, 0.18);
  color: var(--tm-accent-charcoal);
  font-size: 0.72rem;
  font-weight: 700;
}

body.landing-design.home-page .sleek-blog-grid .blog-card h3 {
  margin: 0.7rem 1rem 0;
  color: #231f20;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1.15;
}

body.landing-design.home-page .sleek-blog-grid .blog-card p {
  margin: 0.65rem 1rem 1rem;
  color: rgba(35, 31, 32, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

body.landing-design.home-page .blog-link {
  display: inline-flex;
  width: fit-content;
  margin: 0 1rem 1rem;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  background: var(--tm-accent-lime);
  color: #231f20;
  font-size: 0.82rem;
  font-weight: 800;
}

body.landing-design.home-page .blog-link:hover {
  background: #a6cc53;
}

body.landing-design.home-page .sleek-strategy-panel .section-heading p,
body.landing-design.home-page .sleek-blogs-panel .section-heading p {
  max-width: 48rem;
}

@media (max-width: 1080px) {
  body.landing-design.home-page .strategy-grid,
  body.landing-design.home-page .sleek-blog-grid {
    grid-template-columns: 1fr;
  }

  body.landing-design.home-page .strategy-grid {
    grid-template-rows: auto;
  }

  body.landing-design.home-page .strategy-grid::before {
    inset: 18% 12%;
  }

  body.landing-design.home-page .strategy-design,
  body.landing-design.home-page .strategy-develop,
  body.landing-design.home-page .strategy-define,
  body.landing-design.home-page .strategy-deliver,
  body.landing-design.home-page .strategy-core,
  body.landing-design.home-page .sleek-blog-grid .blog-card-featured {
    grid-column: auto;
    grid-row: auto;
  }

  body.landing-design.home-page .strategy-core {
    width: min(13rem, 100%);
  }

  body.landing-design.home-page .sleek-blog-grid .blog-card-featured .portfolio-photo img {
    min-height: 12rem;
  }
}

@media (max-width: 760px) {
  body.landing-design.home-page .landing-hero-card {
    background:
      linear-gradient(155deg, rgba(0, 74, 77, 0.98), rgba(35, 31, 32, 0.96)) !important;
  }

  body.landing-design.home-page .landing-team {
    left: 12%;
    right: 10%;
  }

  body.landing-design.home-page .landing-team img {
    width: min(34rem, 92vw);
    min-width: 0;
  }

  body.landing-design.home-page .strategy-grid {
    padding-top: 0.4rem;
  }
}

body.landing-design[data-theme="dark"] .eyebrow,
body.landing-design[data-theme="dark"] .card-kicker,
body.landing-design[data-theme="dark"] .portfolio-tag,
body.landing-design[data-theme="dark"] .blog-tag {
  color: #d8f0ec;
  background: rgba(93, 168, 255, 0.14);
}

body.landing-design[data-theme="dark"] .home-page .landing-hero-card {
  background:
    linear-gradient(135deg, rgba(2, 34, 41, 0.98), rgba(5, 18, 37, 0.96)),
    url("assets/IT consulting.jpg") center/cover no-repeat !important;
}

body.landing-design[data-theme="dark"] .home-page .landing-copy h1,
body.landing-design[data-theme="dark"] .home-page .landing-copy p,
body.landing-design[data-theme="dark"] .home-page .side-copy p,
body.landing-design[data-theme="dark"] .home-page .landing-note,
body.landing-design[data-theme="dark"] .home-page .landing-side {
  color: #eef6ff !important;
}

body.landing-design[data-theme="dark"] .home-page .hero-actions .button {
  background: linear-gradient(135deg, #94bc45, #b7d86d) !important;
  color: #121212 !important;
}

body.landing-design[data-theme="dark"] .home-page .hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: #eef6ff !important;
}

body.landing-design[data-theme="dark"] .home-page .lime-card,
body.landing-design[data-theme="dark"] .home-page .strategy-node,
body.landing-design[data-theme="dark"] .home-page .sleek-blog-grid .blog-card,
body.landing-design[data-theme="dark"] .home-page .home-impact-panel,
body.landing-design[data-theme="dark"] .home-page .home-delivery-panel,
body.landing-design[data-theme="dark"] .home-page .landing-about-panel {
  border-color: rgba(93, 168, 255, 0.2) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(93, 168, 255, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(8, 24, 45, 0.98), rgba(4, 14, 28, 0.95)) !important;
  color: #eef6ff !important;
}

body.landing-design[data-theme="dark"] .home-page .strategy-node h3,
body.landing-design[data-theme="dark"] .home-page .sleek-blog-grid .blog-card h3,
body.landing-design[data-theme="dark"] .home-page .landing-about-panel > p,
body.landing-design[data-theme="dark"] .home-page .home-impact-intro h2,
body.landing-design[data-theme="dark"] .home-page .home-delivery-copy h2 {
  color: #f5fbff !important;
}

body.landing-design[data-theme="dark"] .home-page .strategy-node p,
body.landing-design[data-theme="dark"] .home-page .sleek-blog-grid .blog-card p,
body.landing-design[data-theme="dark"] .home-page .home-impact-item span,
body.landing-design[data-theme="dark"] .home-page .home-delivery-list p,
body.landing-design[data-theme="dark"] .home-page .blog-date {
  color: rgba(226, 238, 252, 0.76) !important;
}

body.landing-design[data-theme="dark"] .home-page .strategy-core {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Final global tightening for all landing-design pages. */
body.landing-design {
  --tm-container: min(1240px, calc(100% - 1.25rem));
}

body.landing-design .page-shell {
  padding-top: 4.85rem;
}

body.landing-design .page-intro,
body.landing-design main > .section,
body.landing-design .footer {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

body.landing-design .page-intro > .container,
body.landing-design main > .section > .container,
body.landing-design .footer-panel,
body.landing-design .footer-wrap,
body.landing-design .footer-bottom,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid,
body.landing-design .brochure-cover,
body.landing-design .brochure-section {
  width: var(--tm-container) !important;
  max-width: var(--tm-container) !important;
}

body.landing-design .page-intro > .container {
  min-height: clamp(24rem, 38vw, 30rem);
  padding: clamp(4.2rem, 5.5vw, 5.2rem) clamp(1.2rem, 2.2vw, 1.8rem) clamp(1.3rem, 2.2vw, 1.7rem);
}

body.landing-design .page-intro-shell {
  gap: clamp(1rem, 2vw, 1.6rem);
}

body.landing-design main > .section > .container,
body.landing-design .footer-newsletter,
body.landing-design .footer-wrap.footer-grid,
body.landing-design .brochure-cover,
body.landing-design .brochure-section {
  padding: clamp(1.2rem, 2.1vw, 2rem) !important;
}

body.landing-design .section-heading {
  margin-bottom: clamp(0.9rem, 1.8vw, 1.4rem);
}

body.landing-design .page-intro h1,
body.landing-design .section-heading h2 {
  text-wrap: balance;
}

body.landing-design .site-header {
  top: 0.8rem;
}

body.landing-design .site-header .nav-wrap {
  width: min(1260px, calc(100vw - 1rem));
  min-height: 4.4rem;
  padding: 0.64rem 1.1rem;
  transform-origin: center top;
}

body.landing-design.header-scrolled .site-header {
  top: 0.55rem;
}

body.landing-design.header-scrolled .site-header .nav-wrap {
  transform: scale(0.965);
  width: min(1180px, calc(100vw - 1.2rem));
  padding: 0.5rem 0.94rem;
}

body.landing-design.header-scrolled .site-header .brand img {
  width: clamp(8rem, 10vw, 10rem);
}

body.landing-design.header-scrolled .site-header .nav-links a {
  padding: 0.56rem 0.82rem;
}

body.landing-design.header-scrolled .site-header .theme-toggle.header-icon {
  width: 2.05rem !important;
  height: 2.05rem !important;
}

@media (max-width: 1080px) {
  body.landing-design .page-intro > .container,
  body.landing-design main > .section > .container,
  body.landing-design .footer-newsletter,
  body.landing-design .footer-wrap.footer-grid,
  body.landing-design .brochure-cover,
  body.landing-design .brochure-section {
    padding: clamp(1rem, 2.4vw, 1.6rem) !important;
  }
}

@media (max-width: 760px) {
  body.landing-design {
    --tm-container: calc(100% - 0.7rem);
  }

  body.landing-design .page-shell {
    padding-top: 4.4rem;
  }

  body.landing-design .page-intro,
  body.landing-design main > .section,
  body.landing-design .footer {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  body.landing-design .page-intro > .container {
    min-height: auto;
    padding: 4.6rem 1rem 1.1rem;
  }

  body.landing-design .site-header {
    top: 0.55rem;
  }

  body.landing-design .site-header .nav-wrap {
    width: calc(100vw - 0.7rem);
    padding: 0.58rem 0.9rem;
    min-height: 4rem;
  }

  body.landing-design.header-scrolled .site-header .nav-wrap {
    transform: scale(0.985);
    width: calc(100vw - 0.6rem);
  }
}

/* Final global polish for landing pages and calmer dark-mode blending. */
body.landing-design .page-intro {
  padding: 0.25rem 0 0.45rem;
}

body.landing-design main > .section {
  padding: 0.25rem 0;
}

body.landing-design .footer {
  padding: 0.35rem 0 1.15rem;
}

body.landing-design[data-theme="dark"] {
  --tm-ink: #eff6f4;
  --tm-muted: #aab9b2;
  --tm-surface: #0d1514;
  --tm-surface-alt: #111c1b;
  --tm-line: rgba(148, 188, 69, 0.15);
  --tm-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at 12% 0%, rgba(148, 188, 69, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(0, 74, 77, 0.2), transparent 24rem),
    linear-gradient(180deg, #071111 0%, #0b1615 100%) !important;
  color: #eff6f4;
}

body.landing-design[data-theme="dark"] .page-shell,
body.landing-design[data-theme="dark"] main,
body.landing-design[data-theme="dark"] .landing-hero,
body.landing-design[data-theme="dark"] .landing-about-section,
body.landing-design[data-theme="dark"] main > .section,
body.landing-design[data-theme="dark"] .footer {
  background: transparent !important;
}

body.landing-design[data-theme="dark"] .site-header .nav-wrap,
body.landing-design[data-theme="dark"] .page-intro > .container,
body.landing-design[data-theme="dark"] main > .section > .container,
body.landing-design[data-theme="dark"] .footer-newsletter,
body.landing-design[data-theme="dark"] .footer-wrap.footer-grid,
body.landing-design[data-theme="dark"] .brochure-cover,
body.landing-design[data-theme="dark"] .brochure-section,
body.landing-design[data-theme="dark"] .landing-hero-card,
body.landing-design[data-theme="dark"] .landing-about-panel,
body.landing-design[data-theme="dark"] .home-impact-panel,
body.landing-design[data-theme="dark"] .home-delivery-panel,
body.landing-design[data-theme="dark"] .sleek-strategy-panel,
body.landing-design[data-theme="dark"] .sleek-blogs-panel {
  border-color: rgba(148, 188, 69, 0.14) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(148, 188, 69, 0.09), transparent 16rem),
    linear-gradient(145deg, rgba(12, 20, 20, 0.98), rgba(16, 28, 29, 0.95)) !important;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32) !important;
}

body.landing-design[data-theme="dark"] .page-intro h1,
body.landing-design[data-theme="dark"] .section-heading h2,
body.landing-design[data-theme="dark"] .landing-copy h1,
body.landing-design[data-theme="dark"] .home-impact-intro h2,
body.landing-design[data-theme="dark"] .home-delivery-copy h2,
body.landing-design[data-theme="dark"] .strategy-node h3,
body.landing-design[data-theme="dark"] .sleek-blog-grid .blog-card h3,
body.landing-design[data-theme="dark"] .landing-about-panel > p,
body.landing-design[data-theme="dark"] .footer h3,
body.landing-design[data-theme="dark"] .footer strong {
  color: #f4fbf8 !important;
}

body.landing-design[data-theme="dark"] .page-intro p,
body.landing-design[data-theme="dark"] .section-heading p,
body.landing-design[data-theme="dark"] .landing-copy p,
body.landing-design[data-theme="dark"] .home-impact-item span,
body.landing-design[data-theme="dark"] .home-delivery-list p,
body.landing-design[data-theme="dark"] .strategy-node p,
body.landing-design[data-theme="dark"] .sleek-blog-grid .blog-card p,
body.landing-design[data-theme="dark"] .footer p,
body.landing-design[data-theme="dark"] .footer a,
body.landing-design[data-theme="dark"] .footer span {
  color: rgba(234, 244, 240, 0.76) !important;
}

body.landing-design[data-theme="dark"] .eyebrow,
body.landing-design[data-theme="dark"] .card-kicker,
body.landing-design[data-theme="dark"] .portfolio-tag,
body.landing-design[data-theme="dark"] .blog-tag,
body.landing-design[data-theme="dark"] .strategy-label {
  color: #d0e97e !important;
  background: rgba(148, 188, 69, 0.08) !important;
  border: 1px solid rgba(148, 188, 69, 0.14) !important;
  box-shadow: none !important;
}

body.landing-design[data-theme="dark"] .hero-actions .button,
body.landing-design[data-theme="dark"] .button,
body.landing-design[data-theme="dark"] input[type="submit"] {
  background: linear-gradient(135deg, #94bc45, #c0df73) !important;
  color: #131313 !important;
}

body.landing-design[data-theme="dark"] .hero-actions .button-secondary,
body.landing-design[data-theme="dark"] .button-secondary,
body.landing-design[data-theme="dark"] .theme-toggle.header-icon {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #f4fbf8 !important;
}

body.landing-design[data-theme="dark"] .home-page .landing-hero-card,
body.landing-design[data-theme="dark"] .home-page .landing-about-panel,
body.landing-design[data-theme="dark"] .home-page .home-impact-panel,
body.landing-design[data-theme="dark"] .home-page .home-delivery-panel,
body.landing-design[data-theme="dark"] .home-page .sleek-strategy-panel,
body.landing-design[data-theme="dark"] .home-page .sleek-blogs-panel {
  background:
    radial-gradient(circle at 82% 14%, rgba(148, 188, 69, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(12, 20, 20, 0.98), rgba(16, 28, 29, 0.95)) !important;
}

body.landing-design[data-theme="dark"] .site-header .nav-links a.active,
body.landing-design[data-theme="dark"] .site-header .nav-links a:hover {
  color: #121212 !important;
  background: #b7d86d !important;
}

body.landing-design[data-theme="dark"] .home-page .landing-note,
body.landing-design[data-theme="dark"] .home-page .home-impact-item,
body.landing-design[data-theme="dark"] .home-page .home-delivery-list li,
body.landing-design[data-theme="dark"] .home-page .strategy-node,
body.landing-design[data-theme="dark"] .home-page .sleek-blog-grid .blog-card {
  border-color: rgba(148, 188, 69, 0.15) !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(148, 188, 69, 0.08), transparent 12rem),
    rgba(12, 20, 20, 0.94) !important;
}

body.landing-design[data-theme="dark"] .home-page .landing-team img {
  mix-blend-mode: normal;
}

body.landing-design[data-theme="dark"] .page-intro {
  background:
    linear-gradient(120deg, rgba(5, 16, 30, 0.92), rgba(8, 28, 53, 0.86)),
    url("assets/wallpaper.jpg"),
    radial-gradient(circle at 12% 18%, rgba(93, 168, 255, 0.08), transparent 18rem),
    radial-gradient(circle at 88% 20%, rgba(148, 188, 69, 0.1), transparent 16rem),
    radial-gradient(circle at 74% 78%, rgba(91, 163, 255, 0.12), transparent 18rem) !important;
}

body.landing-design[data-theme="dark"] .page-intro::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
  opacity: 0.08 !important;
}

body.landing-design[data-theme="dark"] .page-intro::after {
  height: 150px;
  background: linear-gradient(180deg, rgba(6, 17, 33, 0), rgba(6, 17, 33, 0.96)) !important;
}

body.landing-design[data-theme="dark"] .page-intro > .container,
body.landing-design[data-theme="dark"] .page-intro-shell,
body.landing-design[data-theme="dark"] .page-intro-copy,
body.landing-design[data-theme="dark"] .page-intro-visual,
body.landing-design[data-theme="dark"] .intro-card,
body.landing-design[data-theme="dark"] .intro-note {
  background: transparent !important;
}

body.landing-design[data-theme="dark"] .intro-card,
body.landing-design[data-theme="dark"] .intro-note {
  border-color: rgba(147, 197, 253, 0.14) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
}

body.landing-design[data-theme="dark"] main > .section > .container::before,
body.landing-design[data-theme="dark"] .page-intro > .container::before {
  background:
    radial-gradient(circle at 14% 0%, rgba(148, 188, 69, 0.12), transparent 18rem),
    radial-gradient(circle at 86% 14%, rgba(93, 168, 255, 0.09), transparent 20rem),
    linear-gradient(120deg, transparent 46%, rgba(148, 188, 69, 0.06) 47%, transparent 48%) !important;
  opacity: 0.9 !important;
}

body.landing-design[data-theme="dark"] .home-page .strategy-grid::before {
  border-color: rgba(148, 188, 69, 0.16);
  opacity: 0.6;
}

body.landing-design[data-theme="dark"] .home-page .strategy-grid::after {
  content: "";
  position: absolute;
  inset: 14% 10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(93, 168, 255, 0.18), transparent 0.32rem),
    radial-gradient(circle at 30% 40%, rgba(148, 188, 69, 0.16), transparent 0.24rem),
    radial-gradient(circle at 72% 55%, rgba(93, 168, 255, 0.14), transparent 0.28rem),
    radial-gradient(circle at 84% 46%, rgba(148, 188, 69, 0.14), transparent 0.24rem);
  opacity: 0.7;
  z-index: 0;
}

body.landing-design[data-theme="dark"] .home-page .sleek-blog-grid .blog-card,
body.landing-design[data-theme="dark"] .home-page .home-impact-item,
body.landing-design[data-theme="dark"] .home-page .home-delivery-list li,
body.landing-design[data-theme="dark"] .home-page .strategy-node,
body.landing-design[data-theme="dark"] .spotlight,
body.landing-design[data-theme="dark"] .service-card,
body.landing-design[data-theme="dark"] .feature-card,
body.landing-design[data-theme="dark"] .portfolio-card,
body.landing-design[data-theme="dark"] .blog-card,
body.landing-design[data-theme="dark"] .info-card,
body.landing-design[data-theme="dark"] .testimonial-card,
body.landing-design[data-theme="dark"] .value-card,
body.landing-design[data-theme="dark"] .strip-card,
body.landing-design[data-theme="dark"] .timeline,
body.landing-design[data-theme="dark"] .contact-form,
body.landing-design[data-theme="dark"] .map-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(148, 188, 69, 0.06), transparent 12rem),
    linear-gradient(145deg, rgba(10, 18, 20, 0.98), rgba(14, 26, 27, 0.94)) !important;
}

body.landing-design[data-theme="dark"] .page-intro > .container::before,
body.landing-design[data-theme="dark"] main > .section > .container::before {
  opacity: 0.75 !important;
}
