:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --ink: #2B2B2B;
  --muted: #666666;
  --accent: #E63946;
  --accent-dark: #C32836;
  --line: #E0E0E0;
  --chip-bg: #FFE8EB;
  --chip-ink: #C32836;
  --header-bg: rgba(255, 255, 255, 0.95);
  --bg-grad-1: #ffffff;
  --bg-grad-2: #f5f5f5;
  --bg-grad-3: #eeeeee;
  --bg-glow-a: rgba(230, 57, 70, 0.12);
  --bg-glow-b: rgba(43, 43, 43, 0.08);
  --focus: #E63946;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 16px 50px rgba(52, 30, 12, 0.14);
}

[data-theme="dark"] {
  --bg: #1a1a1a;
  --surface: #2B2B2B;
  --ink: #f0f0f0;
  --muted: #b0b0b0;
  --accent: #FF6B7A;
  --accent-dark: #E63946;
  --line: #444444;
  --chip-bg: #3a3a3a;
  --chip-ink: #FF8A94;
  --header-bg: rgba(27, 27, 27, 0.95);
  --bg-grad-1: #1a1a1a;
  --bg-grad-2: #1a1a1a;
  --bg-grad-3: #252525;
  --bg-glow-a: rgba(255, 107, 122, 0.2);
  --bg-glow-b: rgba(43, 43, 43, 0.15);
  --focus: #8ac5ff;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, var(--bg-grad-1) 0%, var(--bg-grad-2) 36%, var(--bg-grad-3) 100%);
  line-height: 1.55;
  color-scheme: light;
}

.side-menu-tools {
  display: none;
}

[data-theme="dark"] body {
  color-scheme: dark;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 78% 20%, var(--bg-glow-a), transparent 35%),
    radial-gradient(circle at 25% 75%, var(--bg-glow-b), transparent 32%);
  z-index: -1;
}

.site-header {
  width: 100%;
  padding: 14px 0;
  background:
    linear-gradient(115deg, rgba(230, 57, 70, 0.16) 0%, rgba(255, 255, 255, 0) 44%),
    var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 74%, var(--accent) 26%);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.12);
  overflow: visible;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  inset: -40px 42% -40px -18%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.22), rgba(230, 57, 70, 0));
  filter: blur(10px);
  opacity: 0.95;
}

.site-header::after {
  top: -140%;
  left: -36%;
  width: 34%;
  height: 360%;
  transform: rotate(15deg);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  animation: headerSweep 7.5s linear infinite;
}

[data-theme="dark"] .site-header {
  background:
    linear-gradient(120deg, rgba(255, 107, 122, 0.2) 0%, rgba(255, 107, 122, 0) 48%),
    var(--header-bg);
  box-shadow: 0 8px 30px rgba(255, 107, 122, 0.18);
}

[data-theme="dark"] .site-header::before {
  background: radial-gradient(circle, rgba(255, 107, 122, 0.24), rgba(255, 107, 122, 0));
}

[data-theme="dark"] .site-header::after {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
}

.header-content {
  width: min(var(--max), 92%);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: rgba(230, 57, 70, 0.08);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  box-shadow: 0 10px 22px rgba(230, 57, 70, 0.16);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.brand:hover .logo-img,
.brand:focus-visible .logo-img {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 14px 28px rgba(230, 57, 70, 0.22);
}

[data-theme="dark"] .logo-img {
  background: rgba(255, 107, 122, 0.12);
}

.nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ff9f1c);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.header-socials {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-right: 8px;
  border-right: 1px solid var(--line);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(230, 57, 70, 0);
  transition: all 0.26s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--accent), #ff9f1c);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 18px rgba(230, 57, 70, 0.28);
  transform: translateY(-2px);
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 75%, var(--accent) 25%));
  border-radius: 999px;
  padding: 8px 14px;
}

.theme-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 75%, var(--accent) 25%));
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 6px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(230, 57, 70, 0.12);
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  background: linear-gradient(135deg, var(--accent), #ff9f1c);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.24);
  transform: translateY(-1px);
}

.lang-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 75%, var(--accent) 25%));
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 6px;
  padding: 8px 14px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  box-shadow: 0 8px 18px rgba(230, 57, 70, 0.12);
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background: linear-gradient(135deg, var(--accent), #ff9f1c);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.24);
  transform: translateY(-1px);
}

@keyframes headerSweep {
  0% {
    transform: translateX(-34%) rotate(15deg);
  }
  100% {
    transform: translateX(460%) rotate(15deg);
  }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

main {
  width: min(var(--max), 92%);
  margin: 0 auto;
  position: relative;
}

.section-divider {
  width: min(760px, 84%);
  height: 74px;
  margin: 6px auto 12px;
  position: relative;
  pointer-events: none;
}

.section-divider::before {
  content: "";
  position: absolute;
  inset: 8px 0 0;
  background: linear-gradient(90deg, transparent 0%, rgba(230, 57, 70, 0.26) 50%, transparent 100%);
  clip-path: polygon(0 63%, 11% 45%, 22% 62%, 34% 40%, 50% 64%, 66% 40%, 78% 62%, 90% 44%, 100% 63%, 100% 100%, 0 100%);
  opacity: 0.9;
  animation: dividerDrift 6s ease-in-out infinite;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6px;
  height: 34px;
  background: radial-gradient(60% 100% at 50% 0, rgba(230, 57, 70, 0.2), transparent 72%);
  filter: blur(7px);
}

main > .section-divider:nth-of-type(even)::before {
  transform: scaleX(-1);
}

@keyframes dividerDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

[data-theme="dark"] .section-divider::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 122, 0.38) 50%, transparent 100%);
}

[data-theme="dark"] .section-divider::after {
  background: radial-gradient(60% 100% at 50% 0, rgba(255, 107, 122, 0.25), transparent 72%);
}

.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a3e 50%, #1f1f2e 100%), 
              url('Images/Services/person-white-chemical-protection-suit-doing-disinfection-pest-control-spraying-poison-kill-insects-rodents-scaled-e1766078418536-300x200.jpg');
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 0;
  overflow: visible;
}

.hero-inner {
  width: min(var(--max), 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.hero::before {
  content: '';
  position: absolute;
  left: 5%;
  top: 40px;
  width: 120px;
  height: 120px;
  background: url('Images/Logo/cropped-Alphagroupservice-Logo-300x300.png') center/contain no-repeat;
  opacity: 0.15;
  z-index: 1;
  filter: blur(2px);
}

.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}

.hero-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1.5;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1.5;
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  z-index: 1;
}

.hero-decoration:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 122, 0.12), transparent 60%);
  border-radius: 50%;
  filter: blur(50px);
  animation: float 8s ease-in-out infinite;
}

.hero-decoration:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 10%;
  background: radial-gradient(circle at 60% 40%, rgba(230, 57, 70, 0.1), transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: rgba(255, 107, 122, 0.95);
  font-weight: 700;
  display: inline-block;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  border: 1px solid rgba(230, 57, 70, 0.5);
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 800;
  display: inline-block;
  padding: 10px 18px;
  background: rgba(230, 57, 70, 0.12);
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.15);
}

[data-theme="dark"] .eyebrow {
  background: rgba(255, 107, 122, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.eyebrow:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  transform: translateY(-2px);
}

.section-title-wrap .eyebrow {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  letter-spacing: 0.2em;
  font-weight: 800;
  padding: 12px 24px;
  border-width: 2px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(230, 57, 70, 0.08) 100%);
  box-shadow: 0 8px 22px rgba(230, 57, 70, 0.22);
  text-shadow: 0 0 12px rgba(230, 57, 70, 0.25);
}

[data-theme="dark"] .section-title-wrap .eyebrow {
  background: linear-gradient(135deg, rgba(255, 107, 122, 0.22) 0%, rgba(255, 107, 122, 0.1) 100%);
  box-shadow: 0 10px 24px rgba(255, 107, 122, 0.25);
  text-shadow: 0 0 14px rgba(255, 107, 122, 0.35);
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
  line-height: 1.14;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.5), 0 8px 32px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.45rem, 6vw, 5rem);
  margin-top: 0;
  max-width: 14ch;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  margin-top: 14px;
  max-width: 15ch;
}

.hero-copy {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 24px;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
}

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

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C32836 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C32836 0%, #A01D2A 100%);
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.45);
}

.btn-primary:hover::before {
  left: 100%;
}

.hero .btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-stats {
  margin-top: 48px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 700px;
}

.hero-stats article {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-stats article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.4), transparent);
  pointer-events: none;
}

.hero-stats article:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 16px 48px rgba(230, 57, 70, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

.hero-stats h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #ffffff;
  margin: 0;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.section {
  padding: 52px 0;
  position: relative;
  border: 1px solid rgba(230, 57, 70, 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.62) 58%, rgba(230, 57, 70, 0.06) 100%);
  box-shadow: 0 16px 36px rgba(19, 23, 31, 0.06);
}

[data-theme="dark"] .section {
  border-color: rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(36, 36, 36, 0.9) 0%, rgba(26, 26, 26, 0.85) 62%, rgba(255, 107, 122, 0.08) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.section-actions {
  margin-top: 20px;
}

.section-title-wrap {
  margin-bottom: 40px;
  position: relative;
}

.section-title-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), transparent);
}

.section-title-wrap > * {
  position: relative;
  z-index: 1;
}

.section-title-wrap h2 {
  margin-top: 16px;
  font-size: clamp(2.25rem, 5.4vw, 3.75rem);
  max-width: 24ch;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-wrap h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(220px, 65%);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.9;
}

.section-title-wrap h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: min(220px, 65%);
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(closest-side, var(--accent), transparent);
  filter: blur(2px);
  opacity: 0.35;
}

#services,
#process,
#contact {
  padding-inline: clamp(20px, 4.2vw, 58px);
}

#services .section-title-wrap::before {
  background: linear-gradient(90deg, #E63946, #C32836, transparent);
}

[data-theme="dark"] #services .section-title-wrap::before {
  background: linear-gradient(90deg, #FF6B7A, #E63946, transparent);
}

#certifications .section-title-wrap::before {
  background: linear-gradient(90deg, #3B82F6, #1E40AF, transparent);
}

[data-theme="dark"] #certifications .section-title-wrap::before {
  background: linear-gradient(90deg, #60A5FA, #3B82F6, transparent);
}

#process .section-title-wrap::before {
  background: linear-gradient(90deg, #10B981, #059669, transparent);
}

[data-theme="dark"] #process .section-title-wrap::before {
  background: linear-gradient(90deg, #34D399, #10B981, transparent);
}

#contact .section-title-wrap::before {
  background: linear-gradient(90deg, #F59E0B, #D97706, transparent);
}

[data-theme="dark"] #contact .section-title-wrap::before {
  background: linear-gradient(90deg, #FBBF24, #F59E0B, transparent);
}

#services .section-title-wrap,
#certifications .section-title-wrap,
#process .section-title-wrap,
#projects .section-title-wrap,
#contact .section-title-wrap {
  padding: 0;
}

#services .section-title-wrap h2,
#certifications .section-title-wrap h2,
#process .section-title-wrap h2,
#projects .section-title-wrap h2,
#contact .section-title-wrap h2 {
  max-width: 30ch;
}

#services .cards {
  width: 100%;
  margin: 32px 0 0;
  padding: 0;
}

#services .section-actions {
  text-align: center;
  margin-top: 28px;
}

#services .services-preview-head {
  max-width: min(940px, 100%);
  margin-inline: auto;
}

#services .services-preview-head .section-description {
  margin-left: auto;
  margin-right: auto;
  max-width: 66ch;
}

.services-preview-kpis {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-mini-carousel {
  margin-top: 26px;
  display: block;
}

.services-carousel-track-wrap {
  border: 2px solid color-mix(in srgb, var(--line) 66%, var(--accent) 34%);
  border-radius: 24px;
  padding: 20px;
  background:
    radial-gradient(circle at 90% -10%, rgba(230, 57, 70, 0.18), transparent 40%),
    radial-gradient(circle at -15% 110%, rgba(255, 159, 28, 0.16), transparent 46%),
    linear-gradient(160deg, color-mix(in srgb, var(--surface) 94%, #ffffff 6%), color-mix(in srgb, var(--surface) 80%, var(--chip-bg) 20%));
  box-shadow: 0 20px 48px rgba(23, 30, 39, 0.1);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .services-carousel-track-wrap {
  background:
    radial-gradient(circle at 88% -12%, rgba(255, 107, 122, 0.22), transparent 42%),
    radial-gradient(circle at -15% 115%, rgba(255, 159, 28, 0.2), transparent 50%),
    linear-gradient(160deg, rgba(30, 30, 30, 0.96), rgba(24, 24, 24, 0.9));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.services-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--accent) 66%, var(--line) 34%) transparent;
  padding-bottom: 6px;
}

.services-carousel-item {
  text-decoration: none;
  color: var(--ink);
  border: 2px solid color-mix(in srgb, var(--line) 72%, var(--accent) 28%);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
  display: grid;
  scroll-snap-align: start;
  min-width: 0;
  position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.services-carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
}

.services-carousel-item:hover,
.services-carousel-item:focus-visible,
.services-carousel-item.is-active {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 30px rgba(230, 57, 70, 0.22);
  filter: saturate(1.05);
}

.services-carousel-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.services-carousel-item:hover img,
.services-carousel-item.is-active img {
  transform: scale(1.05);
}

.services-carousel-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.services-carousel-dots {
  margin-top: 10px;
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
}

.services-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: color-mix(in srgb, var(--line) 72%, var(--muted) 28%);
  cursor: pointer;
  transition: all 0.22s ease;
}

.services-carousel-dot:hover,
.services-carousel-dot.is-active {
  width: 24px;
  background: linear-gradient(90deg, var(--accent), #ff9f1c);
}

.services-carousel-btn {
  display: none;
}

.services-carousel-btn:hover {
  transform: translateY(-1px) scale(1.03);
  background: linear-gradient(135deg, var(--accent), #ff9f1c);
  color: #ffffff;
  border-color: transparent;
}

.services-carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.services-preview-kpi {
  border: 1.5px solid color-mix(in srgb, var(--line) 72%, var(--accent) 28%);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(230, 57, 70, 0.08), rgba(255, 255, 255, 0.85));
}

[data-theme="dark"] .services-preview-kpi {
  background: linear-gradient(150deg, rgba(255, 107, 122, 0.18), rgba(28, 28, 28, 0.88));
}

.services-preview-kpi h3 {
  margin: 0;
  font-size: 1rem;
}

.services-preview-kpi p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

#services .section-actions .services-preview-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
}

.services-explore-cta {
  min-width: min(100%, 320px);
}

#process .timeline {
  max-width: min(920px, 100%);
  margin: 0 auto;
}

#certifications .section-title-wrap,
#projects .section-title-wrap,
#contact .section-title-wrap {
  max-width: min(880px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-description {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 54ch;
  font-weight: 500;
}

#certifications .section-description {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  #services .section-title-wrap,
  #certifications .section-title-wrap,
  #process .section-title-wrap,
  #projects .section-title-wrap,
  #contact .section-title-wrap {
    margin-inline: auto;
    padding: 0;
    text-align: center;
  }

  #services .section-title-wrap h2,
  #certifications .section-title-wrap h2,
  #process .section-title-wrap h2,
  #projects .section-title-wrap h2,
  #contact .section-title-wrap h2 {
    margin-inline: auto;
    max-width: 34ch;
  }

  #services .section-title-wrap h2::before,
  #certifications .section-title-wrap h2::before,
  #process .section-title-wrap h2::before,
  #projects .section-title-wrap h2::before,
  #contact .section-title-wrap h2::before,
  #services .section-title-wrap h2::after,
  #certifications .section-title-wrap h2::after,
  #process .section-title-wrap h2::after,
  #projects .section-title-wrap h2::after,
  #contact .section-title-wrap h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.cards {
  width: min(var(--max), 92%);
  margin: 40px auto 0;
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

.cards-inner {
  display: none;
}

.projects-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 100px 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #1f1f2e 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 7%, 50% 0, 100% 7%, 100% 100%, 0 100%);
}

.projects-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(60px);
}

.projects-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
}

.projects-inner {
  width: min(var(--max), 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.projects-section .section-title-wrap {
  margin-bottom: 48px;
}

.projects-section .eyebrow {
  color: var(--accent);
}

.projects-section h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

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

.project-tile {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(230, 57, 70, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.project-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-tile::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, transparent 100%);
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.project-tile:hover {
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-16px);
  box-shadow: 0 24px 64px rgba(230, 57, 70, 0.2);
}

.project-tile:hover::before {
  opacity: 1;
}

.project-tile:hover::after {
  opacity: 1;
}

.project-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.project-tile:hover .project-badge {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.4);
}

.project-tile p {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px 0;
  opacity: 0.9;
}

.project-tile h3 {
  color: #ffffff;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
}

.partners-subsection {
  margin-top: 34px;
  padding: 28px;
  border-radius: 20px;
  border: 1.5px solid rgba(230, 57, 70, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.partners-subsection-head {
  margin-bottom: 16px;
}

.partners-subsection-head .eyebrow {
  margin-bottom: 8px;
}

.partners-subsection-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.partners-showcase {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.partner-card {
  margin: 0;
  min-height: 110px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.partner-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 92px;
  height: auto;
  object-fit: contain;
}

a.partner-card {
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

a.partner-card:hover {
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.06);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.15);
}

.card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 180px;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(230, 57, 70, 0.12) 52%,
    rgba(255, 255, 255, 0.08) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-170%) skewX(-16deg);
  transition: transform 0.75s cubic-bezier(0.22, 0.7, 0.28, 1);
  pointer-events: none;
  z-index: 2;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(230, 57, 70, 0.12);
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(230, 57, 70, 0.02) 100%);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover::after {
  transform: translateX(320%) skewX(-16deg);
}

.card h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.card p {
  margin: 0 0 20px 0;
  color: var(--muted);
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  gap: 6px;
}

.card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.card-link:hover {
  color: var(--accent-dark);
}

.card-link:hover::after {
  transform: translateX(4px);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.card:hover .card-image {
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.02);
}

.card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.certifications-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.04) 0%, rgba(230, 57, 70, 0.02) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 0 93%);
}

.iso-inner {
  width: min(var(--max), 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-description {
  color: var(--muted);
  max-width: 55ch;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.iso-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.iso-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.iso-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.15);
  transform: translateY(-12px);
}

.iso-image-wrapper {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.iso-image {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.iso-card:hover .iso-image {
  transform: scale(1.08);
}

.iso-pdf-icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.iso-card:hover .iso-pdf-icon {
  transform: scale(1.08);
}

a.iso-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.iso-content {
  padding: 28px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.iso-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}

.iso-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.iso-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(230, 57, 70, 0.2);
  margin-top: 4px;
}

.page-hero {
  width: min(var(--max), 92%);
  margin: 0 auto;
  padding: 70px 0 34px;
}

.page-hero h1 {
  max-width: 18ch;
}

.page-hero p {
  color: var(--muted);
  max-width: 68ch;
  margin-top: 14px;
}

.content-wrap {
  width: min(var(--max), 92%);
  margin: 0 auto;
  padding-bottom: 40px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.panel {
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 40px 36px;
  transition: all 0.3s ease;
}

.panel:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(230, 57, 70, 0.1);
}

.panel h2,
.panel h3 {
  margin-bottom: 10px;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  margin: 0;
  padding-left: 18px;
}

.quick-facts {
  display: grid;
  gap: 16px;
}

.quick-facts article {
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  padding: 20px 18px;
  background: linear-gradient(135deg, var(--chip-bg) 0%, rgba(230, 57, 70, 0.04) 100%);
  transition: all 0.3s ease;
}

.quick-facts article:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.15);
}

.quick-facts h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.quick-facts p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form-panel {
  position: relative;
}

.form-intro {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.field-span-2 {
  grid-column: 1 / -1;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1.5px solid color-mix(in srgb, var(--line) 74%, var(--accent) 26%);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 90%, var(--chip-bg) 10%);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-field select {
  appearance: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 76%, transparent);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
  transform: translateY(-1px);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-hidden-field {
  display: none;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-form-actions .btn {
  min-width: 180px;
}

.contact-form-status {
  margin: 0;
  min-height: 1.5em;
  font-weight: 600;
}

.contact-form-status.is-pending {
  color: var(--muted);
}

.contact-form-status.is-success {
  color: #15803d;
}

.contact-form-status.is-error {
  color: #b42318;
}

[data-theme="dark"] .contact-form-status.is-success {
  color: #7dd3a3;
}

[data-theme="dark"] .contact-form-status.is-error {
  color: #ff9b8f;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  position: relative;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  left: 41px;
  width: 3px;
  border-radius: 999px;
  pointer-events: none;
}

.timeline::before {
  top: 32px;
  bottom: 32px;
  background: color-mix(in srgb, var(--line) 68%, var(--accent) 32%);
  opacity: 0.45;
}

.timeline::after {
  top: 32px;
  bottom: 32px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 84%, #ff9f1c 16%), color-mix(in srgb, var(--accent) 62%, #ff9f1c 38%));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.95s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 55%, transparent), 0 0 16px color-mix(in srgb, var(--accent) 48%, transparent);
}

.timeline.is-animated::after {
  transform: scaleY(1);
}

.timeline li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.timeline span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: var(--chip-bg);
  color: var(--chip-ink);
}

.timeline.is-animated li span {
  animation: timelineStepIn 0.45s ease both;
  animation-delay: calc(var(--timeline-step, 0) * 90ms + 110ms);
}

@keyframes timelineStepIn {
  0% {
    transform: scale(0.85);
    opacity: 0.4;
  }
  65% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.contact p {
  max-width: 62ch;
  color: var(--muted);
}

#contact {
  text-align: center;
}

#contact .section-title-wrap {
  max-width: min(880px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  text-align: center;
}

#contact .section-title-wrap h2 {
  margin-left: auto;
  margin-right: auto;
}

#contact p {
  margin-left: auto;
  margin-right: auto;
}

#contact .btn {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  width: min(var(--max), 92%);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1.15fr);
  gap: 24px;
  margin-bottom: 40px;
}

.footer-section {
  min-width: 0;
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: "Sora", sans-serif;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-subtitle {
  margin-top: 14px;
}

.footer-contact-section,
.footer-find-section {
  align-self: start;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  min-width: 0;
}

.footer-contact-item span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-contact-item:hover {
  border-color: color-mix(in srgb, var(--accent) 60%, white 40%);
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff9f1c);
  flex-shrink: 0;
}

.footer-map-wrap {
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  position: relative;
}

.footer-map-wrap .map-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 136px;
  border: 0;
}

.footer-map-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.footer-bottom {
  width: min(var(--max), 92%);
  margin: 0 auto;
  padding: 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-contact {
  color: var(--accent);
  font-weight: 600;
}

.footer-legal-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--accent);
}

.legal-shell {
  width: min(var(--max), 92%);
  margin: 36px auto 0;
  padding: 0 18px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3.5vw, 34px);
}

.legal-meta {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-card h2 {
  margin: 22px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink);
  font-size: 0.98rem;
}

.legal-card ul {
  margin: 10px 0 16px;
  padding-left: 20px;
}

.legal-note {
  margin-top: 20px;
  padding: 10px 12px;
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border-radius: 8px;
}

[data-theme="dark"] .site-footer {
  background: #1a1a1a;
}

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

[data-theme="dark"] .footer-section {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
  display: block;
}

.image-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 0;
  padding-top: 48px;
  border-top: 2px solid var(--line);
}

.image-gallery::before {
  content: 'Gallery';
  grid-column: 1 / -1;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  margin-bottom: 16px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: linear-gradient(135deg, var(--bg) 0%, rgba(230, 57, 70, 0.02) 100%);
  padding: 16px;
  transition: all 0.3s ease;
  cursor: zoom-in;
}

.image-gallery img:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.15);
  transform: scale(1.02);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  padding: 40px 20px;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  background: var(--surface);
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  max-width: 90vw;
  max-height: 85vh;
  overflow: hidden;
}

.lightbox-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  font-size: 36px;
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 100;
}

.lightbox-nav button {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 760px) {
  .lightbox-modal {
    padding: 20px 10px;
  }

  .lightbox-content img {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 28px;
  }

  .lightbox-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 980px) {
  .cards,
  .projects-grid,
  .hero-stats,
  .iso-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-preview-kpis {
    grid-template-columns: 1fr;
  }

  .services-carousel-track {
    grid-auto-columns: calc(50% - 9px);
  }
}

@media (max-width: 760px) {
  .hero {
    overflow: hidden;
  }

  .hero::after {
    display: none;
  }

  .section-divider {
    width: min(620px, 90%);
    height: 32px;
    margin: 0px auto 4px;
  }

  .section-divider::before {
    inset: 6px 0 0;
  }

  .section-title-wrap {
    padding: 18px 16px;
    margin-bottom: 20px;
  }

  .section-title-wrap h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    max-width: 20ch;
  }

  .eyebrow {
    font-size: 0.7rem;
    padding: 8px 14px;
  }

  .section-title-wrap .eyebrow {
    font-size: 0.82rem;
    padding: 9px 16px;
  }

  .section-divider::after {
    height: 18px;
    left: 4%;
    right: 4%;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-socials {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    order: 2;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-logo-img {
    height: 50px;
  }

  .site-header {
    border-radius: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .cards,
  .projects-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .iso-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .iso-card {
    border-radius: 12px;
    cursor: pointer;
    flex-direction: row;
    padding: 14px 16px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
  }

  .iso-card:active {
    transform: scale(0.98);
  }

  .iso-card::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .iso-card.is-expanded {
    flex-direction: column;
    align-items: center;
  }

  .iso-card.is-expanded::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .iso-image-wrapper {
    display: none;
    padding: 18px 12px;
    min-height: 120px;
    width: 100%;
  }

  .iso-card.is-expanded .iso-image-wrapper {
    display: flex;
  }

  .iso-image {
    max-width: 90px;
  }

  .iso-content {
    padding: 0;
    gap: 4px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-right: 28px;
  }

  .iso-card.is-expanded .iso-content {
    flex-direction: column;
    padding: 14px 12px 12px;
    padding-right: 12px;
    text-align: center;
  }

  .iso-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
  }

  .iso-card p {
    display: none;
  }

  .iso-card.is-expanded p {
    display: block;
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .iso-badge {
    padding: 4px 10px;
    font-size: 0.65rem;
    margin-top: 0;
    margin-left: 8px;
  }

  .iso-card.is-expanded .iso-badge {
    margin-left: 0;
    margin-top: 2px;
  }

  .services-mini-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-carousel-btn {
    display: none;
  }

  .services-carousel-track {
    grid-auto-columns: 85%;
  }

  .services-carousel-item img {
    height: 160px;
  }

  .hero {
    padding-top: 56px;
    padding-left: 18px;
    padding-right: 18px;
    min-height: 500px;
  }

  .hero-decoration:nth-child(1) {
    width: 200px;
    height: 200px;
  }

  .hero-decoration:nth-child(2) {
    display: none;
  }

  .projects-section {
    padding: 40px 18px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-tile {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .project-badge {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .project-tile p {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .project-tile h3 {
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .page-hero {
    padding-top: 50px;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .panel {
    padding: 24px 18px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    padding: 12px 14px;
  }

  .contact-form-actions {
    align-items: stretch;
  }

  .contact-form-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Social links in footer */
.social-links {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.social-links li {
  margin-bottom: 0 !important;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: 10px;
  transition: all 0.26s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--accent), #ff9f1c);
  color: white !important;
  border-color: transparent;
  transform: translateY(-1px);
}

.social-link-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
}

/* Side Buttons */
.side-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.side-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.side-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6);
  background: var(--accent-dark);
}

.side-btn:active {
  transform: scale(0.95);
}

.side-btn svg {
  width: 24px;
  height: 24px;
}

.phone-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.phone-btn:hover {
  background: linear-gradient(135deg, #1da851 0%, #0f6b5e 100%);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.map-btn {
  background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
  text-decoration: none;
}

.map-btn:hover {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  box-shadow: 0 6px 30px rgba(66, 133, 244, 0.6);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: "Sora", sans-serif;
  color: var(--ink);
}

/* Services page visual refresh */
.services-page .page-hero {
  margin-top: 18px;
  padding: 36px;
  border-radius: 30px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 28%, var(--line) 72%);
  background:
    radial-gradient(circle at 86% -8%, rgba(230, 57, 70, 0.2), transparent 42%),
    radial-gradient(circle at -12% 120%, rgba(255, 159, 28, 0.17), transparent 50%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
  box-shadow: 0 22px 56px rgba(21, 26, 34, 0.08);
}

[data-theme="dark"] .services-page .page-hero {
  border-color: color-mix(in srgb, var(--accent) 42%, rgba(255, 255, 255, 0.25) 58%);
  background:
    radial-gradient(circle at 84% -10%, rgba(255, 107, 122, 0.28), transparent 46%),
    radial-gradient(circle at -10% 120%, rgba(255, 159, 28, 0.18), transparent 52%),
    linear-gradient(132deg, rgba(34, 34, 34, 0.92), rgba(22, 22, 22, 0.86));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.services-page .page-hero h1 {
  max-width: 16ch;
}

.services-page .page-hero p {
  font-size: 1.02rem;
}

.services-pill-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-pill-row span {
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--accent) 82%, var(--ink) 18%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--chip-bg) 82%, #ffffff 18%);
}

[data-theme="dark"] .services-pill-row span {
  color: #ffd5da;
  border-color: rgba(255, 107, 122, 0.4);
  background: rgba(255, 107, 122, 0.15);
}

.services-hero-panel {
  border-radius: 22px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 36%, transparent);
  background: linear-gradient(145deg, rgba(230, 57, 70, 0.12), rgba(255, 159, 28, 0.12));
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .services-hero-panel {
  background: linear-gradient(145deg, rgba(255, 107, 122, 0.18), rgba(255, 159, 28, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services-hero-panel h2 {
  font-size: 1.1rem;
  margin: 0;
}

.services-hero-panel ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.services-hero-panel li {
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.64);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

[data-theme="dark"] .services-hero-panel li {
  background: rgba(20, 20, 20, 0.5);
}

.services-hero-panel strong {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.services-hero-panel span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.services-hero-reel {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.services-page .services-grid {
  margin-top: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.services-page .service-card {
  border-radius: 20px;
  padding: 26px 22px;
  border: 1.5px solid color-mix(in srgb, var(--line) 75%, var(--accent) 25%);
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--surface) 95%, #ffffff 5%), color-mix(in srgb, var(--surface) 88%, var(--chip-bg) 12%));
}

.services-page .service-card:hover {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--accent) 72%, var(--line) 28%);
  box-shadow: 0 20px 48px rgba(230, 57, 70, 0.16);
}

.service-card-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.25);
}

.service-card-pest .service-card-badge {
  background: linear-gradient(135deg, #e63946, #b81f2e);
}

.service-card-rodent .service-card-badge {
  background: linear-gradient(135deg, #8f2d56, #d14f73);
}

.service-card-disinfection .service-card-badge {
  background: linear-gradient(135deg, #0f9d8f, #19b48f);
}

.service-card-building .service-card-badge {
  background: linear-gradient(135deg, #2b59c3, #3978e6);
}

.service-card-expenses .service-card-badge {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.service-points {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), #ff9f1c);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 22%, transparent);
}

.services-page .card-link {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.services-trust {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-trust article {
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--line) 74%, var(--accent) 26%);
  background: linear-gradient(155deg, color-mix(in srgb, var(--surface) 95%, #ffffff 5%), color-mix(in srgb, var(--surface) 86%, var(--chip-bg) 14%));
  padding: 18px;
}

.services-trust h3 {
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.services-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-page .section {
  margin-top: 16px;
}

.services-help-panel {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(230, 57, 70, 0.1), transparent 32%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--chip-bg) 28%, var(--surface) 72%));
}

.services-help-panel .btn {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-panel {
    max-width: 560px;
  }

  .services-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .services-page .page-hero {
    padding: 22px;
    border-radius: 24px;
  }

  .services-page .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-card {
    padding: 22px 18px;
  }
}

/* Social Modal */
.social-modal-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-modal-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-modal-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateX(5px);
}

.social-modal-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Phone Modal */
.phone-modal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-modal-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.phone-modal-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.02);
}

.phone-modal-link svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #25D366;
}

.phone-modal-link:hover svg {
  color: white;
}

.phone-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.phone-number {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

/* Responsive */
@media (max-width: 760px) {
  .side-buttons {
    right: 15px;
    bottom: 80px;
  }

  .side-btn {
    width: 50px;
    height: 50px;
  }

  .side-btn svg {
    width: 22px;
    height: 22px;
  }

  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }

  .social-links {
    flex-direction: column;
  }
}

/* Mobile optimization overrides */
@media (max-width: 760px) {
  main,
  .content-wrap,
  .page-hero,
  .cards,
  .projects-inner,
  .iso-inner,
  .footer-content,
  .footer-bottom,
  .header-content {
    width: min(var(--max), 94%);
  }

  .site-header {
    padding: 10px 0;
    border-radius: 0;
    z-index: 51;
    background:
      linear-gradient(135deg, rgba(230, 57, 70, 0.12) 0%, rgba(255, 255, 255, 0) 52%),
      var(--header-bg);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.14);
  }

  [data-theme="dark"] .site-header {
    background:
      linear-gradient(135deg, rgba(255, 107, 122, 0.14) 0%, rgba(27, 27, 27, 0) 52%),
      var(--header-bg);
    box-shadow: 0 8px 24px rgba(255, 107, 122, 0.18);
  }

  .site-header::after {
    display: none;
  }

  .header-content {
    position: relative;
    flex-wrap: nowrap;
    padding: 0 8px;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 48px;
    width: auto;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease, top 0.2s ease, box-shadow 0.2s ease;
  }

  .menu-toggle::before {
    top: 14px;
    box-shadow: 0 6px 0 currentColor;
  }

  .menu-toggle::after {
    top: 26px;
  }

  .menu-toggle[aria-expanded="true"]::before {
    top: 20px;
    transform: rotate(45deg);
    box-shadow: none;
  }

  .menu-toggle[aria-expanded="true"]::after {
    top: 20px;
    transform: rotate(-45deg);
  }

  .theme-toggle,
  .lang-toggle-desktop {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .lang-toggle-desktop {
    display: none;
  }

  .lang-toggle-mobile {
    display: none;
  }

  .header-actions {
    margin-left: 0;
    gap: 8px;
    order: 2;
  }

  .theme-toggle {
    display: none;
  }

  .menu-toggle {
    order: 3;
    margin-left: auto;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 107, 122, 0.06));
    border-color: rgba(230, 57, 70, 0.32);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.1);
    transition: all 0.22s ease;
  }

  .menu-toggle:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(255, 107, 122, 0.12));
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.16);
    transform: translateY(-1px);
  }

  .menu-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.16), rgba(255, 107, 122, 0.1));
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.12);
  }

  [data-theme="dark"] .menu-toggle {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.14), rgba(255, 107, 122, 0.08));
    border-color: rgba(255, 107, 122, 0.32);
    box-shadow: 0 4px 14px rgba(255, 107, 122, 0.08);
  }

  [data-theme="dark"] .menu-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.2), rgba(255, 107, 122, 0.14));
    border-color: rgba(255, 107, 122, 0.5);
    box-shadow: 0 6px 18px rgba(255, 107, 122, 0.14);
  }

  [data-theme="dark"] .menu-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.18), rgba(255, 107, 122, 0.12));
    border-color: rgba(255, 107, 122, 0.4);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 85vw;
    max-width: 380px;
    height: 100dvh;
    z-index: 999;
    background: var(--surface);
    border-left: 2px solid rgba(230, 57, 70, 0.3);
    border-top: none;
    border-radius: 0;
    padding: 58px 14px 12px;
    gap: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
  }

  [data-theme="dark"] .nav {
    background:
      linear-gradient(180deg, rgba(255, 107, 122, 0.1) 0%, rgba(255, 107, 122, 0) 10%),
      var(--surface);
    border-left-color: rgba(255, 107, 122, 0.2);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-bottom: none;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-bottom: 3px;
    border: 1px solid transparent;
  }

  .nav a:not(.lang-toggle-mobile):hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(255, 107, 122, 0.04));
    border-color: rgba(230, 57, 70, 0.25);
    padding-left: 14px;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.08);
  }

  [data-theme="dark"] .nav a:not(.lang-toggle-mobile):hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.1), rgba(255, 107, 122, 0.05));
    border-color: rgba(255, 107, 122, 0.25);
    box-shadow: 0 2px 8px rgba(255, 107, 122, 0.08);
  }

  .nav a::after {
    display: none;
  }

  .lang-toggle-mobile {
    display: block;
    margin-top: 8px;
    padding: 14px 12px;
    border: 1.5px solid rgba(230, 57, 70, 0.28);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 122, 0.06));
    color: var(--ink);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.22s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.08);
  }

  .lang-toggle-mobile:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.16), rgba(255, 107, 122, 0.1));
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.14);
    transform: translateY(-2px);
  }

  [data-theme="dark"] .lang-toggle-mobile {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.12), rgba(255, 107, 122, 0.06));
    border-color: rgba(255, 107, 122, 0.28);
    box-shadow: 0 4px 12px rgba(255, 107, 122, 0.08);
  }

  [data-theme="dark"] .lang-toggle-mobile:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.18), rgba(255, 107, 122, 0.1));
    border-color: rgba(255, 107, 122, 0.4);
    box-shadow: 0 6px 16px rgba(255, 107, 122, 0.14);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 45;
  }

  body.nav-open .side-buttons {
    opacity: 0;
    pointer-events: none;
  }

  .side-menu-lang-picker {
    display: grid;
    margin-top: 6px;
    gap: 8px;
  }

  .lang-picker-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .lang-picker-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 7px;
    border: 1.5px solid rgba(230, 57, 70, 0.22);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), rgba(255, 107, 122, 0.03));
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.22s ease;
    cursor: pointer;
    min-height: 54px;
  }

  .lang-picker-option .lang-flag {
    width: 26px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  }

  .lang-picker-option .lang-flag svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lang-picker-option .lang-name {
    font-size: 0.75rem;
    font-weight: 600;
  }

  .lang-picker-option:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 107, 122, 0.08));
    border-color: rgba(230, 57, 70, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.12);
  }

  .lang-picker-option.active {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(255, 107, 122, 0.12));
    border-color: rgba(230, 57, 70, 0.45);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.1);
    cursor: pointer;
  }

  [data-theme="dark"] .lang-picker-option {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.08), rgba(255, 107, 122, 0.04));
    border-color: rgba(255, 107, 122, 0.22);
  }

  [data-theme="dark"] .lang-picker-option:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.14), rgba(255, 107, 122, 0.1));
    border-color: rgba(255, 107, 122, 0.35);
    box-shadow: 0 4px 12px rgba(255, 107, 122, 0.12);
  }

  [data-theme="dark"] .lang-picker-option.active {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.2), rgba(255, 107, 122, 0.14));
    border-color: rgba(255, 107, 122, 0.45);
    box-shadow: 0 0 0 2px rgba(255, 107, 122, 0.1);
  }

  .side-menu-tools {
    display: grid;
    margin-top: 6px;
    padding: 10px 0 0;
    border-top: 1px solid rgba(230, 57, 70, 0.15);
    gap: 8px;
  }

  [data-theme="dark"] .side-menu-tools {
    border-top-color: rgba(255, 107, 122, 0.15);
  }

  .side-menu-title {
    margin: 0;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 700;
    padding: 5px 5px 1px;
  }

  .side-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .side-menu-action,
  .side-menu-link {
    border: 1px solid rgba(230, 57, 70, 0.18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.04), rgba(255, 107, 122, 0.02));
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 9px 10px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    cursor: pointer;
    width: 100%;
    transition: all 0.22s ease;
  }

  [data-theme="dark"] .side-menu-action,
  [data-theme="dark"] .side-menu-link {
    border-color: rgba(255, 107, 122, 0.18);
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.06), rgba(255, 107, 122, 0.02));
  }

  .side-menu-action:hover,
  .side-menu-link:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 122, 0.06));
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
    transform: translateY(-1px);
  }

  [data-theme="dark"] .side-menu-action:hover,
  [data-theme="dark"] .side-menu-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.14), rgba(255, 107, 122, 0.08));
    border-color: rgba(255, 107, 122, 0.35);
    box-shadow: 0 4px 12px rgba(255, 107, 122, 0.14);
  }

  .side-menu-action.active {
    border-color: var(--accent);
    color: var(--accent);
    background: linear-gradient(135deg, var(--chip-bg), rgba(230, 57, 70, 0.08));
    font-weight: 700;
  }

  [data-theme="dark"] .side-menu-action.active {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(230, 57, 70, 0.1));
  }

  .side-menu-socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .side-menu-socials-title {
    margin-top: 8px;
  }

  .side-menu-socials .side-menu-link {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 107, 122, 0.08));
    border: 1.5px solid rgba(230, 57, 70, 0.25);
    padding: 8px 6px;
    min-height: 50px;
    font-weight: 700;
    font-size: 0.68rem;
  }

  .side-menu-social-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .side-menu-social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .side-menu-socials .side-menu-link:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(255, 107, 122, 0.14));
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.12);
  }

  [data-theme="dark"] .side-menu-socials .side-menu-link {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.14), rgba(255, 107, 122, 0.1));
    border-color: rgba(255, 107, 122, 0.28);
  }

  [data-theme="dark"] .side-menu-socials .side-menu-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.2), rgba(255, 107, 122, 0.16));
    border-color: rgba(255, 107, 122, 0.45);
    box-shadow: 0 4px 12px rgba(255, 107, 122, 0.14);
  }

  html.a11y-large-text {
    font-size: 112%;
  }

  html.a11y-high-contrast body {
    filter: contrast(1.14);
  }

  .hero {
    min-height: auto;
    padding: 84px 18px 56px;
    background-attachment: scroll;
    background-position: 68% center;
  }

  .hero-inner {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
    max-width: 12ch;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-cta {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
  }

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

  .hero-stats {
    margin-top: 28px;
    gap: 12px;
  }

  .hero-stats article {
    padding: 20px 16px;
  }

  .section {
    padding: 28px 0;
  }

  .section-title-wrap h2 {
    max-width: 100%;
  }

  .cards {
    margin-top: 20px;
    padding: 20px 0;
    gap: 18px;
  }

  .card {
    padding: 24px 18px;
  }

  .card-content {
    padding: 18px;
  }

  .certifications-section,
  .projects-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .certifications-section {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 50% 100%, 0 96%);
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .projects-section {
    clip-path: polygon(0 4%, 50% 0, 100% 4%, 100% 100%, 0 100%);
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .project-tile {
    padding: 20px 16px;
  }

  .panel {
    padding: 26px 20px;
  }

  .quick-facts article:hover,
  .project-tile:hover,
  .card:hover,
  .iso-card:hover,
  .hero-stats article:hover,
  .side-btn:hover {
    transform: none;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 32px;
  }

  .image-gallery img {
    max-height: 280px;
    padding: 10px;
  }

  .site-footer {
    margin-top: 40px;
    padding: 32px 0 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 24px;
  }

  .footer-section:first-child {
    grid-column: auto;
    padding: 16px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-logo {
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    height: 42px;
    margin: 0 auto;
  }

  .footer-tagline {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .footer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-section h3 {
    font-size: 0.9rem;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: color 0.2s ease;
  }

  .footer-section h3::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.3s ease;
  }

  .footer-section.expanded h3::after {
    content: '−';
  }

  .footer-section ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
  }

  .footer-section.expanded ul {
    max-height: 500px;
    padding-bottom: 12px;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }

  .footer-section a {
    font-size: 0.88rem;
  }

  .footer-contact-list {
    gap: 6px;
  }

  .footer-contact-item {
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.85rem;
  }

  .footer-contact-icon {
    width: 26px;
    height: 26px;
  }

  .footer-contact-icon svg {
    width: 13px;
    height: 13px;
  }

  .footer-subtitle {
    margin-top: 10px;
    cursor: default;
  }

  .footer-subtitle::after {
    display: none;
  }

  .social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-height: none !important;
    padding-bottom: 0 !important;
  }

  .social-links a {
    padding: 8px 6px;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

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

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

  .footer-find-section {
    border-bottom: none;
  }

  .footer-map-wrap {
    border-radius: 10px;
  }

  .footer-map-wrap iframe {
    height: 160px;
  }

  .footer-map-link {
    font-size: 0.85rem;
    margin-top: 6px;
  }

  .footer-bottom {
    padding: 16px 18px;
    font-size: 0.82rem;
  }

  .footer-legal-links {
    gap: 6px 12px;
  }

  .footer-legal-links a {
    font-size: 0.82rem;
  }

  .legal-shell {
    margin-top: 24px;
  }

  .footer-bottom p {
    margin: 3px 0;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 34px;
    padding: 6px 8px;
  }

  .menu-toggle,
  .theme-toggle,
  .lang-toggle {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    left: 10px;
    width: 17px;
  }

  .menu-toggle::before {
    top: 13px;
  }

  .menu-toggle::after {
    top: 25px;
  }

  .menu-toggle[aria-expanded="true"]::before,
  .menu-toggle[aria-expanded="true"]::after {
    top: 19px;
  }

  .lang-toggle {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero {
    padding: 76px 14px 44px;
  }

  .hero .eyebrow {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 9vw, 2.35rem);
  }

  .hero-copy {
    font-size: 0.93rem;
  }

  .hero-stats h2 {
    font-size: clamp(1.4rem, 8vw, 1.9rem);
  }

  .page-hero {
    padding-top: 36px;
    padding-bottom: 18px;
  }

  .panel {
    padding: 20px 16px;
  }

  .modal-content {
    padding: 24px 16px;
  }

  .phone-modal-link {
    padding: 16px 14px;
    gap: 14px;
  }

  .phone-number {
    font-size: 1.1rem;
  }

  .footer-content {
    gap: 0;
  }

  .footer-section:first-child {
    padding: 12px 0;
    margin-bottom: 8px;
  }

  .footer-logo-img {
    height: 38px;
  }

  .footer-tagline {
    font-size: 0.82rem;
  }

  .footer-section h3 {
    font-size: 0.88rem;
    padding: 10px 0;
  }

  .social-links a {
    font-size: 0.78rem;
    padding: 7px 5px;
  }

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

  .footer-map-wrap iframe {
    height: 140px;
  }

  .footer-bottom {
    padding: 14px 16px;
    font-size: 0.8rem;
  }
}

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

  .brand:hover .logo-img,
  .brand:focus-visible .logo-img,
  .social-icon:hover,
  .theme-toggle:hover,
  .lang-toggle:hover,
  .nav a:hover {
    transform: none;
  }

  .section-divider::before {
    animation: none;
  }

  .card::after {
    transition: none;
    transform: translateX(-170%) skewX(-16deg);
  }

  .card:hover::after {
    transform: translateX(-170%) skewX(-16deg);
  }

  .card-image,
  .card:hover .card-image {
    transition: none;
    transform: none;
    filter: none;
  }

  .timeline {
    gap: 10px;
  }

  .timeline::before,
  .timeline::after {
    left: 32px;
    width: 2px;
  }

  .timeline::before {
    top: 24px;
    bottom: 24px;
  }

  .timeline::after {
    top: 24px;
    bottom: 24px;
  }

  .timeline li {
    grid-template-columns: 52px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .timeline li h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .timeline li p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .timeline::after {
    transform: scaleY(1);
    transition: none;
  }

  .timeline.is-animated li span {
    animation: none;
  }

  .partners-subsection {
    margin-top: 20px;
    padding: 16px;
    border-radius: 14px;
  }

  .partners-subsection-head {
    margin-bottom: 10px;
  }

  .partners-subsection-head h3 {
    font-size: 1.1rem;
  }

  .partners-showcase {
    margin-top: 12px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .partner-card {
    min-height: 80px;
    border-radius: 10px;
    padding: 8px;
  }

  .partner-card img {
    max-height: 70px;
  }

  #contact .section-title-wrap {
    margin-bottom: 10px;
  }

  .contact p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .timeline.is-animated li span {
    animation: none;
  }

  .services-carousel-item,
  .services-carousel-item:hover,
  .services-carousel-item:focus-visible,
  .services-carousel-item.is-active,
  .services-carousel-item img,
  .services-carousel-item:hover img,
  .services-carousel-item.is-active img,
  .services-carousel-dot,
  .services-carousel-dot:hover,
  .services-carousel-dot.is-active,
  .services-carousel-btn,
  .services-carousel-btn:hover {
    transition: none;
    transform: none;
  }
}

