/*
Theme Name: Small Business Theme
Description: A lightweight custom theme for a small business site (Elementor-friendly).
Author: Alastair Grandison
Version: 1.0.0
Text Domain: small-business-theme
*/

:root {
  --tech-blue: #29aedf;
  --tech-blue-dark: #0e6faf;
  --ai-orange: #e0951d;
  --ai-orange-light: #ffb347;
  --silver: #c9ced6;
  --bg-dark: #0f172a;

  --text-light: #f8fafc;
  --text-soft: #d9e3ef;
  --text-muted: #aeb7c4;
  --panel: rgba(13, 24, 46, 0.78);
  --panel-strong: rgba(10, 17, 34, 0.9);
  --border-soft: rgba(201, 206, 214, 0.28);
  --border-strong: rgba(41, 174, 223, 0.45);
  --shadow-soft: 0 12px 28px rgba(3, 7, 16, 0.3);
  --shadow-glow: 0 18px 44px rgba(4, 10, 23, 0.45);

  --sb-color-bg: var(--bg-dark);
  --sb-color-text: var(--text-light);
  --sb-color-muted: var(--text-muted);
  --sb-color-primary: var(--tech-blue);
  --sb-color-primary-contrast: #04111f;
  --sb-color-border: var(--border-soft);

  --sb-container: 1180px;
  --sb-gutter: 1.1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 6% -16%, rgba(41, 174, 223, 0.36), transparent 34%),
    radial-gradient(circle at 92% -6%, rgba(224, 149, 29, 0.18), transparent 30%),
    linear-gradient(160deg, #080f1d 0%, #0f172a 48%, #132341 100%);
  color: var(--sb-color-text);
  font-family: "Urbanist", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.62;
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -18% -14%;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 20% 26%, rgba(41, 174, 223, 0.3), transparent 38%),
    radial-gradient(circle at 82% 22%, rgba(224, 149, 29, 0.28), transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(68, 196, 243, 0.18), transparent 44%);
  filter: blur(42px) saturate(130%);
  animation: fx-aurora-drift 18s ease-in-out infinite alternate;
}

body::after {
  background:
    conic-gradient(from 90deg at 24% 24%, transparent 0deg, rgba(41, 174, 223, 0.16) 70deg, transparent 155deg),
    conic-gradient(from 270deg at 78% 68%, transparent 0deg, rgba(224, 149, 29, 0.17) 72deg, transparent 150deg);
  mix-blend-mode: screen;
  opacity: 0.6;
  animation: fx-prism-drift 24s linear infinite;
}

.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.fx-orb-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fx-orb {
  position: absolute;
  left: var(--orb-left, 50%);
  top: var(--orb-top, 50%);
  width: var(--orb-size, 220px);
  height: var(--orb-size, 220px);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), var(--orb-color, rgba(41, 174, 223, 0.26)) 52%, transparent 72%);
  opacity: 0.33;
  filter: blur(3px);
  transform: translate3d(-50%, -50%, 0);
  animation: fx-orb-float var(--orb-duration, 18s) ease-in-out infinite;
}

body.fx-ready .is-revealable {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 0.85s ease,
    transform 0.9s cubic-bezier(0.18, 0.74, 0.22, 1),
    filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.fx-ready .is-revealable.is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

.fx-tilt {
  transform-style: preserve-3d;
  transform: perspective(980px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
  transition: transform 0.28s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  isolation: isolate;
}

.fx-tilt::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(224, 149, 29, 0.34), transparent 58%);
  opacity: var(--glow-alpha, 0);
  transition: opacity 0.24s ease;
}

.fx-tilt.is-tilting {
  --tilt-lift: -5px;
  --glow-alpha: 1;
}

.fx-float {
  animation: fx-card-float var(--float-duration, 8.4s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.tl-btn,
.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tl-btn::before,
.button::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -45%;
  width: 44%;
  height: 360%;
  transform: rotate(22deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  animation: fx-button-streak 3.6s linear infinite;
  pointer-events: none;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .tl-heading {
    background-image: linear-gradient(104deg, #f8fbff 10%, #29aedf 38%, #e0951d 64%, #f8fbff 90%);
    background-size: 230% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fx-heading-shimmer 8s ease-in-out infinite;
  }
}

@keyframes fx-aurora-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2.5%, -2.5%, 0) scale(1.08);
  }
}

@keyframes fx-prism-drift {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.04);
  }
}

@keyframes fx-orb-float {
  0%,
  100% {
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  50% {
    transform: translate3d(-50%, -56%, 0) scale(1.14);
  }
}

@keyframes fx-card-float {
  0%,
  100% {
    transform: perspective(980px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
  }
  50% {
    transform: perspective(980px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(calc(var(--tilt-lift, 0px) - 4px));
  }
}

@keyframes fx-button-streak {
  0% {
    transform: translateX(-160%) rotate(22deg);
  }
  100% {
    transform: translateX(340%) rotate(22deg);
  }
}

@keyframes fx-heading-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .fx-orb-field {
    display: none !important;
  }

  .fx-float {
    animation: none !important;
  }

  body.fx-ready .is-revealable {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .tl-btn::before,
  .button::before {
    animation: none !important;
    display: none;
  }
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #f8fbff;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--tech-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #8edcf5;
  text-decoration-thickness: 0.12em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 179, 71, 0.85);
  outline-offset: 2px;
}

.container {
  width: min(var(--sb-container), calc(100% - (var(--sb-gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--sb-color-border);
  background: rgba(10, 17, 34, 0.86);
  backdrop-filter: blur(12px);
  transition: transform 0.24s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px clamp(0.95rem, 2.4vw, 2.4rem);
}

.site-branding {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-branding__logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-branding a {
  color: inherit;
  text-decoration: none;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo-link img {
  height: 95px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.site-branding__text {
  min-width: 0;
}

.site-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.45vw, 1.95rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.site-title a {
  color: #f4f9ff;
  text-decoration: none;
}

.site-title a:hover {
  color: #a5e4f9;
}

.site-description {
  margin: 0.26rem 0 0;
  color: rgba(201, 206, 214, 0.9);
  font-size: 0.95rem;
  line-height: 1.3;
}

.primary-nav {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border-soft);
  background: linear-gradient(145deg, rgba(41, 174, 223, 0.16), rgba(14, 111, 175, 0.3));
  color: #eef8ff;
  padding: 0.5rem 0.82rem;
  border-radius: 0.66rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.primary-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
}

.primary-menu li {
  margin: 0;
}

.primary-menu a {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.54rem 0.96rem;
  color: #e9f0fd;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.75vw, 1.55rem);
  line-height: 1;
  transition: 0.2s ease;
}

.primary-menu a:hover {
  color: #ffffff;
  background: rgba(41, 174, 223, 0.2);
  border-color: rgba(41, 174, 223, 0.44);
}

.primary-menu a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(41, 174, 223, 0.24), rgba(224, 149, 29, 0.26));
  border-color: rgba(224, 149, 29, 0.58);
}

.site-main {
  padding: clamp(2rem, 4.8vw, 3.4rem) 0;
}

.page-template-template-full-width .site-main {
  padding: 0;
}

.entry-content {
  color: var(--text-soft);
}

.entry-content--prose {
  max-width: 76ch;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--sb-color-border);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 2.8vw, 2rem);
}

.entry-content--prose > :first-child {
  margin-top: 0;
}

.entry-content--prose > :last-child {
  margin-bottom: 0;
}

.entry-content--prose h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.entry-content--prose h3 {
  margin: 1.4rem 0 0.7rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.entry-content--prose ul,
.entry-content--prose ol {
  margin: 0.95rem 0 1rem;
  padding: 0.85rem 1.05rem 0.85rem 1.8rem;
  background: rgba(10, 17, 34, 0.55);
  border: 1px solid rgba(201, 206, 214, 0.22);
  border-radius: 0.82rem;
}

.entry-content--full-width {
  width: 100%;
}

.entry-content--full-width > * {
  margin: 0;
}

.tl-shell {
  width: 100%;
  max-width: var(--sb-container);
  margin-inline: auto;
  padding-inline: var(--sb-gutter);
}

.tl-shell--narrow {
  max-width: 860px;
}

.elementor .e-con.tl-shell {
  width: 100%;
  max-width: var(--sb-container);
  margin-inline: auto;
  padding-inline: var(--sb-gutter);
}

.elementor .e-con.tl-shell--narrow {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--sb-gutter);
}

.tl-hero-stage {
  padding: 0;
}

.tl-hero-video {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #020617;
}

.tl-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(41, 174, 223, 0.24), transparent 44%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.36) 100%);
  pointer-events: none;
}

.tl-hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.tl-hero-video__controls {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tl-hero-video__sound,
.tl-hero-video__play {
  border: 1px solid rgba(201, 206, 214, 0.42);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
  color: #ecf4ff;
  font-weight: 800;
  font-family: inherit;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
  width: clamp(3rem, 4vw, 3.9rem);
  height: clamp(3rem, 4vw, 3.9rem);
  padding: 0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.tl-hero-video__sound:hover,
.tl-hero-video__play:hover {
  border-color: rgba(41, 174, 223, 0.7);
  background: rgba(14, 111, 175, 0.4);
}

.tl-hero-video__sound.is-hidden {
  display: none;
}

.tl-section {
  position: relative;
  padding: clamp(2.4rem, 6vw, 5rem) 0;
}

.tl-section--tight {
  padding: clamp(1.8rem, 4.5vw, 3.2rem) 0;
}

.tl-section--alt {
  background:
    radial-gradient(circle at 90% 6%, rgba(224, 149, 29, 0.1), transparent 33%),
    linear-gradient(180deg, rgba(7, 13, 27, 0.72), rgba(10, 17, 34, 0.86));
  border-block: 1px solid rgba(201, 206, 214, 0.16);
}

.tl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  margin: 0 0 0.82rem;
  color: var(--ai-orange-light);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.77rem;
  font-weight: 800;
}

.tl-kicker::before {
  content: "";
  display: inline-block;
  width: 1.18rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ai-orange), var(--tech-blue));
}

.tl-heading {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin: 0 0 0.85rem;
}

.tl-subheading {
  font-size: clamp(1.28rem, 2.8vw, 1.72rem);
  margin: 0 0 0.8rem;
}

.tl-lead {
  max-width: 68ch;
  margin: 0 0 1.25rem;
  color: #dce5f2;
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
}

.tl-muted {
  color: var(--text-muted);
}

.tl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.2rem;
}

.tl-btn,
.button,
input[type="submit"],
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 0.74rem;
  border: 1px solid rgba(85, 204, 246, 0.42);
  background: linear-gradient(136deg, var(--tech-blue), var(--tech-blue-dark));
  color: #f8fcff;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  padding: 0.72rem 1.08rem;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 11px 24px rgba(14, 111, 175, 0.35);
}

.tl-btn:hover,
.button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  color: #ffffff;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.tl-btn--ghost {
  background: rgba(9, 15, 30, 0.62);
  border-color: rgba(201, 206, 214, 0.3);
  box-shadow: none;
}

.tl-btn--ghost:hover {
  background: rgba(41, 174, 223, 0.18);
  border-color: rgba(41, 174, 223, 0.5);
}

.tl-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.15rem, 3vw, 2rem);
  align-items: start;
}

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

.tl-card {
  border: 1px solid var(--sb-color-border);
  background: linear-gradient(180deg, rgba(19, 31, 59, 0.82), rgba(10, 17, 34, 0.9));
  border-radius: 0.95rem;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.tl-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}

.tl-card p:last-child {
  margin-bottom: 0;
}

.tl-chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.tl-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 206, 214, 0.3);
  background: rgba(9, 15, 30, 0.62);
  color: #dbe5f4;
  font-size: 0.84rem;
  font-weight: 700;
}

.tl-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.tl-stat {
  border: 1px solid rgba(41, 174, 223, 0.34);
  background: linear-gradient(170deg, rgba(41, 174, 223, 0.14), rgba(11, 18, 38, 0.86));
  border-radius: 0.88rem;
  padding: 0.9rem;
}

.tl-stat__value {
  display: block;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #f8fcff;
}

.tl-stat__label {
  display: block;
  margin-top: 0.18rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tl-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.tl-timeline li {
  border-left: 3px solid rgba(41, 174, 223, 0.5);
  background: rgba(9, 15, 30, 0.55);
  border-radius: 0.62rem;
  padding: 0.72rem 0.9rem;
}

.tl-timeline strong {
  display: block;
  color: #f8fbff;
  margin-bottom: 0.26rem;
}

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

.tl-service-card {
  border: 1px solid var(--sb-color-border);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(19, 31, 59, 0.82), rgba(10, 17, 34, 0.9));
  box-shadow: var(--shadow-soft);
  padding: 1.05rem;
}

.tl-service-card h3 {
  margin: 0 0 0.52rem;
  font-size: 1.2rem;
}

.tl-service-card p:last-child {
  margin-bottom: 0;
}

.tl-service-card ul {
  margin: 0.65rem 0 0;
  padding: 0 0 0 1.15rem;
}

.tl-service-card li + li {
  margin-top: 0.38rem;
}

.tl-band {
  padding: 0 0 clamp(2.4rem, 5vw, 4rem);
}

.tl-band__inner {
  width: min(var(--sb-container), calc(100% - (var(--sb-gutter) * 2)));
  margin-inline: auto;
  border-radius: 1rem;
  border: 1px solid rgba(224, 149, 29, 0.48);
  background:
    radial-gradient(circle at 84% 14%, rgba(224, 149, 29, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(41, 174, 223, 0.18), rgba(12, 21, 42, 0.92));
  padding: clamp(1.05rem, 3vw, 1.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.tl-band__inner p {
  margin: 0;
  color: #ebf4ff;
}

.home .elementor-element-hmintro4 .tl-cta-row {
  margin-bottom: clamp(2.4rem, 4.5vw, 3.6rem);
}

.home .elementor-element-hmintro1 {
  margin-top: clamp(1.4rem, 3.4vw, 2.8rem);
}

.home .elementor-element-hmsplit1 {
  margin-bottom: clamp(1.4rem, 3.4vw, 2.8rem);
}

.home .elementor-element-hmband01 {
  margin-top: clamp(1.4rem, 3.4vw, 2.8rem);
  margin-bottom: clamp(1.4rem, 3.4vw, 2.8rem);
}

.home .elementor-element-hmintro4 .tl-btn--ghost {
  border-color: var(--ai-orange);
}

.home .elementor-element-hmintro4 .tl-btn--ghost:hover {
  border-color: var(--ai-orange-light);
  background: rgba(224, 149, 29, 0.18);
}

.home .elementor-element-hmsplit2,
.home .elementor-element-hmsplit7,
.home .elementor-element-hmfeat03 {
  padding-inline: 0 !important;
}

.home .elementor-element-hmsplit2 > .e-con-inner,
.home .elementor-element-hmsplit7 > .e-con-inner,
.home .elementor-element-hmfeat03 > .e-con-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.home .elementor-element-hmsplit1,
.home .elementor-element-hmfeat01,
.home .elementor-element-hmfeat03 .tl-card {
  text-align: left;
}

.home .tl-kicker {
  font-size: clamp(0.96rem, 1.2vw, 1.14rem);
}

.home .elementor-element-hmsplit5 p {
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
}

.home .elementor-element-hmsplit6 .tl-chip {
  font-size: clamp(0.98rem, 1.12vw, 1.1rem);
  border-color: var(--ai-orange);
}

.home .elementor-element-hmsplit7 .tl-stat__label {
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  color: var(--ai-orange);
}

@media (min-width: 1024px) {
  .home .elementor-element-hmsplit7 > .e-con-inner {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    width: 100%;
  }
}

.home .elementor-element-hmfeat03 .tl-card h3 {
  font-size: clamp(1.34rem, 1.6vw, 1.62rem);
}

.home .elementor-element-hmfeat03 .tl-card {
  border-color: var(--ai-orange);
}

.home .elementor-element-hmfeat03 .tl-card p {
  font-size: clamp(1.06rem, 1.16vw, 1.2rem);
}

.home .tl-band__inner p {
  font-size: clamp(1.2rem, 1.5vw, 1.42rem);
}

.home .tl-band__inner .tl-btn {
  font-size: clamp(1.1rem, 1.3vw, 1.22rem);
  padding: 0.86rem 1.28rem;
}

.page-id-7 .tl-kicker {
  font-size: clamp(0.96rem, 1.2vw, 1.14rem);
}

.page-id-7 .elementor-element-absec003 .elementor-heading-title,
.page-id-7 .elementor-element-absec004 .tl-lead {
  position: relative;
  max-width: 62ch;
  margin: 0;
  padding: clamp(0.75rem, 1.8vw, 1.15rem) clamp(0.9rem, 2vw, 1.4rem) clamp(0.75rem, 1.8vw, 1.1rem) clamp(1.6rem, 2.8vw, 2.1rem);
  border-left: 4px solid var(--ai-orange);
  border-radius: 0.82rem;
  background: linear-gradient(145deg, rgba(224, 149, 29, 0.08), rgba(15, 23, 42, 0.78));
}

.page-id-7 .elementor-element-absec003 .elementor-heading-title {
  margin-bottom: clamp(0.7rem, 1.6vw, 1rem);
}

.page-id-7 .elementor-element-absec003 .elementor-heading-title::before,
.page-id-7 .elementor-element-absec004 .tl-lead::before {
  content: "“";
  position: absolute;
  left: 0.52rem;
  top: 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1;
  color: var(--ai-orange);
}

.page-id-7 .elementor-element-absec003 .elementor-heading-title::after,
.page-id-7 .elementor-element-absec004 .tl-lead::after {
  content: "”";
  position: absolute;
  right: 0.52rem;
  bottom: 0.2rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1;
  color: var(--ai-orange);
}

.page-id-7 .elementor-element-absec003 .elementor-heading-title,
.page-id-7 .elementor-element-absec004 .tl-lead {
  padding: clamp(0.75rem, 1.8vw, 1.15rem) clamp(0.95rem, 2vw, 1.4rem);
}

.page-id-7 .elementor-element-absec003 .elementor-heading-title::before,
.page-id-7 .elementor-element-absec004 .tl-lead::before,
.page-id-7 .elementor-element-absec003 .elementor-heading-title::after,
.page-id-7 .elementor-element-absec004 .tl-lead::after {
  content: none;
}

.page-id-7 .tl-about-portrait {
  margin: clamp(0.82rem, 2.2vw, 1.45rem) 0 clamp(1.15rem, 2.6vw, 1.9rem);
  max-width: min(460px, 100%);
  border: 3px solid var(--ai-orange);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(7, 12, 24, 0.35);
}

.page-id-7 .tl-about-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 921px) {
  .page-id-7 .elementor-element-absec001 {
    display: grid !important;
    grid-template-columns: minmax(250px, clamp(280px, 27vw, 360px)) minmax(0, 1fr);
    grid-template-areas:
      "kicker kicker"
      "image heading"
      "image lead";
    column-gap: clamp(1rem, 2.4vw, 2.1rem);
    row-gap: clamp(0.7rem, 1.6vw, 1.15rem);
    align-items: start;
  }

  .page-id-7 .elementor-element-absec002 {
    grid-area: kicker;
  }

  .page-id-7 .elementor-element-absec005 {
    grid-area: image;
  }

  .page-id-7 .elementor-element-absec003 {
    grid-area: heading;
  }

  .page-id-7 .elementor-element-absec004 {
    grid-area: lead;
  }

  .page-id-7 .elementor-element-absec005 .tl-about-portrait {
    margin: 0;
    max-width: none;
  }
}

.page-id-7 .tl-timeline li {
  font-size: clamp(1.06rem, 1.18vw, 1.22rem);
}

.page-id-7 .tl-timeline strong {
  font-size: clamp(1.18rem, 1.36vw, 1.36rem);
  color: var(--ai-orange);
}

.page-id-7 .elementor-element-absec016 .tl-card h3 {
  font-size: clamp(1.34rem, 1.6vw, 1.62rem);
  color: var(--ai-orange);
}

.page-id-7 .elementor-element-absec016 .tl-card p {
  font-size: clamp(1.06rem, 1.16vw, 1.2rem);
}

.page-id-7 .elementor-element-absec001 {
  margin-bottom: clamp(1.5rem, 3.6vw, 2.9rem);
}

.page-id-7 .elementor-element-absec020 {
  margin-top: clamp(1.5rem, 3.6vw, 2.9rem);
  margin-bottom: clamp(1.5rem, 3.6vw, 2.9rem);
}

.page-id-7 .tl-band__inner p {
  font-size: clamp(1.2rem, 1.5vw, 1.42rem);
}

.page-id-7 .tl-band__inner .tl-btn {
  font-size: clamp(1.1rem, 1.3vw, 1.22rem);
  padding: 0.86rem 1.28rem;
}

.page-id-8 .tl-kicker {
  font-size: clamp(0.96rem, 1.2vw, 1.14rem);
}

.page-id-8 .tl-service-card h3 {
  font-size: clamp(1.34rem, 1.6vw, 1.62rem);
  color: var(--ai-orange);
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.page-id-8 .tl-service-card h3::before {
  content: "";
  flex: 0 0 1.72rem;
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(224, 149, 29, 0.55);
  background-color: rgba(224, 149, 29, 0.12);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.08rem 1.08rem;
  box-shadow: 0 8px 16px rgba(224, 149, 29, 0.16);
}

.page-id-8 .elementor-element-svsec012 .tl-service-card h3::before {
  background-image: url("assets/media/icon-service-design.svg");
}

.page-id-8 .elementor-element-svsec013 .tl-service-card h3::before {
  background-image: url("assets/media/icon-service-seo.svg");
}

.page-id-8 .elementor-element-svsec014 .tl-service-card h3::before {
  background-image: url("assets/media/icon-service-support.svg");
}

.page-id-8 .tl-service-card p {
  font-size: clamp(1.06rem, 1.16vw, 1.2rem);
}

.page-id-8 .tl-service-card li {
  font-size: clamp(1.03rem, 1.1vw, 1.14rem);
}

.page-id-8 .elementor-element-svsec020 {
  margin-top: clamp(1.5rem, 3.6vw, 2.9rem);
  margin-bottom: clamp(1.5rem, 3.6vw, 2.9rem);
}

.page-id-8 .tl-band__inner p {
  font-size: clamp(1.2rem, 1.5vw, 1.42rem);
}

.page-id-8 .tl-band__inner .tl-btn {
  font-size: clamp(1.1rem, 1.3vw, 1.22rem);
  padding: 0.86rem 1.28rem;
}

.page-id-9 .tl-kicker {
  font-size: clamp(0.96rem, 1.2vw, 1.14rem);
}

.page-id-9 .elementor-element-prsec011 .tl-muted {
  font-size: clamp(1.06rem, 1.16vw, 1.2rem);
}

.page-id-9 .project-filter__link {
  font-size: clamp(0.98rem, 1.06vw, 1.1rem);
  border-color: var(--ai-orange);
}

.page-id-9 .project-filter__link:hover {
  border-color: var(--ai-orange-light);
  background: rgba(224, 149, 29, 0.18);
}

.page-id-9 .project-filters {
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
}

.page-id-9 .projects-grid {
  column-gap: clamp(1rem, 1.8vw, 1.4rem);
  row-gap: clamp(1rem, 1.8vw, 1.4rem);
  margin-bottom: clamp(1.4rem, 2.8vw, 2.2rem);
}

.page-id-9 .project-card__title {
  font-size: clamp(1.28rem, 1.45vw, 1.5rem);
}

.page-id-9 .project-card__meta {
  font-size: clamp(1.03rem, 1.1vw, 1.14rem);
}

.page-id-9 .elementor-element-prsec001 {
  margin-bottom: clamp(1.5rem, 3.6vw, 2.9rem);
}

.page-id-9 .elementor-element-prsec020 {
  margin-top: clamp(1.5rem, 3.6vw, 2.9rem);
  margin-bottom: clamp(1.5rem, 3.6vw, 2.9rem);
}

.page-id-9 .tl-band__inner p {
  font-size: clamp(1.2rem, 1.5vw, 1.42rem);
}

.page-id-9 .tl-band__inner .tl-btn {
  font-size: clamp(1.1rem, 1.3vw, 1.22rem);
  padding: 0.86rem 1.28rem;
}

.page-id-9 .tl-band__inner .tl-btn--ghost {
  border-color: var(--ai-orange);
}

.page-id-9 .tl-band__inner .tl-btn--ghost:hover {
  border-color: var(--ai-orange-light);
  background: rgba(224, 149, 29, 0.18);
}

.page-id-10 .tl-kicker {
  font-size: clamp(0.96rem, 1.2vw, 1.14rem);
}

.page-id-10 .elementor-element-ctsec012 .tl-subheading,
.page-id-10 .elementor-element-ctsec015 .tl-subheading {
  font-size: clamp(1.34rem, 1.6vw, 1.62rem);
}

.page-id-10 .elementor-element-ctsec013 .tl-contact-list,
.page-id-10 .elementor-element-ctsec013 .tl-social-list {
  font-size: clamp(1.03rem, 1.1vw, 1.14rem);
}

.page-id-10 .elementor-element-ctsec013 h3 {
  display: none;
}

.page-id-10 .elementor-element-ctsec013 .tl-divider {
  display: none;
}

.page-id-10 .elementor-element-ctsec013 .tl-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.page-id-10 .elementor-element-ctsec013 .tl-contact-list li strong {
  display: none;
}

.page-id-10 .elementor-element-ctsec013 .tl-contact-list li::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.page-id-10 .elementor-element-ctsec013 .tl-contact-list li:nth-child(1)::before {
  background-image: url("assets/media/icon-contact-email.svg");
}

.page-id-10 .elementor-element-ctsec013 .tl-contact-list li:nth-child(2)::before {
  background-image: url("assets/media/icon-contact-phone.svg");
}

.page-id-10 .elementor-element-ctsec013 .tl-contact-list li:nth-child(3)::before {
  background-image: url("assets/media/icon-contact-address.svg");
}

.page-id-10 .elementor-element-ctsec013 .tl-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-id-10 .elementor-element-ctsec013 .tl-social-list {
  margin-top: clamp(0.9rem, 1.8vw, 1.35rem);
}

.page-id-10 .elementor-element-ctsec013 .tl-social-list a::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.page-id-10 .elementor-element-ctsec013 .tl-social-list a[href*="github.com"]::before {
  background-image: url("assets/media/icon-social-github.svg");
}

.page-id-10 .elementor-element-ctsec013 .tl-social-list a[href*="linkedin.com"]::before {
  background-image: url("assets/media/icon-social-linkedin.svg");
}

.page-id-10 .elementor-element-ctsec016 .tl-muted {
  font-size: clamp(1.06rem, 1.16vw, 1.2rem);
}

.page-id-10 .wpcf7 form label {
  font-size: clamp(1.02rem, 1.08vw, 1.12rem);
  color: var(--ai-orange);
}

.page-id-10 .elementor-element-ctsec017 .wpcf7-form-control-wrap[data-name="consent"] label {
  color: #dce7f6;
}

.page-id-10 .wpcf7 form input[type="text"],
.page-id-10 .wpcf7 form input[type="email"],
.page-id-10 .wpcf7 form input[type="tel"],
.page-id-10 .wpcf7 form textarea {
  font-size: clamp(1rem, 1.05vw, 1.1rem);
}

.page-id-10 .wpcf7 form input[type="submit"] {
  font-size: clamp(1.1rem, 1.3vw, 1.22rem);
  padding: 0.86rem 1.28rem;
  border-color: var(--ai-orange);
}

.page-id-10 .wpcf7 form input[type="submit"]:hover {
  border-color: var(--ai-orange-light);
}

.page-id-10 .elementor-element-ctsec001 {
  margin-bottom: clamp(1.5rem, 3.6vw, 2.9rem);
}

.page-id-10 .elementor-element-ctsec010 {
  margin-bottom: clamp(1.5rem, 3.6vw, 2.9rem);
}

.page-id-10 .elementor-element-ctsec011 {
  margin-top: clamp(1rem, 2.4vw, 1.8rem);
}

.page-id-10 .elementor-element-ctsec014 {
  margin-bottom: clamp(1rem, 2.4vw, 1.8rem);
}

.tl-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3.2vw, 1.8rem);
  align-items: start;
}

.tl-contact-panel {
  border: 1px solid var(--sb-color-border);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(19, 31, 59, 0.82), rgba(10, 17, 34, 0.9));
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.tl-contact-list,
.tl-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.58rem;
}

.tl-contact-list a,
.tl-social-list a {
  color: #dfe8f6;
  text-decoration: none;
}

.tl-contact-list a:hover,
.tl-social-list a:hover {
  color: #8edcf5;
}

.tl-divider {
  height: 1px;
  border: 0;
  margin: 1rem 0;
  background: linear-gradient(90deg, rgba(201, 206, 214, 0), rgba(201, 206, 214, 0.35), rgba(201, 206, 214, 0));
}

.breadcrumbs {
  font-size: 0.95rem;
  color: rgba(217, 227, 239, 0.88);
  margin: 0 0 1rem;
}

.page-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.project-filters {
  margin: 0 0 1.25rem;
}

.project-filters__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.project-filter__link {
  display: inline-block;
  border: 1px solid var(--sb-color-border);
  border-radius: 999px;
  background: rgba(8, 14, 28, 0.7);
  color: #deebfb;
  text-decoration: none;
  padding: 0.34rem 0.68rem;
}

.project-filter__link:hover {
  border-color: var(--border-strong);
  background: rgba(41, 174, 223, 0.16);
}

.project-filter__link.is-active {
  color: #ffffff;
  border-color: rgba(224, 149, 29, 0.65);
  background: linear-gradient(130deg, rgba(41, 174, 223, 0.28), rgba(224, 149, 29, 0.2));
}

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

.project-card {
  border: 1px solid var(--sb-color-border);
  border-radius: 0.95rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 31, 59, 0.86), rgba(10, 17, 34, 0.92));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 174, 223, 0.55);
  box-shadow: var(--shadow-glow);
}

.project-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 210px;
  overflow: hidden;
  line-height: 0;
  background: rgba(6, 12, 24, 0.7);
}

.project-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  min-height: auto;
}

.project-card__title {
  margin: 0;
  font-size: 1.1rem;
}

.project-card__title a {
  color: #f7fbff;
  text-decoration: none;
}

.project-card__title a:hover {
  color: #90ddf6;
}

.project-card__meta {
  margin: 0;
  color: #cfd9e8;
  font-size: 0.95rem;
}

.project-card__meta--type {
  color: var(--ai-orange);
  font-weight: 700;
}

.project-card__actions {
  margin-top: 0;
}

.single-project article figure {
  margin: 0 0 1rem;
}

.single-project article dl {
  margin: 0 0 1rem;
  padding: 0.9rem;
  border: 1px solid var(--sb-color-border);
  border-radius: 0.85rem;
  background: rgba(9, 15, 30, 0.58);
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 0.7rem;
}

.single-project article dt {
  color: #eaf3ff;
  font-weight: 800;
}

.single-project article dd {
  margin: 0;
  color: #d6e0ef;
}

.wpcf7 form {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(201, 206, 214, 0.32);
  background: rgba(8, 14, 28, 0.72);
}

.wpcf7 form p {
  margin: 0 0 0.92rem;
}

.wpcf7 form p:last-child {
  margin-bottom: 0;
}

.wpcf7 form label {
  display: block;
  color: #ecf3ff;
  font-weight: 700;
}

.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form textarea {
  width: 100%;
  margin-top: 0.4rem;
  border-radius: 0.68rem;
  border: 1px solid rgba(201, 206, 214, 0.4);
  background: rgba(10, 17, 34, 0.95);
  color: #f8fbff;
  padding: 0.68rem 0.76rem;
  font: inherit;
}

.wpcf7 form textarea {
  min-height: 7.8rem;
  resize: vertical;
}

.wpcf7-form-control-wrap[data-name="consent"] .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name="consent"] label {
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
  color: #dce7f6;
  font-weight: 500;
}

.wpcf7-form-control-wrap[data-name="consent"] input[type="checkbox"] {
  margin-top: 0.18rem;
  accent-color: var(--ai-orange);
}

.wpcf7-not-valid-tip {
  margin-top: 0.3rem;
  color: #ffd1b1;
  font-size: 0.88rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
  border-radius: 0.64rem;
  padding: 0.62rem 0.78rem;
  color: #f9fbff;
}

.site-footer {
  margin-top: 0.55rem;
  padding: 0.78rem 0 1.05rem;
  border-top: 1px solid var(--sb-color-border);
  background: rgba(7, 12, 24, 0.86);
}

.site-footer .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(0.95rem, 2.4vw, 2.4rem);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "brand nav nav"
    "social copyright to-top";
  align-items: center;
  row-gap: 0;
  column-gap: 1.25rem;
}

.site-footer__brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  color: #edf5ff;
  font-weight: 800;
  font-size: 1.08rem;
}

.site-footer__brand img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 999px;
  border: 0;
}

.site-footer__nav {
  grid-area: nav;
  min-width: 0;
}

.footer-menu,
.site-footer__nav .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3.12rem;
  margin: 0;
  padding: 0;
}

.footer-menu li,
.site-footer__nav .menu li {
  margin: 0;
}

.footer-menu a,
.site-footer__nav .menu a {
  color: #dce6f6;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-menu a::before,
.site-footer__nav .menu a::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 2.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  filter: drop-shadow(0 4px 8px rgba(224, 149, 29, 0.22));
}

.footer-menu .menu-item-home > a::before,
.site-footer__nav .menu .menu-item-home > a::before {
  background-image: url("assets/media/icon-footer-home.svg");
}

.footer-menu a[href*="/about/"]::before,
.site-footer__nav .menu a[href*="/about/"]::before {
  background-image: url("assets/media/icon-footer-about.svg");
}

.footer-menu a[href*="/services/"]::before,
.site-footer__nav .menu a[href*="/services/"]::before {
  background-image: url("assets/media/icon-footer-services.svg");
}

.footer-menu a[href*="/projects/"]::before,
.site-footer__nav .menu a[href*="/projects/"]::before {
  background-image: url("assets/media/icon-footer-projects.svg");
}

.footer-menu a[href*="/contact/"]::before,
.site-footer__nav .menu a[href*="/contact/"]::before {
  background-image: url("assets/media/icon-footer-contact.svg");
}

.footer-menu a:hover,
.site-footer__nav .menu a:hover {
  color: #8edcf5;
}

.site-footer__to-top {
  grid-area: to-top;
  justify-self: end;
  color: #ebf4ff;
  text-decoration: none;
  border: 1px solid var(--ai-orange);
  border-radius: 999px;
  padding: 0.46rem 0.84rem;
  font-size: 1rem;
}

.site-footer__to-top:hover {
  border-color: var(--ai-orange-light);
  background: rgba(224, 149, 29, 0.18);
}

.site-footer__social {
  grid-area: social;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: center;
}

.site-footer__copyright {
  grid-area: copyright;
  margin: 0;
  justify-self: center;
  text-align: center;
  color: rgba(201, 206, 214, 0.86);
  font-size: 1rem;
}

.site-footer__social-link {
  display: inline-block;
  width: 2.45rem;
  height: 2.45rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  filter: drop-shadow(0 7px 12px rgba(224, 149, 29, 0.28));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.site-footer__social-link:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 10px rgba(224, 149, 29, 0.34));
}

.site-footer__social-link--linkedin {
  background-image: url("assets/media/icon-social-linkedin.svg");
}

.site-footer__social-link--github {
  background-image: url("assets/media/icon-social-github.svg");
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  position: absolute;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
}

.skip-link:focus {
  left: 0.5rem;
}

@media (max-width: 1080px) {
  .tl-cards,
  .tl-service-grid,
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 921px) and (max-width: 1600px) {
  .site-header__inner {
    gap: 1.45rem;
    padding: 20px clamp(1rem, 2.6vw, 2.8rem);
  }

  .custom-logo-link img {
    height: 95px;
  }

  .site-title {
    font-size: clamp(1.55rem, 2.75vw, 2.25rem);
  }

  .site-description {
    font-size: 1.04rem;
  }

  .primary-menu {
    gap: 0.52rem;
  }

  .primary-menu a {
    padding: 0.64rem 1.12rem;
    font-size: clamp(1.42rem, 1.85vw, 1.95rem);
  }

  .site-branding__text {
    min-width: max-content;
  }

  .site-title {
    white-space: nowrap;
  }
}

@media (min-width: 1601px) {
  :root {
    --sb-container: 1560px;
    --sb-gutter: clamp(1.15rem, 2.2vw, 2.4rem);
  }

  .tl-lead {
    max-width: none;
    white-space: nowrap;
  }

  .page-id-7 .tl-section--tight .tl-heading {
    max-width: none;
    font-size: clamp(1.9rem, 2.2vw, 2.5rem);
    white-space: nowrap;
  }

  .tl-shell--narrow,
  .elementor .e-con.tl-shell--narrow {
    max-width: 1040px;
  }

  .entry-content--prose {
    max-width: 92ch;
  }

  .site-header__inner {
    gap: 1.6rem;
    padding: 20px clamp(1.15rem, 2.8vw, 3.2rem);
  }

  .custom-logo-link img {
    height: 95px;
  }

  .site-title {
    font-size: clamp(1.78rem, 2.1vw, 2.55rem);
  }

  .site-description {
    font-size: 1.12rem;
  }

  .primary-menu {
    gap: 0.6rem;
  }

  .primary-menu a {
    padding: 0.72rem 1.2rem;
    font-size: clamp(1.68rem, 1.35vw, 2.2rem);
  }

  .site-branding__text {
    min-width: max-content;
  }

  .site-title {
    white-space: nowrap;
  }

  .site-footer {
    padding: 1.2rem 0 1.45rem;
  }

  .site-footer .container {
    padding-inline: clamp(1.15rem, 2.8vw, 3.2rem);
  }

  .site-footer__inner {
    row-gap: 0;
    column-gap: 1.35rem;
  }

  .site-footer__brand {
    gap: 0.86rem;
    font-size: 1.4rem;
  }

  .site-footer__brand img {
    width: 95px;
    height: 95px;
  }

  .footer-menu,
  .site-footer__nav .menu {
    gap: 4.6rem;
  }

  .footer-menu a,
  .site-footer__nav .menu a {
    font-size: 1.42rem;
  }

  .site-footer__to-top {
    padding: 0.62rem 1.05rem;
    font-size: 1.16rem;
  }

  .site-footer__copyright {
    font-size: 1.14rem;
  }

  .site-footer__social-link {
    width: 2.9rem;
    height: 2.9rem;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .primary-nav {
    width: 100%;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }

  .primary-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.18rem;
    margin-top: 0.5rem;
    padding: 0.55rem;
    border: 1px solid rgba(201, 206, 214, 0.2);
    border-radius: 0.8rem;
    background: rgba(6, 11, 22, 0.95);
  }

  .site-header.is-menu-open .primary-menu {
    display: flex;
  }

  .primary-menu a {
    border-radius: 0.6rem;
    padding: 0.58rem 0.74rem;
    font-size: 1.08rem;
  }

  .site-description {
    display: none;
  }
}

@media (max-width: 860px) {
  .tl-split,
  .tl-contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "social"
      "copyright"
      "to-top";
    justify-items: center;
    text-align: center;
  }

  .site-footer__social,
  .site-footer__to-top {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .tl-hero-video {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .tl-cards,
  .tl-service-grid,
  .projects-grid,
  .tl-stat-grid {
    grid-template-columns: 1fr;
  }

  .tl-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .tl-cta-row .tl-btn,
  .tl-cta-row .button {
    width: 100%;
  }
}

@media (min-width: 921px) {
  .site-header .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 1.2rem;
  }

  .site-header .site-branding {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    overflow: visible;
  }

  .site-header .site-branding__logo {
    flex: 0 0 auto;
  }

  .site-header .custom-logo-link img,
  .site-header img.custom-logo {
    display: block;
    width: auto !important;
    height: clamp(72px, 4.8vw, 95px) !important;
    max-height: 95px !important;
    max-width: clamp(180px, 18vw, 300px) !important;
    object-fit: contain;
  }

  .site-header .site-branding__text {
    min-width: 0;
    overflow: visible;
  }

  .site-header .site-title {
    margin: 0;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.06;
    font-size: clamp(1.15rem, 1.75vw, 1.85rem);
  }

  .site-header .site-description {
    margin: 0.26rem 0 0;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.3;
    font-size: clamp(0.8rem, 0.95vw, 0.98rem);
  }

  .site-header .primary-nav {
    margin-left: 0;
    justify-self: end;
    min-width: 0;
  }

  .site-header .primary-menu {
    gap: 0.25rem;
    flex-wrap: nowrap;
  }

  .site-header .primary-menu a {
    font-size: clamp(1.02rem, 1.15vw, 1.28rem);
    padding: 0.5rem 0.75rem;
  }
}

@media (min-width: 1601px) {
  .site-header .custom-logo-link img,
  .site-header img.custom-logo {
    max-width: 320px !important;
  }

  .site-header .primary-menu a {
    font-size: clamp(1.1rem, 1.05vw, 1.36rem);
  }
}

.site-footer .site-footer__brand img {
  width: 55px !important;
  height: 55px !important;
  max-width: 55px !important;
  max-height: 55px !important;
}

@media (max-width: 1024px) {
  .tl-hero-video {
    height: auto !important;
    min-height: 0 !important;
  }

  .tl-hero-video__media {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: contain;
    object-position: top center;
  }
}

