:root {
  --bg: #0e0f14;
  --panel: #171923;
  --text: #e9ebf1;
  --muted: #b4bacd;
  --accent: #f4a100;
  --accent-2: #ffcd39;
  --line: #2a2e3a;

  /* Typography scale */
  --text-sm: 0.92rem;
  --text-base: 1rem;
  --text-md: clamp(1rem, 1.3vw, 1.15rem);
  --text-lg: clamp(1.02rem, 1.5vw, 1.35rem);

  --heading-xs: clamp(1.05rem, 1.8vw, 1.4rem);
  --heading-sm: clamp(1.3rem, 2.5vw, 1.8rem);
  --heading-md: clamp(1.6rem, 3.5vw, 2.4rem);
  --heading-lg: clamp(2rem, 4.4vw, 3.2rem);
  --heading-xl: clamp(2.2rem, 6vw, 4rem);
  --heading-xxl: clamp(2.5rem, 8vw, 5rem);

  /* Section spacing */
  --section-pad: 4.5rem;
  --section-pad-sm: 3rem;
  --hero-pad-top: 5rem;
  --hero-pad-bottom: 4rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.page-about {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(14, 15, 20, 0.5);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand img {
  width: 170px;
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #111;
  font-weight: 700;
  padding: 0.72rem 1.1rem;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-small {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.custom-btn-small {
  height: 44px;
  min-width: 158px;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  color: #111;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(244, 161, 0, 0.35);
  transition: filter 0.2s ease;
}

.custom-btn-small:hover {
  filter: brightness(1.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

#burger-toggle {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  padding: 0;
}

#burger-toggle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

#burger-toggle.is-open {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .site-header {
    overflow-x: clip;
  }

  .nav-wrap {
    gap: 0.35rem;
    min-height: 64px;
    min-width: 0;
  }

  /* Room for .custom-btn-small (min-width 158px) + #burger-toggle (42px) + gaps — do not shrink the CTA */
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 158px - 42px - 1.25rem);
  }

  .brand img {
    width: 100%;
    max-width: min(145px, 100%);
    height: auto;
    display: block;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 0.35rem;
  }
}

@media (max-width: 360px) {
  .brand {
    max-width: calc(100% - 158px - 42px - 1rem);
  }

  .brand img {
    max-width: min(118px, 100%);
  }
}

.main-nav.fixed {
  position: fixed;
  top: 17px;
  left: 0;
  width: 100%;
  z-index: 35;
}

.main-nav.fixed .container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.main-nav-inner {
  display: flex;
  justify-content: flex-end;
}

#burger {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

#burger img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

#burger.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: linear-gradient(
    129.81deg,
    #000 11.184%,
    rgba(0, 0, 0, 0.5) 61.965%
  );
  backdrop-filter: blur(6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.side-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-menu-panel {
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 6rem 1rem 2rem;
}

.side-menu-nav {
  width: min(360px, 90vw);
}

.side-menu-nav a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 14px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.3s;
}

.side-menu-nav a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.side-menu-nav a:hover {
  text-decoration: underline;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.custom-btn-wrapper {
  display: inline-flex;
}

.custom-btn,
.custom-btn-noico {
  font-size: 18px;
}

.custom-btn-noico {
  z-index: 1;
  border: 0;
  font-family: inherit;
  font-weight: 500;
  width: 218px;
  height: 52px;
  border-radius: 50px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  color: #020205;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(244, 161, 0, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.custom-btn-noico:hover {
  filter: brightness(1.06);
}

.btn-align {
  text-align: center;
  margin-top: 2rem;
}

.custom-btn {
  z-index: 1;
  border: 0;
  font-family: inherit;
  font-weight: 500;
  width: 214px;
  height: 52px;
  border-radius: 50px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  color: #020205;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(244, 161, 0, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.custom-btn:hover {
  filter: brightness(1.06);
}

.custom-btn img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.hero {
  padding: 6.25rem 0 4.5rem;
  background:
    radial-gradient(
      circle at top right,
      rgba(244, 161, 0, 0.18),
      transparent 34%
    ),
    radial-gradient(circle at 20% 0%, rgba(255, 205, 57, 0.1), transparent 30%);
}

.main-header {
  min-height: min(736px, 92vh);
  position: relative;
  display: flex;
  align-items: center;
  overflow-x: clip;
  background:
    linear-gradient(129.81deg, #000 11.184%, rgba(0, 0, 0, 0.72) 61.965%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover;
  background-position: center, center bottom;
}

/* Matches former background-size: 30% auto; background-position: 98% center */
.main-header-hero-img {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: calc((100% - 30%) * 0.98);
  width: 30%;
  height: auto;
  max-height: 92%;
  transform: translateY(-50%);
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at -8% 45%,
      rgba(219, 106, 164, 0.44) 0%,
      rgba(219, 106, 164, 0.18) 28%,
      rgba(0, 0, 0, 0) 48%
    ),
    radial-gradient(
      circle at 108% 56%,
      rgba(219, 106, 164, 0.42) 0%,
      rgba(219, 106, 164, 0.16) 30%,
      rgba(0, 0, 0, 0) 52%
    );
}

.main-header > .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
}

h1 {
  font-size: var(--heading-xl);
  max-width: 18ch;
}

h2 {
  font-size: var(--heading-lg);
  margin-bottom: 1.3rem;
}

h3 {
  font-size: var(--heading-sm);
}

h4 {
  font-size: var(--heading-xs);
}

.hero-title {
  margin: 0;
  font-size: var(--heading-xxl);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.hero-accent {
  color: #ffcd39;
}

.hero-subtitle {
  margin: 0.35rem 0 1.5rem;
  font-size: clamp(2rem, 7vw, 4.1rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.01em;
  color: #f4f5f9;
}

.lead {
  color: #d6d9e5;
  max-width: 52ch;
  font-size: clamp(0.88rem, 1.25vw, 1.55rem);
  line-height: 1.28;
  margin: 0;
}

.lead strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 0;
  box-shadow:
    inset 0 34px 38px -34px rgba(0, 0, 0, 0.48),
    inset 0 -34px 38px -34px rgba(0, 0, 0, 0.4);
}

.section.alt {
  background:
    radial-gradient(
      70% 120% at -6% 50%,
      rgba(132, 58, 136, 0.14),
      rgba(132, 58, 136, 0) 52%
    ),
    radial-gradient(
      70% 120% at 106% 50%,
      rgba(132, 58, 136, 0.12),
      rgba(132, 58, 136, 0) 52%
    ),
    linear-gradient(180deg, #0d0f17 0%, #0e1018 100%);
}

.section:first-of-type {
  box-shadow: inset 0 -34px 38px -34px rgba(0, 0, 0, 0.4);
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      140% 120% at -8% 100%,
      rgba(244, 161, 0, 0.2),
      rgba(244, 161, 0, 0) 38%
    ),
    radial-gradient(
      140% 120% at 108% 100%,
      rgba(244, 161, 0, 0.2),
      rgba(244, 161, 0, 0) 38%
    ),
    radial-gradient(
      120% 80% at 0% 50%,
      rgba(138, 59, 128, 0.24),
      rgba(138, 59, 128, 0) 45%
    ),
    radial-gradient(
      120% 80% at 100% 50%,
      rgba(138, 59, 128, 0.2),
      rgba(138, 59, 128, 0) 45%
    ),
    linear-gradient(180deg, #05070d 0%, #07090f 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(
      circle at -4% 102%,
      rgba(244, 161, 0, 0.24) 0 2px,
      rgba(0, 0, 0, 0) 2px 12px
    ),
    repeating-radial-gradient(
      circle at 104% 102%,
      rgba(244, 161, 0, 0.24) 0 2px,
      rgba(0, 0, 0, 0) 2px 12px
    );
  background-size:
    52% 86%,
    52% 86%;
  background-position:
    left bottom,
    right bottom;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.05) 28%,
    rgba(0, 0, 0, 0.22)
  );
  z-index: 0;
}

.about-section > .container {
  position: relative;
  z-index: 1;
}

.about-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: var(--heading-lg);
  font-weight: 700;
}

.about-section h2 span {
  color: #ffcd39;
}

.about-section p {
  margin: 0 auto 1rem;
  text-align: center;
  max-width: 52ch;
  color: #eceef4;
  font-size: var(--text-md);
  line-height: 1.35;
}

.about-section p strong {
  color: #fff;
  font-weight: 700;
}

.mission-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      72% 120% at -8% 52%,
      rgba(125, 52, 131, 0.5),
      rgba(125, 52, 131, 0) 52%
    ),
    radial-gradient(
      78% 125% at 108% 60%,
      rgba(140, 64, 146, 0.55),
      rgba(140, 64, 146, 0) 54%
    ),
    linear-gradient(90deg, #090b12 0%, #07090f 50%, #090b12 100%);
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(
      circle at -4% 0%,
      rgba(244, 161, 0, 0.2) 0 2px,
      rgba(0, 0, 0, 0) 2px 12px
    ),
    repeating-radial-gradient(
      circle at 104% 0%,
      rgba(244, 161, 0, 0.2) 0 2px,
      rgba(0, 0, 0, 0) 2px 12px
    );
  background-size:
    50% 82%,
    50% 82%;
  background-position:
    left top,
    right top;
  background-repeat: no-repeat;
  opacity: 0.45;
}

.mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 3rem;
}

.mission-visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.mission-content h2 {
  margin-bottom: 1.2rem;
  font-size: var(--heading-lg);
}

.mission-content h2 span {
  color: #ffcd39;
}

.mission-content p {
  margin: 0 0 1rem;
  max-width: 62ch;
  color: #e5e8f2;
  font-size: var(--text-md);
  line-height: 1.35;
}

.mission-content p strong {
  color: #fff;
}

.history-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      70% 120% at 102% 54%,
      rgba(136, 58, 140, 0.56),
      rgba(136, 58, 140, 0) 54%
    ),
    radial-gradient(
      65% 110% at -6% 52%,
      rgba(125, 52, 131, 0.32),
      rgba(125, 52, 131, 0) 52%
    ),
    linear-gradient(90deg, #06080e 0%, #07090f 52%, #080a10 100%);
}

.history-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 2rem;
}

.history-content h2 {
  margin-bottom: 1.2rem;
  font-size: var(--heading-lg);
}

.history-content h2 span {
  color: #ffcd39;
}

.history-content p {
  margin: 0 0 1rem;
  max-width: 57ch;
  color: #e5e8f2;
  font-size: var(--text-md);
  line-height: 1.35;
}

.history-content p strong {
  color: #fff;
}

.history-visual {
  display: flex;
  justify-content: flex-end;
}

.history-visual img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      78% 120% at -8% 50%,
      rgba(132, 58, 136, 0.35),
      rgba(132, 58, 136, 0) 54%
    ),
    radial-gradient(
      72% 120% at 108% 50%,
      rgba(132, 58, 136, 0.28),
      rgba(132, 58, 136, 0) 56%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    100% 64px,
    92px 100%;
  opacity: 0.22;
}

.services-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(5, 7, 13, 0.88) 0%,
      rgba(5, 7, 13, 0.68) 36%,
      rgba(5, 7, 13, 0.12) 100%
    ),
    url("https://evortotec.eu/assets/images/pattern.webp") center bottom / cover no-repeat;
  opacity: 0.62;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.services-section h2 {
  margin-bottom: 2.1rem;
  text-align: center;
  font-size: var(--heading-lg);
  font-weight: 700;
}

.services-section h2 span {
  color: #ffcd39;
}

#clients h2 {
  text-align: center;
  margin-bottom: 2.35rem;
  font-size: var(--heading-lg);
  font-weight: 700;
}

#clients h2 strong {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 22px rgba(244, 161, 0, 0.38);
}

#clients {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      120% 90% at 12% 20%,
      rgba(244, 161, 0, 0.2) 0%,
      rgba(244, 161, 0, 0) 52%
    ),
    radial-gradient(
      100% 80% at 92% 10%,
      rgba(255, 205, 57, 0.14) 0%,
      rgba(255, 205, 57, 0) 55%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

#clients::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    100% 64px,
    86px 100%;
  opacity: 0.14;
}

#clients > .container {
  position: relative;
  z-index: 1;
}

#faq h2 {
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: var(--heading-lg);
  font-weight: 700;
}

/* Pre-footer contact section (home) */
.contact-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      120% 100% at 0% 0%,
      rgba(138, 59, 128, 0.32) 0%,
      rgba(138, 59, 128, 0) 55%
    ),
    radial-gradient(
      120% 100% at 100% 0%,
      rgba(244, 161, 0, 0.18) 0%,
      rgba(244, 161, 0, 0) 55%
    ),
    linear-gradient(180deg, #05070d 0%, #07090f 100%);
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    100% 72px,
    96px 100%;
  opacity: 0.16;
}

.contact-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("https://evortotec.eu/assets/images/pattern.webp") center bottom / cover
    no-repeat;
  opacity: 0.18;
}

.contact-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.contact-cta-title {
  margin: 0 0 1.1rem;
  font-size: var(--heading-xl);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.contact-cta-accent {
  color: var(--accent-2);
}

.contact-cta-light {
  font-weight: 300;
  color: #f4f5f9;
}

.contact-cta-label {
  margin: 0.9rem 0 0.4rem;
  color: #fff;
  font-weight: 600;
}

.contact-cta-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-2);
  font-weight: 600;
}

.contact-cta-mail-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

.contact-cta-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.contact-cta-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-cta-socials a:hover,
.contact-cta-socials a:focus-visible {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 205, 57, 0.45);
  background: rgba(255, 205, 57, 0.12);
  box-shadow: 0 6px 18px rgba(255, 205, 57, 0.2);
  outline: none;
}

.contact-cta-socials a:focus-visible {
  box-shadow:
    0 6px 18px rgba(255, 205, 57, 0.2),
    0 0 0 2px rgba(255, 205, 57, 0.35);
}

.contact-cta-socials img {
  width: 18px;
  height: 18px;
  transition: transform 0.28s ease;
}

.contact-cta-socials a:hover img,
.contact-cta-socials a:focus-visible img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .contact-cta-socials a,
  .contact-cta-socials img {
    transition: none;
  }

  .contact-cta-socials a:hover,
  .contact-cta-socials a:focus-visible {
    transform: none;
  }

  .contact-cta-socials a:hover img,
  .contact-cta-socials a:focus-visible img {
    transform: none;
  }
}

.contact-cta-right {
  display: flex;
  justify-content: flex-end;
}

.contact-cta-form {
  width: min(430px, 100%);
  padding: 1.35rem 1.35rem 1.15rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 0.8rem;
}

.contact-cta-form input,
.contact-cta-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 0.9rem 1.05rem;
  background: #fff;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  font: inherit;
}

.contact-cta-form textarea {
  border-radius: 1.15rem;
  min-height: 106px;
  resize: vertical;
  padding-top: 0.85rem;
}

.contact-cta-form input::placeholder,
.contact-cta-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.45);
}

.contact-cta-submit {
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  color: #111;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(244, 161, 0, 0.35);
}

.contact-cta-submit:hover {
  filter: brightness(1.06);
}

@media (max-width: 980px) {
  .contact-cta-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-cta-right {
    justify-content: center;
    width: 100%;
  }

  .contact-cta-socials {
    justify-content: center;
  }

  body.page-contacts .subpage-hero .contact-cta-socials {
    justify-content: flex-start;
  }
}

/* BeefUp-like accordion */
.faq-accordion {
  display: grid;
  gap: 0.9rem;
}

.beefup {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: rgba(17, 19, 28, 0.55);
  overflow: hidden;
}

.beefup__head {
  margin: 0;
  min-height: 66px;
  padding: 1.05rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.25;
}

.beefup__head::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 205, 57, 0.22);
  color: var(--accent-2);
  background: rgba(255, 205, 57, 0.06);
}

.beefup.is-open .beefup__head::after {
  content: "–";
}

.beefup__body {
  padding: 0 1.25rem 1.1rem;
  color: #d0d6e5;
  font-size: 1rem;
  line-height: 1.45;
}

.beefup__content {
  padding-top: 0.2rem;
}

.beefup__head:focus-visible {
  outline: 2px solid rgba(255, 205, 57, 0.75);
  outline-offset: 3px;
}

#faq .faq-accordion {
  gap: 0;
}

#faq .beefup {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 18, 0.98) 0%,
    rgba(5, 8, 16, 0.98) 100%
  );
}

#faq .beefup + .beefup {
  margin-top: -1px;
}

#faq .beefup__head {
  min-height: 76px;
  padding: 1.25rem 4.1rem 1.25rem 2rem;
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.3;
}

#faq .beefup__head::after {
  content: "+";
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-2);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

#faq .beefup.is-open .beefup__head::after {
  content: "−";
}

#faq .beefup__body {
  padding: 0 2rem 1.25rem;
  color: #cfd5e6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: end;
}

.service-item {
  text-align: center;
  display: block;
}

.service-item img {
  width: min(180px, 100%);
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.8rem;
}

.service-item h3 {
  margin: 0;
  color: #fff;
  font-size: var(--heading-xs);
  font-weight: 700;
  line-height: 1.05;
  transition: color 0.2s ease;
}

.service-item:hover h3,
.service-item:focus-visible h3 {
  color: var(--accent-2);
}

.service-item:focus-visible {
  outline: 2px solid rgba(255, 205, 57, 0.75);
  outline-offset: 6px;
}

.workflow-section h2 {
  text-align: center;
  margin-bottom: 2.35rem;
  font-size: var(--heading-lg);
  font-weight: 700;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      70% 120% at -8% 45%,
      rgba(132, 58, 136, 0.34),
      rgba(132, 58, 136, 0) 55%
    ),
    radial-gradient(
      70% 120% at 108% 56%,
      rgba(132, 58, 136, 0.3),
      rgba(132, 58, 136, 0) 58%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    100% 56px,
    86px 100%;
  opacity: 0.14;
}

.workflow-section > .container {
  position: relative;
  z-index: 1;
}

.workflow-section h2 span {
  color: #ffcd39;
}

.work-box {
  width: min(930px, 100%);
  margin: 0 auto;
  position: relative;
  padding: 0.3rem 0 0.35rem;
}

.work-box::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  box-shadow: 0 0 20px rgba(244, 161, 0, 0.42);
}

.work-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 134px;
  padding: 0.45rem 0;
}

.work-item span {
  grid-column: 2;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: #fff;
  border: 6px solid #ffcd39;
  color: #171923;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  z-index: 1;
  box-shadow:
    0 0 0 12px rgba(255, 205, 57, 0.12),
    0 0 26px rgba(244, 161, 0, 0.34);
}

.work-content {
  position: relative;
  grid-column: 3;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center visible content against the ring */
  align-self: stretch; /* use full row height so centering is stable for multi-line text */
  gap: 0.55rem;
}

.work-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -48px; /* horizontal connector from ring to text */
  width: 40px;
  height: 1px;
  background: rgba(255, 205, 57, 0.48);
  transform: translateY(-50%);
}

.work-item:nth-child(even) .work-content {
  grid-column: 1;
  text-align: right;
}

.work-item:nth-child(even) .work-content::before {
  left: auto;
  right: -48px;
}

.work-content h3 {
  margin: 0;
  font-size: var(--heading-sm);
  color: #fff;
  line-height: 1.05;
}

.work-content p {
  margin: 0;
  color: #d0d6e5;
  font-size: var(--text-md);
  line-height: 1.33;
}

.steps span {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.steps p,
.latest,
.section p {
  color: var(--muted);
}

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

/* Clients slider */
.testimonials-slider {
  margin-top: 1.2rem;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.testimonial-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  padding: 0 0.25rem;
}

.testimonials-slider.is-dragging .testimonials-track {
  cursor: grabbing;
}

/* Client card (matches section.rev look) */
.client-card {
  width: min(690px, 100%);
  min-height: 267px;
  padding: 2.05rem 2rem 1.85rem;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      120% 90% at 86% 20%,
      rgba(244, 161, 0, 0.35) 0%,
      rgba(244, 161, 0, 0) 55%
    ),
    radial-gradient(
      90% 70% at 10% 0%,
      rgba(255, 205, 57, 0.18) 0%,
      rgba(255, 205, 57, 0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(11, 13, 21, 0.94) 0%,
      rgba(7, 8, 15, 0.98) 100%
    );
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    rgba(0, 0, 0, 0) 10px
  );
  opacity: 0.6;
}

.client-card::after {
  content: "";
  position: absolute;
  inset: -40px -40px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(255, 205, 57, 0.32) 0%,
    rgba(255, 205, 57, 0) 70%
  );
  filter: blur(2px);
  pointer-events: none;
}

.client-name {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.client-role {
  position: relative;
  color: var(--accent-2);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.client-quote {
  position: relative;
  color: #e9edf7;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.42;
  max-width: 62ch;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17, 19, 28, 0.4);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease;
}

.carousel-btn:hover {
  border-color: rgba(255, 205, 57, 0.85);
  color: var(--accent-2);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active,
.carousel-dot[aria-pressed="true"] {
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  border-color: rgba(255, 205, 57, 0.95);
}

.carousel-dot:focus-visible,
.carousel-btn:focus-visible {
  outline: 2px solid rgba(255, 205, 57, 0.75);
  outline-offset: 3px;
}

blockquote {
  margin: 0;
  border-left: 3px solid var(--accent);
  border-radius: 0.5rem;
  background: #11131c;
  padding: 1rem 1rem 1rem 1.1rem;
}

blockquote footer {
  margin-top: 0.8rem;
  color: #d5daea;
  font-size: 0.9rem;
}

.latest {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

/* Latest slider */
#blog h2 {
  text-align: center;
  margin-bottom: 2.1rem;
  font-size: var(--heading-lg);
  font-weight: 700;
}

#blog h2 strong {
  color: var(--accent-2);
}

body.page-consulting #blog h2 {
  position: relative;
  display: inline-block;
  text-align: left;
  padding: 0.45rem 0.8rem 0.6rem;
  border-radius: 0.2rem;
  background:
    radial-gradient(
      85% 120% at 100% 0%,
      rgba(244, 161, 0, 0.18),
      rgba(244, 161, 0, 0) 62%
    ),
    linear-gradient(180deg, rgba(4, 8, 20, 0.98), rgba(6, 10, 20, 0.96));
  overflow: hidden;
}

body.page-consulting #blog .container {
  text-align: center;
}

body.page-consulting #blog h2 span {
  color: #f2f4fa;
}

body.page-consulting #blog h2::after {
  content: "";
  position: absolute;
  inset: -35% -10% -35% 45%;
  background: repeating-radial-gradient(
    ellipse at 100% 50%,
    rgba(244, 161, 0, 0.22) 0 2px,
    rgba(244, 161, 0, 0) 2px 13px
  );
  opacity: 0.35;
  pointer-events: none;
}

.latest-slider {
  --perView: 3;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem 0;
}

.latest-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s ease;
}

.latest-card {
  flex: 0 0 441px;
  width: 441px;
  min-height: 468px;
  padding: 0 0.6rem;
  display: grid;
  gap: 1.05rem;
  color: #fff;
  text-decoration: none;
  transform: translateY(0);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.latest-media {
  border-radius: 0.75rem;
  overflow: hidden;
  background:
    url("https://evortotec.eu/assets/images/last-slide-bg.webp") center / cover no-repeat,
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 354px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.latest-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 55% at 50% 35%,
    rgba(255, 205, 57, 0.18),
    rgba(255, 205, 57, 0) 70%
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.latest-icon {
  width: 225px;
  height: 180px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transform: scale(1);
  transition: transform 220ms ease;
}

.latest-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
}

.latest-card:hover,
.latest-card:focus-visible {
  transform: translateY(-6px);
}

.latest-card:hover .latest-media,
.latest-card:focus-visible .latest-media {
  border-color: rgba(255, 205, 57, 0.55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.latest-card:hover .latest-media::after,
.latest-card:focus-visible .latest-media::after {
  opacity: 1;
}

.latest-card:hover .latest-icon,
.latest-card:focus-visible .latest-icon {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .latest-card,
  .latest-media,
  .latest-media::after,
  .latest-icon {
    transition: none !important;
  }

  .latest-card:hover,
  .latest-card:focus-visible,
  .latest-card:hover .latest-media,
  .latest-card:focus-visible .latest-media {
    transform: none !important;
  }
}

.latest-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
  color: #0b0d14;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.latest-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.latest-arrow.prev {
  left: 10px;
}

.latest-arrow.next {
  right: 10px;
}

.latest-arrow:hover {
  background: rgba(255, 205, 57, 0.25);
  border-color: rgba(255, 205, 57, 0.55);
}

@media (max-width: 980px) {
  .latest-slider {
    --perView: 2;
  }

  .latest-card {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    min-height: 0;
  }

  .latest-media {
    height: auto;
    aspect-ratio: 422 / 354;
    min-height: 200px;
    max-height: min(354px, 42vw);
  }

  .latest-icon {
    width: min(200px, 42vw);
    height: auto;
    max-height: 150px;
  }
}

@media (max-width: 760px) {
  .latest-slider {
    --perView: 1;
  }

  .latest-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0 0.35rem;
  }

  .latest-media {
    height: auto;
    aspect-ratio: 422 / 354;
    min-height: 180px;
    max-height: none;
  }

  .latest-icon {
    width: min(190px, 58%);
    height: auto;
    max-height: 140px;
  }
}

details {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  background: #11131c;
}

details + details {
  margin-top: 0.65rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 2.8rem;
  background: var(--bg);
}

/* New footer layout (logo + links list) */

.main-footer {
  display: block;
}

.main-footer-top {
  display: grid;
  grid-template-columns: 1fr 850px;
  grid-template-areas:
    "brand ."
    "links legal";
  column-gap: 0.75rem;
  row-gap: 1.4rem;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 0.9rem;
  grid-area: brand;
}

.main-footer-links {
  grid-area: links;
}

.main-footer-legal {
  grid-area: legal;
  justify-self: start;
}

.footer-brand img {
  width: 170px;
  height: auto;
}

.main-footer-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
  color: var(--muted);
  max-width: 20ch;
}

.main-footer-links a {
  padding: 0.15rem 0;
  border-bottom: none;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.main-footer-links a:hover,
.main-footer-links a:focus-visible {
  color: var(--accent-2);
  border-bottom-color: transparent;
}

.main-footer-legal {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.main-footer-legal-title {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.main-footer-legal a {
  color: var(--muted);
  padding: 0.15rem 0;
  border-bottom: none;
  width: fit-content;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.main-footer-legal a:hover,
.main-footer-legal a:focus-visible {
  color: var(--accent-2);
  border-bottom-color: transparent;
}

.main-footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 1.8rem;
  margin-top: 1.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  gap: 1rem;
}

.main-footer-address {
  text-align: right;
  max-width: 72ch;
  justify-self: end;
}

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

  .main-footer-bottom {
    grid-template-columns: 1fr;
  }

  .main-footer-address {
    text-align: left;
    justify-self: start;
  }
}

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

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
  }

  .mission-content p {
    max-width: 46ch;
  }

  .history-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
  }

  .history-content p {
    max-width: 46ch;
  }

  .work-box,
  .testimonials,
  .footer-grid {
    width: 100%;
  }

  .work-box::before {
    left: 22px;
    transform: none;
  }

  .work-item {
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    min-height: 0;
    padding: 0.7rem 0;
  }

  .work-item span {
    grid-column: 1;
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    border-width: 3px;
  }

  .work-content::before {
    display: none;
  }

  .work-content,
  .work-item:nth-child(even) .work-content {
    grid-column: 2;
    text-align: left;
  }

  .work-item:nth-child(even) .work-content::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .main-nav:not(.fixed) {
    display: none;
  }

  .hero {
    padding-top: 5.8rem;
  }

  .side-menu-nav a {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-item img {
    width: min(170px, 70%);
    height: 136px;
  }
}

/* ===========================
   SUBPAGE HERO
   =========================== */
.subpage-hero {
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background:
    url("https://evortotec.eu/assets/images/header-img.png.webp") no-repeat,
    linear-gradient(129.81deg, #000 11.184%, rgba(0, 0, 0, 0.72) 61.965%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size:
    28% auto,
    cover,
    cover;
  background-position:
    98% center,
    center,
    center bottom;
}

body.page-consulting .subpage-hero {
  background:
    url("https://evortotec.eu/assets/images/serv3.webp") no-repeat,
    linear-gradient(129.81deg, #000 11.184%, rgba(0, 0, 0, 0.72) 61.965%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size:
    50% auto,
    cover,
    cover;
  background-position:
    98% center,
    center,
    center bottom;
}

body.page-contacts .subpage-hero {
  background:
    url("https://evortotec.eu/assets/images/contact.webp") no-repeat,
    linear-gradient(129.81deg, #000 11.184%, rgba(0, 0, 0, 0.72) 61.965%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size:
    60% auto,
    cover,
    cover;
  background-position:
    98% center,
    center,
    center bottom;
}

body.page-blog .subpage-hero {
  background:
    linear-gradient(129.81deg, #000 11.184%, rgba(0, 0, 0, 0.72) 61.965%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover;
  background-position:
    center,
    center bottom;
}

body.page-blog #blog .blog-grid-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

body.page-blog #blog .latest-card {
  width: auto;
  min-height: 0;
  flex: none;
  padding: 0;
}

body.page-blog #blog .latest-media {
  height: 290px;
}

@media (max-width: 980px) {
  body.page-blog #blog .blog-grid-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.page-blog #blog .blog-grid-track {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   BLOG ARTICLE PAGE
   =========================== */
.blog-article {
  padding: 3rem 0 0;
}

.blog-article-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.blog-article-intro-text p {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.blog-article-intro-img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  display: block;
}

.blog-article-body h3 {
  font-size: var(--heading-md);
  font-weight: 700;
  margin: 2.5rem 0 1.2rem;
  line-height: 1.15;
  color: #fff;
}

.blog-article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 0.5rem;
}

.blog-article-body ul li {
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #fff;
  font-size: 1.02rem;
}

.blog-article-body p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.5rem;
  font-size: var(--text-md);
}

.blog-article-conclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
}

.blog-article-conclusion-img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  display: block;
}

.blog-article-conclusion-text h3 {
  font-size: var(--heading-md);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
  color: #fff;
}

.blog-article-conclusion-text p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem;
  font-size: var(--text-md);
}

@media (max-width: 760px) {
  .blog-article-intro {
    grid-template-columns: 1fr;
  }
  .blog-article-intro-img {
    order: -1;
  }
  .blog-article-conclusion {
    grid-template-columns: 1fr;
  }
}

body.page-it-services .subpage-hero {
  padding: 2.9rem 0 2.2rem;
  min-height: 392px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      78% 125% at 2% 100%,
      rgba(123, 45, 95, 0.42),
      rgba(123, 45, 95, 0) 58%
    ),
    radial-gradient(
      70% 120% at 100% 8%,
      rgba(123, 45, 95, 0.38),
      rgba(123, 45, 95, 0) 58%
    ),
    linear-gradient(129.81deg, #05070d 12%, #06080e 62%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    center,
    center bottom;
}

body.page-it-services .subpage-hero::before {
  background:
    radial-gradient(
      circle at 0% 52%,
      rgba(178, 63, 127, 0.42) 0%,
      rgba(178, 63, 127, 0) 36%
    ),
    radial-gradient(
      circle at 100% 52%,
      rgba(178, 63, 127, 0.34) 0%,
      rgba(178, 63, 127, 0) 40%
    );
}

body.page-it-services .it-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 560px);
  gap: clamp(1rem, 2vw, 2.4rem);
  align-items: center;
}

body.page-it-services .it-hero-content h1 {
  color: var(--accent-2);
  font-size: var(--heading-xl);
  line-height: 1.02;
  margin-bottom: 1rem;
  max-width: 15ch;
}

body.page-it-services .it-hero-content p {
  max-width: 57ch;
  color: #f0f2f7;
  font-size: var(--text-lg);
  line-height: 1.35;
}

body.page-it-services .it-hero-content p + p {
  margin-top: 0.8rem;
}

body.page-it-services .it-hero-content .custom-btn-wrapper {
  margin-top: 1.35rem;
}

body.page-it-services .it-hero-content .custom-btn {
  width: 196px;
}

body.page-it-services .it-hero-media {
  justify-self: end;
}

body.page-it-services .it-hero-media img {
  width: min(100%, 560px);
  height: auto;
  display: block;
}

body.page-marketing-services .subpage-hero {
  padding: 2.9rem 0 2.2rem;
  min-height: 392px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      78% 125% at 2% 100%,
      rgba(123, 45, 95, 0.42),
      rgba(123, 45, 95, 0) 58%
    ),
    radial-gradient(
      70% 120% at 100% 8%,
      rgba(123, 45, 95, 0.38),
      rgba(123, 45, 95, 0) 58%
    ),
    linear-gradient(129.81deg, #05070d 12%, #06080e 62%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    center,
    center bottom;
}

body.page-marketing-services .subpage-hero::before {
  background:
    radial-gradient(
      circle at 0% 52%,
      rgba(178, 63, 127, 0.42) 0%,
      rgba(178, 63, 127, 0) 36%
    ),
    radial-gradient(
      circle at 100% 52%,
      rgba(178, 63, 127, 0.34) 0%,
      rgba(178, 63, 127, 0) 40%
    );
}

body.page-marketing-services .marketing-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 560px);
  gap: clamp(1rem, 2vw, 2.4rem);
  align-items: center;
}

body.page-marketing-services
  .marketing-hero-content
  .header-content.custom-content
  h1 {
  color: var(--accent-2);
  font-size: var(--heading-xl);
  line-height: 1.02;
  margin-bottom: 1rem;
  max-width: 15ch;
}

body.page-marketing-services
  .marketing-hero-content
  .header-content.custom-content
  p {
  max-width: 57ch;
  color: #f0f2f7;
  font-size: var(--text-lg);
  line-height: 1.35;
}

body.page-marketing-services
  .marketing-hero-content
  .header-content.custom-content
  p
  + p {
  margin-top: 0.8rem;
}

body.page-marketing-services .marketing-hero-content .custom-btn-wrapper {
  margin-top: 1.35rem;
}

body.page-marketing-services .marketing-hero-content .custom-btn {
  width: 196px;
}

body.page-marketing-services .marketing-hero-media {
  justify-self: end;
}

body.page-marketing-services .marketing-hero-media img {
  width: min(100%, 560px);
  height: auto;
  display: block;
}

body.page-reselling-wholesale .subpage-hero {
  padding: 2.9rem 0 2.2rem;
  min-height: 392px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      78% 125% at 2% 100%,
      rgba(123, 45, 95, 0.42),
      rgba(123, 45, 95, 0) 58%
    ),
    radial-gradient(
      70% 120% at 100% 8%,
      rgba(123, 45, 95, 0.38),
      rgba(123, 45, 95, 0) 58%
    ),
    linear-gradient(129.81deg, #05070d 12%, #06080e 62%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    center,
    center bottom;
}

body.page-reselling-wholesale .subpage-hero::before {
  background:
    radial-gradient(
      circle at 0% 52%,
      rgba(178, 63, 127, 0.42) 0%,
      rgba(178, 63, 127, 0) 36%
    ),
    radial-gradient(
      circle at 100% 52%,
      rgba(178, 63, 127, 0.34) 0%,
      rgba(178, 63, 127, 0) 40%
    );
}

body.page-reselling-wholesale .reselling-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 560px);
  gap: clamp(1rem, 2vw, 2.4rem);
  align-items: center;
}

body.page-reselling-wholesale
  .reselling-hero-content
  .header-content.custom-content
  h1 {
  color: var(--accent-2);
  font-size: var(--heading-xl);
  line-height: 1.02;
  margin-bottom: 1rem;
  max-width: 12ch;
}

body.page-reselling-wholesale
  .reselling-hero-content
  .header-content.custom-content
  p {
  max-width: 57ch;
  color: #f0f2f7;
  font-size: var(--text-lg);
  line-height: 1.35;
}

body.page-reselling-wholesale
  .reselling-hero-content
  .header-content.custom-content
  p
  + p {
  margin-top: 0.8rem;
}

body.page-reselling-wholesale .reselling-hero-content .custom-btn-wrapper {
  margin-top: 1.35rem;
}

body.page-reselling-wholesale .reselling-hero-content .custom-btn {
  width: 196px;
}

body.page-reselling-wholesale .reselling-hero-media {
  justify-self: end;
}

body.page-reselling-wholesale .reselling-hero-media img {
  width: min(100%, 560px);
  height: auto;
  display: block;
}

body.page-hr-services .subpage-hero {
  background:
    url("https://evortotec.eu/assets/images/serv5.webp") no-repeat,
    linear-gradient(129.81deg, #000 11.184%, rgba(0, 0, 0, 0.72) 61.965%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size:
    42% auto,
    cover,
    cover;
  background-position:
    98% center,
    center,
    center bottom;
}

body.page-hr-services .subpage-hero h1 {
  color: var(--accent-2);
  font-size: var(--heading-xxl);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

body.page-hr-services .subpage-hero p {
  max-width: 36ch;
  font-size: var(--text-lg);
  line-height: 1.15;
  margin-bottom: 1rem;
}

body.page-hr-services .subpage-hero p strong {
  color: #fff;
}

body.page-hr-services .hr-help-section {
  background:
    radial-gradient(
      75% 120% at 0% 100%,
      rgba(132, 58, 136, 0.34),
      rgba(132, 58, 136, 0) 55%
    ),
    radial-gradient(
      75% 120% at 100% 0%,
      rgba(132, 58, 136, 0.3),
      rgba(132, 58, 136, 0) 52%
    ),
    linear-gradient(180deg, #05070d 0%, #07090f 100%);
}

body.page-hr-services .hr-help-layout {
  display: grid;
  grid-template-columns: minmax(240px, 390px) 1fr;
  gap: clamp(1.2rem, 2.4vw, 2.8rem);
  align-items: center;
}

body.page-hr-services .hr-help-visual {
  display: flex;
  justify-content: center;
}

body.page-hr-services .hr-help-visual img {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

body.page-hr-services .hr-help-content h2 {
  margin-bottom: 0.6rem;
  font-size: var(--heading-lg);
  line-height: 1.06;
}

body.page-hr-services .hr-help-content h2 span {
  color: var(--accent-2);
}

body.page-hr-services .hr-help-lead {
  margin: 0 0 0.95rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: var(--text-lg);
}

body.page-hr-services .hr-help-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.95rem;
}

body.page-hr-services .hr-help-list li {
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.3;
}

body.page-hr-services .hr-help-list li strong {
  color: #fff;
}

body.page-hr-services .hr-recruitment-section {
  background:
    radial-gradient(
      80% 120% at 0% 100%,
      rgba(132, 58, 136, 0.3),
      rgba(132, 58, 136, 0) 55%
    ),
    radial-gradient(
      80% 120% at 100% 100%,
      rgba(132, 58, 136, 0.28),
      rgba(132, 58, 136, 0) 55%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

body.page-hr-services .hr-recruitment-grid {
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: clamp(1rem, 2.2vw, 2.6rem);
  align-items: center;
}

body.page-hr-services .hr-recruitment-content {
  max-width: 700px;
}

body.page-hr-services .hr-recruitment-content h2 {
  font-size: var(--heading-lg);
  line-height: 1.06;
  margin-bottom: 0.6rem;
}

body.page-hr-services .hr-recruitment-content h2 span {
  color: var(--accent-2);
}

body.page-hr-services .hr-recruitment-content > p:not(.consulting-help-lead) {
  margin: 0 0 0.95rem;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-hr-services .hr-recruitment-content .consulting-help-lead {
  margin: 0 0 0.95rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 1.25rem;
}

body.page-hr-services .hr-recruitment-content .provide-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.95rem;
  list-style: disc;
}

body.page-hr-services .hr-recruitment-content .provide-list li {
  padding-left: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.3;
}

body.page-hr-services .hr-recruitment-content .provide-list li::before {
  content: none;
}

body.page-hr-services .hr-recruitment-content .provide-list li strong {
  color: #fff;
}

body.page-hr-services .hr-employee-section {
  background:
    radial-gradient(
      70% 120% at 0% 100%,
      rgba(132, 58, 136, 0.2),
      rgba(132, 58, 136, 0) 55%
    ),
    radial-gradient(
      70% 120% at 100% 100%,
      rgba(132, 58, 136, 0.22),
      rgba(132, 58, 136, 0) 55%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

body.page-hr-services .hr-employee-grid {
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  align-items: center;
}

body.page-hr-services .hr-employee-content {
  max-width: 700px;
}

body.page-hr-services .hr-employee-content h2 {
  margin-bottom: 0.6rem;
  font-size: var(--heading-lg);
  line-height: 1.06;
}

body.page-hr-services .hr-employee-content > p:not(.consulting-help-lead) {
  margin: 0 0 0.95rem;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-hr-services .hr-employee-content .consulting-help-lead {
  margin: 0 0 0.95rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 1.25rem;
}

body.page-hr-services .hr-employee-content .provide-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.95rem;
  list-style: disc;
}

body.page-hr-services .hr-employee-content .provide-list li {
  padding-left: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.3;
}

body.page-hr-services .hr-employee-content .provide-list li::before {
  content: none;
}

body.page-hr-services .hr-employee-content .provide-list li strong {
  color: #fff;
}

body.page-hr-services .hr-employee-grid .service-detail-img img {
  width: min(100%, 360px);
}

body.page-hr-services .hr-training-section {
  background:
    radial-gradient(
      70% 120% at 0% 100%,
      rgba(132, 58, 136, 0.24),
      rgba(132, 58, 136, 0) 55%
    ),
    radial-gradient(
      70% 120% at 100% 100%,
      rgba(132, 58, 136, 0.24),
      rgba(132, 58, 136, 0) 55%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

body.page-hr-services .hr-training-grid {
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: clamp(1rem, 2.2vw, 2.4rem);
  align-items: center;
}

body.page-hr-services .hr-training-content {
  max-width: 700px;
}

body.page-hr-services .hr-training-content h2 {
  margin-bottom: 0.6rem;
  font-size: var(--heading-lg);
  line-height: 1.06;
}

body.page-hr-services .hr-training-content > p:not(.consulting-help-lead) {
  margin: 0 0 0.95rem;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-hr-services .hr-training-content .consulting-help-lead {
  margin: 0 0 0.95rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 1.25rem;
}

body.page-hr-services .hr-training-content .provide-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.95rem;
  list-style: disc;
}

body.page-hr-services .hr-training-content .provide-list li {
  padding-left: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.3;
}

body.page-hr-services .hr-training-content .provide-list li::before {
  content: none;
}

body.page-hr-services .hr-training-content .provide-list li strong {
  color: #fff;
}

body.page-hr-services .hr-training-grid .service-detail-img img {
  width: min(100%, 360px);
  margin-left: auto;
}

body.page-hr-services .hr-trust-section {
  background:
    radial-gradient(
      70% 120% at 0% 100%,
      rgba(244, 161, 0, 0.18),
      rgba(244, 161, 0, 0) 56%
    ),
    radial-gradient(
      70% 120% at 100% 100%,
      rgba(244, 161, 0, 0.18),
      rgba(244, 161, 0, 0) 56%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

body.page-hr-services .hr-trust-content h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: var(--heading-lg);
  line-height: 1.06;
}

body.page-hr-services .hr-trust-content h2 span {
  color: var(--accent-2);
}

body.page-hr-services .hr-trust-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.6rem;
}

body.page-hr-services .hr-trust-grid p {
  margin: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.35;
}

body.page-hr-services .hr-trust-grid p strong {
  color: var(--accent-2);
}

body.page-hr-services .hr-recruitment-grid .service-detail-img img {
  width: min(100%, 360px);
  margin-left: auto;
}

/* Same background stack as .main-header; about asset instead of header-img */
body.page-about .subpage-hero {
  padding: 6.25rem 0 4.5rem;
  min-height: min(736px, 92vh);
  background:
    url("https://evortotec.eu/assets/images/about-img.png.webp") no-repeat,
    linear-gradient(129.81deg, #000 11.184%, rgba(0, 0, 0, 0.72) 61.965%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size:
    30% auto,
    cover,
    cover;
  background-position:
    98% center,
    center,
    center bottom;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at -8% 45%,
      rgba(219, 106, 164, 0.44) 0%,
      rgba(219, 106, 164, 0.18) 28%,
      rgba(0, 0, 0, 0) 48%
    ),
    radial-gradient(
      circle at 108% 56%,
      rgba(219, 106, 164, 0.42) 0%,
      rgba(219, 106, 164, 0.16) 30%,
      rgba(0, 0, 0, 0) 52%
    );
}

.subpage-hero > .container {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  font-size: var(--heading-xl);
  font-weight: 700;
  max-width: 22ch;
  line-height: 1.08;
  margin-bottom: 1rem;
}

body.page-contacts .contacts-hero-company {
  font-size: var(--heading-lg);
  font-weight: 700;
  line-height: 1.12;
  margin: -0.25rem 0 0.8rem;
  color: #f2f4fa;
}

.subpage-hero p {
  color: #d6d9e5;
  max-width: 56ch;
  font-size: var(--text-lg);
  line-height: 1.45;
  margin: 0;
}

.subpage-hero p strong {
  color: #fff;
}

/* Shared hero inner layout (breadcrumb inside .subpage-hero-content, same as Reselling / Marketing / IT) */
.subpage-hero .container.subpage-hero-layout {
  display: block;
}

.subpage-hero .subpage-hero-content {
  min-width: 0;
}

/* Legal pages: compact hero band with breadcrumb only */
.subpage-hero.legal-breadcrumb-hero {
  min-height: 0;
  padding: 5rem 0 0.75rem;
  align-items: flex-start;
}

.subpage-hero.legal-breadcrumb-hero .breadcrumb {
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--accent-2);
}
.breadcrumb span {
  color: var(--muted);
}

/* ===========================
   SERVICE DETAIL SECTIONS
   =========================== */
.service-detail-section {
  position: relative;
  overflow: hidden;
}

.service-detail-section.alt {
  background:
    radial-gradient(
      65% 120% at 108% 48%,
      rgba(132, 58, 136, 0.28),
      rgba(132, 58, 136, 0) 54%
    ),
    radial-gradient(
      65% 120% at -8% 52%,
      rgba(132, 58, 136, 0.18),
      rgba(132, 58, 136, 0) 52%
    ),
    linear-gradient(180deg, #0c0e16 0%, #0d0f18 100%);
}

.service-detail-section.purple-bg {
  background:
    radial-gradient(
      70% 120% at -8% 45%,
      rgba(132, 58, 136, 0.38),
      rgba(132, 58, 136, 0) 55%
    ),
    radial-gradient(
      70% 120% at 108% 56%,
      rgba(132, 58, 136, 0.32),
      rgba(132, 58, 136, 0) 58%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}
.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: 1rem;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.service-detail-content h2 {
  font-size: var(--heading-md);
  margin-bottom: 1rem;
}

.service-detail-content h2 span {
  color: var(--accent-2);
}

.service-detail-content p {
  color: #d6d9e5;
  font-size: var(--text-md);
  line-height: 1.55;
  margin: 0 0 1.2rem;
}

.service-detail-content p strong {
  color: #fff;
}

body.page-it-services .it-custom-software-section {
  background:
    radial-gradient(
      62% 118% at 0% 54%,
      rgba(176, 66, 132, 0.33),
      rgba(176, 66, 132, 0) 56%
    ),
    radial-gradient(
      62% 118% at 100% 54%,
      rgba(176, 66, 132, 0.26),
      rgba(176, 66, 132, 0) 56%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    center,
    center bottom;
}

body.page-it-services .it-custom-software-section .service-detail-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-it-services
  .it-custom-software-section
  .service-detail-content.servsec-content.custom-content {
  max-width: 760px;
}

body.page-it-services .it-custom-software-section .service-detail-content h2 {
  margin: 0 0 0.8rem;
  font-size: var(--heading-lg);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

body.page-it-services
  .it-custom-software-section
  .service-detail-content
  p:not(.consulting-help-lead) {
  margin: 0 0 0.95rem;
  color: #f1f3fa;
  font-size: var(--text-lg);
  line-height: 1.26;
  max-width: 35ch;
}

body.page-it-services
  .it-custom-software-section
  .service-detail-content
  .consulting-help-lead {
  margin: 0 0 0.85rem;
  color: var(--accent-2);
  font-weight: 700;
  font-size: var(--heading-xs);
  line-height: 1.2;
}

body.page-it-services .it-custom-software-section .provide-list {
  margin: 0;
  padding-left: 1.3rem;
  list-style: disc;
  gap: 0.8rem;
}

body.page-it-services .it-custom-software-section .provide-list li {
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.24;
  padding-left: 0;
}

body.page-it-services .it-custom-software-section .provide-list li::before {
  content: none;
}

body.page-it-services .it-custom-software-section .provide-list li strong {
  color: #fff;
}

body.page-it-services .it-custom-software-section .service-detail-img {
  overflow: visible;
}

body.page-it-services .it-custom-software-section .service-detail-img img {
  width: min(100%, 560px);
  margin-left: auto;
}

body.page-it-services .it-consulting-section {
  background:
    radial-gradient(
      62% 118% at 0% 52%,
      rgba(176, 66, 132, 0.3),
      rgba(176, 66, 132, 0) 56%
    ),
    radial-gradient(
      62% 118% at 100% 52%,
      rgba(176, 66, 132, 0.24),
      rgba(176, 66, 132, 0) 56%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    center,
    center bottom;
}

body.page-it-services .it-consulting-section .service-detail-grid {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-it-services .it-consulting-section .service-detail-img {
  overflow: visible;
}

body.page-it-services .it-consulting-section .service-detail-img img {
  width: min(100%, 380px);
  display: block;
}

body.page-it-services
  .it-consulting-section
  .service-detail-content.servsec-content.custom-content {
  max-width: 780px;
}

body.page-it-services .it-consulting-section .service-detail-content h2 {
  margin: 0 0 0.7rem;
  font-size: var(--heading-lg);
  line-height: 1;
  letter-spacing: -0.01em;
}

body.page-it-services
  .it-consulting-section
  .service-detail-content
  p:not(.consulting-help-lead) {
  margin: 0 0 0.95rem;
  color: #f1f3fa;
  font-size: var(--text-lg);
  line-height: 1.28;
  max-width: 55ch;
}

body.page-it-services
  .it-consulting-section
  .service-detail-content
  .consulting-help-lead {
  margin: 0 0 0.85rem;
  color: var(--accent-2);
  font-weight: 700;
  font-size: var(--heading-xs);
  line-height: 1.2;
}

body.page-it-services .it-consulting-section .provide-list {
  margin: 0;
  padding-left: 1.3rem;
  list-style: disc;
  gap: 0.8rem;
}

body.page-it-services .it-consulting-section .provide-list li {
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.24;
  padding-left: 0;
}

body.page-it-services .it-consulting-section .provide-list li::before {
  content: none;
}

body.page-it-services .it-consulting-section .provide-list li strong {
  color: #fff;
}

body.page-it-services .it-support-section {
  background:
    radial-gradient(
      62% 118% at 0% 52%,
      rgba(176, 66, 132, 0.3),
      rgba(176, 66, 132, 0) 56%
    ),
    radial-gradient(
      62% 118% at 100% 52%,
      rgba(176, 66, 132, 0.24),
      rgba(176, 66, 132, 0) 56%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    center,
    center bottom;
}

body.page-it-services .it-support-section .service-detail-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-it-services
  .it-support-section
  .service-detail-content.servsec-content.custom-content {
  max-width: 780px;
}

body.page-it-services .it-support-section .service-detail-content h2 {
  margin: 0 0 0.72rem;
  font-size: var(--heading-lg);
  line-height: 1;
  letter-spacing: -0.01em;
}

body.page-it-services
  .it-support-section
  .service-detail-content
  p:not(.consulting-help-lead) {
  margin: 0 0 0.95rem;
  color: #f1f3fa;
  font-size: var(--text-lg);
  line-height: 1.28;
  max-width: 55ch;
}

body.page-it-services
  .it-support-section
  .service-detail-content
  .consulting-help-lead {
  margin: 0 0 0.85rem;
  color: var(--accent-2);
  font-weight: 700;
  font-size: var(--heading-xs);
  line-height: 1.2;
}

body.page-it-services .it-support-section .provide-list {
  margin: 0;
  padding-left: 1.3rem;
  list-style: disc;
  gap: 0.8rem;
}

body.page-it-services .it-support-section .provide-list li {
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.24;
  padding-left: 0;
}

body.page-it-services .it-support-section .provide-list li::before {
  content: none;
}

body.page-it-services .it-support-section .provide-list li strong {
  color: #fff;
}

body.page-it-services .it-support-section .service-detail-img {
  overflow: visible;
}

body.page-it-services .it-support-section .service-detail-img img {
  width: min(100%, 380px);
  margin-left: auto;
}

body.page-it-services .it-trust-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      74% 120% at 0% 100%,
      rgba(244, 161, 0, 0.18),
      rgba(244, 161, 0, 0) 56%
    ),
    radial-gradient(
      74% 120% at 100% 0%,
      rgba(244, 161, 0, 0.16),
      rgba(244, 161, 0, 0) 55%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%);
}

body.page-it-services .it-trust-section::before,
body.page-it-services .it-trust-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

body.page-it-services .it-trust-section::before {
  background:
    radial-gradient(
      circle at -12% 52%,
      rgba(244, 161, 0, 0.3) 0%,
      rgba(244, 161, 0, 0) 48%
    ),
    repeating-radial-gradient(
      circle at -10% 50%,
      rgba(244, 161, 0, 0.28) 0 2px,
      rgba(244, 161, 0, 0) 12px 24px
    );
}

body.page-it-services .it-trust-section::after {
  background:
    radial-gradient(
      circle at 112% 48%,
      rgba(244, 161, 0, 0.26) 0%,
      rgba(244, 161, 0, 0) 46%
    ),
    repeating-radial-gradient(
      circle at 110% 52%,
      rgba(244, 161, 0, 0.24) 0 2px,
      rgba(244, 161, 0, 0) 12px 24px
    );
}

body.page-it-services .it-trust-content {
  position: relative;
  z-index: 1;
}

body.page-it-services .it-trust-content h2 {
  text-align: center;
  margin-bottom: 1.15rem;
  font-size: var(--heading-lg);
  line-height: 1.04;
}

body.page-it-services .it-trust-content h2 span {
  color: var(--accent-2);
}

body.page-it-services .it-trust-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem 3rem;
}

body.page-it-services .it-trust-grid p {
  margin: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-it-services .it-trust-grid p strong {
  color: var(--accent-2);
}

/* Help list */
.help-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      140% 120% at -8% 100%,
      rgba(244, 161, 0, 0.18),
      rgba(244, 161, 0, 0) 38%
    ),
    radial-gradient(
      140% 120% at 108% 100%,
      rgba(244, 161, 0, 0.18),
      rgba(244, 161, 0, 0) 38%
    ),
    linear-gradient(180deg, #05070d 0%, #07090f 100%);
}

.help-section h2 {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: var(--heading-lg);
}

.help-section h2 span {
  color: var(--accent-2);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.help-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.4rem 1.3rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.help-card-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  display: grid;
  place-items: center;
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
}

.help-card p {
  margin: 0;
  color: #cdd1e0;
  font-size: 0.96rem;
  line-height: 1.5;
}

body.page-it-services .help-section {
  padding: 2.9rem 0 3rem;
  background:
    radial-gradient(
      65% 120% at 0% 52%,
      rgba(175, 67, 132, 0.34),
      rgba(175, 67, 132, 0) 58%
    ),
    radial-gradient(
      65% 120% at 100% 52%,
      rgba(175, 67, 132, 0.26),
      rgba(175, 67, 132, 0) 58%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
}

body.page-it-services .it-help-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.4vw, 3.2rem);
  align-items: center;
}

body.page-it-services .it-help-visual {
  display: flex;
  justify-content: center;
}

body.page-it-services .it-help-visual img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

body.page-it-services .it-help-content {
  min-width: 0;
}

body.page-it-services .it-help-content h2 {
  margin: 0 0 0.35rem;
  font-size: var(--heading-lg);
  line-height: 1.12;
  color: #fff;
}

body.page-it-services .it-help-lead {
  margin: 0 0 1rem;
  font-size: var(--heading-xs);
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent-2);
}

body.page-it-services .it-help-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1.08rem;
  list-style: disc;
}

body.page-it-services .it-help-list li {
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-it-services .it-help-list li strong {
  color: #fff;
}

body.page-marketing-services .help-section {
  padding: 2.9rem 0 3rem;
  background:
    radial-gradient(
      65% 120% at 0% 52%,
      rgba(175, 67, 132, 0.34),
      rgba(175, 67, 132, 0) 58%
    ),
    radial-gradient(
      65% 120% at 100% 52%,
      rgba(175, 67, 132, 0.26),
      rgba(175, 67, 132, 0) 58%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
}

body.page-marketing-services .marketing-help-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.4vw, 3.2rem);
  align-items: center;
}

body.page-marketing-services .marketing-help-visual {
  display: flex;
  justify-content: center;
}

body.page-marketing-services .marketing-help-visual img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

body.page-marketing-services .marketing-help-content {
  min-width: 0;
}

body.page-marketing-services .marketing-help-content h2 {
  margin: 0 0 0.35rem;
  font-size: var(--heading-lg);
  line-height: 1.12;
  color: #fff;
}

body.page-marketing-services .marketing-help-content h2 span {
  color: var(--accent-2);
}

body.page-marketing-services .marketing-help-lead {
  margin: 0 0 1rem;
  font-size: var(--heading-xs);
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent-2);
}

body.page-marketing-services .marketing-help-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1.08rem;
  list-style: disc;
}

body.page-marketing-services .marketing-help-list li {
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-marketing-services .marketing-help-list li strong {
  color: #fff;
}

body.page-reselling-wholesale .help-section {
  padding: 2.9rem 0 3rem;
  background:
    radial-gradient(
      65% 120% at 0% 52%,
      rgba(175, 67, 132, 0.34),
      rgba(175, 67, 132, 0) 58%
    ),
    radial-gradient(
      65% 120% at 100% 52%,
      rgba(175, 67, 132, 0.26),
      rgba(175, 67, 132, 0) 58%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
}

body.page-reselling-wholesale .reselling-help-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.4vw, 3.2rem);
  align-items: center;
}

body.page-reselling-wholesale .reselling-help-visual {
  display: flex;
  justify-content: center;
}

body.page-reselling-wholesale .reselling-help-visual img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

body.page-reselling-wholesale .reselling-help-content {
  min-width: 0;
}

body.page-reselling-wholesale .reselling-help-content h2 {
  margin: 0 0 0.35rem;
  font-size: var(--heading-lg);
  line-height: 1.12;
  color: #fff;
}

body.page-reselling-wholesale .reselling-help-content h2 span {
  color: var(--accent-2);
}

body.page-reselling-wholesale .reselling-help-lead {
  margin: 0 0 1rem;
  font-size: var(--heading-xs);
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent-2);
}

body.page-reselling-wholesale .reselling-help-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1.08rem;
  list-style: disc;
}

body.page-reselling-wholesale .reselling-help-list li {
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-reselling-wholesale .reselling-help-list li strong {
  color: #fff;
}

body.page-reselling-wholesale .reselling-sourcing-section .service-detail-grid {
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 420px);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-reselling-wholesale
  .reselling-sourcing-section
  .service-detail-content {
  order: 1;
}

body.page-reselling-wholesale .reselling-sourcing-section .service-detail-img {
  display: flex;
  justify-content: flex-end;
  order: 2;
}

body.page-reselling-wholesale
  .reselling-sourcing-section
  .service-detail-img
  img {
  width: min(100%, 360px);
  margin-left: 0;
}

body.page-reselling-wholesale
  .reselling-sourcing-section
  .service-detail-content
  h2 {
  font-size: var(--heading-lg);
  line-height: 1.1;
}

body.page-reselling-wholesale
  .reselling-sourcing-section
  .service-detail-content
  > p:not(.consulting-help-lead) {
  max-width: 58ch;
  color: #f0f2f7;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-reselling-wholesale
  .reselling-sourcing-section
  .service-detail-content
  .consulting-help-lead {
  margin-top: 0.8rem;
  margin-bottom: 0.7rem;
  color: var(--accent-2);
  font-size: var(--heading-xs);
  font-weight: 700;
}

body.page-reselling-wholesale .reselling-sourcing-section .provide-list {
  margin-top: 0;
  padding-left: 1.22rem;
  list-style: disc;
  gap: 0.86rem;
}

body.page-reselling-wholesale .reselling-sourcing-section .provide-list li {
  padding-left: 0;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-reselling-wholesale
  .reselling-sourcing-section
  .provide-list
  li::before {
  content: none;
}

body.page-reselling-wholesale
  .reselling-sourcing-section
  .provide-list
  li
  strong {
  color: #fff;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .service-detail-grid {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .service-detail-img {
  display: flex;
  justify-content: flex-start;
  order: 1;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .service-detail-img
  img {
  width: min(100%, 360px);
  margin-left: 0;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .service-detail-content {
  order: 2;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .service-detail-content
  h2 {
  font-size: var(--heading-lg);
  line-height: 1.1;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .service-detail-content
  > p:not(.consulting-help-lead) {
  max-width: 58ch;
  color: #f0f2f7;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .service-detail-content
  .consulting-help-lead {
  margin-top: 0.8rem;
  margin-bottom: 0.7rem;
  color: var(--accent-2);
  font-size: var(--heading-xs);
  font-weight: 700;
}

body.page-reselling-wholesale .reselling-distribution-section .provide-list {
  margin-top: 0;
  padding-left: 1.22rem;
  list-style: disc;
  gap: 0.86rem;
}

body.page-reselling-wholesale .reselling-distribution-section .provide-list li {
  padding-left: 0;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .provide-list
  li::before {
  content: none;
}

body.page-reselling-wholesale
  .reselling-distribution-section
  .provide-list
  li
  strong {
  color: #fff;
}

body.page-reselling-wholesale .reselling-resale-section .service-detail-grid {
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 420px);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-reselling-wholesale
  .reselling-resale-section
  .service-detail-content {
  order: 1;
}

body.page-reselling-wholesale .reselling-resale-section .service-detail-img {
  display: flex;
  justify-content: flex-end;
  order: 2;
}

body.page-reselling-wholesale
  .reselling-resale-section
  .service-detail-img
  img {
  width: min(100%, 360px);
  margin-left: 0;
}

body.page-reselling-wholesale
  .reselling-resale-section
  .service-detail-content
  h2 {
  font-size: var(--heading-lg);
  line-height: 1.1;
}

body.page-reselling-wholesale
  .reselling-resale-section
  .service-detail-content
  > p:not(.consulting-help-lead) {
  max-width: 58ch;
  color: #f0f2f7;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-reselling-wholesale
  .reselling-resale-section
  .service-detail-content
  .consulting-help-lead {
  margin-top: 0.8rem;
  margin-bottom: 0.7rem;
  color: var(--accent-2);
  font-size: var(--heading-xs);
  font-weight: 700;
}

body.page-reselling-wholesale .reselling-resale-section .provide-list {
  margin-top: 0;
  padding-left: 1.22rem;
  list-style: disc;
  gap: 0.86rem;
}

body.page-reselling-wholesale .reselling-resale-section .provide-list li {
  padding-left: 0;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-reselling-wholesale
  .reselling-resale-section
  .provide-list
  li::before {
  content: none;
}

body.page-reselling-wholesale
  .reselling-resale-section
  .provide-list
  li
  strong {
  color: #fff;
}

body.page-reselling-wholesale .reselling-trust-section {
  position: relative;
  overflow: hidden;
  padding: 2.9rem 0 3rem;
  background:
    radial-gradient(
      65% 120% at 0% 52%,
      rgba(175, 67, 132, 0.34),
      rgba(175, 67, 132, 0) 58%
    ),
    radial-gradient(
      65% 120% at 100% 52%,
      rgba(175, 67, 132, 0.26),
      rgba(175, 67, 132, 0) 58%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
}

body.page-reselling-wholesale .reselling-trust-content h2 {
  margin: 0 0 1.2rem;
  font-size: var(--heading-lg);
  line-height: 1.08;
  text-align: center;
}

body.page-reselling-wholesale .reselling-trust-content h2 span {
  color: var(--accent-2);
}

body.page-reselling-wholesale .reselling-trust-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.6rem;
}

body.page-reselling-wholesale .reselling-trust-grid p {
  margin: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.24;
}

body.page-reselling-wholesale .reselling-trust-grid p strong {
  color: var(--accent-2);
}

body.page-marketing-services .marketing-smm-section .service-detail-grid {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-marketing-services .marketing-smm-section .service-detail-img {
  display: flex;
  justify-content: flex-end;
  order: 2;
}

body.page-marketing-services .marketing-smm-section .service-detail-img img {
  width: min(100%, 360px);
  margin-left: 0;
}

body.page-marketing-services .marketing-smm-section .service-detail-content {
  order: 1;
}

body.page-marketing-services .marketing-smm-section .service-detail-content h2 {
  font-size: var(--heading-lg);
  line-height: 1.1;
}

body.page-marketing-services
  .marketing-smm-section
  .service-detail-content
  > p:not(.consulting-help-lead) {
  max-width: 58ch;
  color: #f0f2f7;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-marketing-services
  .marketing-smm-section
  .service-detail-content
  .consulting-help-lead {
  margin-top: 0.8rem;
  margin-bottom: 0.7rem;
  color: var(--accent-2);
  font-size: var(--heading-xs);
  font-weight: 700;
}

body.page-marketing-services .marketing-smm-section .provide-list {
  margin-top: 0;
  padding-left: 1.22rem;
  list-style: disc;
  gap: 0.86rem;
}

body.page-marketing-services .marketing-smm-section .provide-list li {
  padding-left: 0;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-marketing-services .marketing-smm-section .provide-list li::before {
  content: none;
}

body.page-marketing-services .marketing-smm-section .provide-list li strong {
  color: #fff;
}

body.page-marketing-services .marketing-seo-section .service-detail-grid {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-marketing-services .marketing-seo-section .service-detail-img {
  display: flex;
  justify-content: flex-start;
  order: 1;
}

body.page-marketing-services .marketing-seo-section .service-detail-img img {
  width: min(100%, 360px);
  margin-left: 0;
}

body.page-marketing-services .marketing-seo-section .service-detail-content {
  order: 2;
}

body.page-marketing-services .marketing-seo-section .service-detail-content h2 {
  font-size: var(--heading-lg);
  line-height: 1.1;
}

body.page-marketing-services
  .marketing-seo-section
  .service-detail-content
  > p:not(.consulting-help-lead) {
  max-width: 58ch;
  color: #f0f2f7;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-marketing-services
  .marketing-seo-section
  .service-detail-content
  .consulting-help-lead {
  margin-top: 0.8rem;
  margin-bottom: 0.7rem;
  color: var(--accent-2);
  font-size: var(--heading-xs);
  font-weight: 700;
}

body.page-marketing-services .marketing-seo-section .provide-list {
  margin-top: 0;
  padding-left: 1.22rem;
  list-style: disc;
  gap: 0.86rem;
}

body.page-marketing-services .marketing-seo-section .provide-list li {
  padding-left: 0;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-marketing-services .marketing-seo-section .provide-list li::before {
  content: none;
}

body.page-marketing-services .marketing-seo-section .provide-list li strong {
  color: #fff;
}

body.page-marketing-services .marketing-content-section .service-detail-grid {
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 420px);
  gap: clamp(1.1rem, 2.2vw, 2.8rem);
  align-items: center;
}

body.page-marketing-services
  .marketing-content-section
  .service-detail-content {
  order: 1;
}

body.page-marketing-services .marketing-content-section .service-detail-img {
  display: flex;
  justify-content: flex-end;
  order: 2;
}

body.page-marketing-services
  .marketing-content-section
  .service-detail-img
  img {
  width: min(100%, 360px);
  margin-left: 0;
}

body.page-marketing-services
  .marketing-content-section
  .service-detail-content
  h2 {
  font-size: var(--heading-lg);
  line-height: 1.1;
}

body.page-marketing-services
  .marketing-content-section
  .service-detail-content
  > p:not(.consulting-help-lead) {
  max-width: 58ch;
  color: #f0f2f7;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-marketing-services
  .marketing-content-section
  .service-detail-content
  .consulting-help-lead {
  margin-top: 0.8rem;
  margin-bottom: 0.7rem;
  color: var(--accent-2);
  font-size: var(--heading-xs);
  font-weight: 700;
}

body.page-marketing-services .marketing-content-section .provide-list {
  margin-top: 0;
  padding-left: 1.22rem;
  list-style: disc;
  gap: 0.86rem;
}

body.page-marketing-services .marketing-content-section .provide-list li {
  padding-left: 0;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.28;
}

body.page-marketing-services
  .marketing-content-section
  .provide-list
  li::before {
  content: none;
}

body.page-marketing-services
  .marketing-content-section
  .provide-list
  li
  strong {
  color: #fff;
}

body.page-marketing-services .marketing-trust-section {
  position: relative;
  overflow: hidden;
  padding: 2.9rem 0 3rem;
  background:
    radial-gradient(
      65% 120% at 0% 52%,
      rgba(175, 67, 132, 0.34),
      rgba(175, 67, 132, 0) 58%
    ),
    radial-gradient(
      65% 120% at 100% 52%,
      rgba(175, 67, 132, 0.26),
      rgba(175, 67, 132, 0) 58%
    ),
    linear-gradient(180deg, #05070d 0%, #06080f 100%),
    url("https://evortotec.eu/assets/images/pattern.webp") no-repeat;
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
}

body.page-marketing-services .marketing-trust-content h2 {
  margin: 0 0 1.2rem;
  font-size: var(--heading-lg);
  line-height: 1.08;
  text-align: center;
}

body.page-marketing-services .marketing-trust-content h2 span {
  color: var(--accent-2);
}

body.page-marketing-services .marketing-trust-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.6rem;
}

body.page-marketing-services .marketing-trust-grid p {
  margin: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.24;
}

body.page-marketing-services .marketing-trust-grid p strong {
  color: var(--accent-2);
}

body.page-consulting .consulting-help {
  background:
    radial-gradient(
      90% 100% at 0% 50%,
      rgba(132, 58, 136, 0.28),
      rgba(132, 58, 136, 0) 55%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

body.page-consulting .consulting-help-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  align-items: center;
}

body.page-consulting .consulting-help-visual {
  display: flex;
  justify-content: center;
}

body.page-consulting .consulting-help-visual img {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

body.page-consulting .consulting-help-content {
  min-width: 0;
}

body.page-consulting .consulting-help-content h2 {
  margin-bottom: 0.45rem;
  font-size: var(--heading-lg);
  line-height: 1.06;
}

body.page-consulting .consulting-help-content h2 span {
  color: var(--accent-2);
}

body.page-consulting .consulting-help-lead {
  margin: 0 0 0.95rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 1.25rem;
}

body.page-consulting .consulting-help-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.95rem;
}

body.page-consulting .consulting-help-list li {
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.3;
}

body.page-consulting .consulting-help-list li strong {
  color: #fff;
}

body.page-consulting .consulting-strategy-content {
  max-width: 560px;
}

body.page-consulting .consulting-strategy-content h2 {
  margin-bottom: 0.7rem;
  font-size: var(--heading-lg);
  line-height: 1.06;
}

body.page-consulting
  .consulting-strategy-content
  > p:not(.consulting-help-lead) {
  margin: 0 0 0.95rem;
  color: #f1f3f9;
  font-size: var(--text-md);
  line-height: 1.32;
}

body.page-consulting .consulting-operations-grid {
  grid-template-columns: minmax(320px, 1fr) 1fr;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  align-items: center;
}

body.page-consulting .consulting-operations-visual {
  display: flex;
  justify-content: center;
}

body.page-consulting .consulting-operations-visual img {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

body.page-consulting .consulting-operations-content {
  max-width: none;
  min-width: 0;
}

body.page-consulting .consulting-market-grid {
  grid-template-columns: 1fr minmax(320px, 460px);
  align-items: center;
}

body.page-consulting .consulting-market-content {
  max-width: 680px;
}

body.page-consulting .consulting-market-visual {
  overflow: visible;
}

body.page-consulting .consulting-market-visual img {
  width: min(100%, 360px);
  max-width: none;
  margin-left: auto;
}

/* Unified visual/list style for similar service sections */
body.page-consulting .consulting-help-visual img,
body.page-consulting .consulting-operations-visual img,
body.page-consulting .consulting-market-visual img,
body.page-hr-services .hr-help-visual img {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

body.page-consulting .consulting-help-list li,
body.page-consulting .provide-list li,
body.page-hr-services .hr-help-list li {
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.3;
}

body.page-consulting .consulting-help-list li strong,
body.page-consulting .provide-list li strong,
body.page-hr-services .hr-help-list li strong {
  color: #fff;
}

body.page-consulting .consulting-trust {
  background:
    radial-gradient(
      65% 120% at 2% 100%,
      rgba(244, 161, 0, 0.2),
      rgba(244, 161, 0, 0) 55%
    ),
    radial-gradient(
      65% 120% at 98% 100%,
      rgba(244, 161, 0, 0.18),
      rgba(244, 161, 0, 0) 55%
    ),
    linear-gradient(180deg, #06080e 0%, #07090f 100%);
}

body.page-consulting .consulting-trust .row,
body.page-consulting .consulting-trust .col {
  width: 100%;
}

body.page-consulting .consulting-trust .about-content.custom-content {
  max-width: 1100px;
  margin: 0 auto;
}

body.page-consulting .consulting-trust .about-content.custom-content h2 {
  text-align: center;
  margin-bottom: 0.9rem;
  font-size: var(--heading-lg);
  line-height: 1.06;
}

body.page-consulting .consulting-trust .about-content.custom-content h2 span {
  color: var(--accent-2);
}

body.page-consulting .consulting-trust-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2.4rem;
}

body.page-consulting .consulting-trust-grid p {
  margin: 0;
  color: #f2f4fa;
  font-size: var(--text-md);
  line-height: 1.35;
}

body.page-consulting .consulting-trust-grid p strong {
  color: var(--accent-2);
}

/* Provide list */
.provide-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.provide-list li {
  color: #cdd1e0;
  font-size: var(--text-sm);
  line-height: 1.45;
  padding-left: 1.5rem;
  position: relative;
}

.provide-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

/* Service FAQ */
.service-faq details {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  background: #11131c;
}

.service-faq details + details {
  margin-top: 0.65rem;
}

body.page-consulting .service-faq {
  max-width: 1120px;
}

body.page-consulting .service-faq h2 {
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: var(--heading-lg);
  font-weight: 700;
}

body.page-consulting .service-faq details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 18, 0.98) 0%,
    rgba(5, 8, 16, 0.98) 100%
  );
}

body.page-consulting .service-faq details + details {
  margin-top: -1px;
}

body.page-consulting .service-faq summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  min-height: 76px;
  padding: 1.25rem 4.1rem 1.25rem 2rem;
  color: #f2f4fa;
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.3;
}

body.page-consulting .service-faq summary::-webkit-details-marker {
  display: none;
}

body.page-consulting .service-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.45rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-2);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

body.page-consulting .service-faq details[open] summary::after {
  content: "−";
}

body.page-consulting .service-faq details p {
  margin: 0;
  padding: 0 2rem 1.35rem;
  color: #cfd5e6;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 90ch;
}

body.page-hr-services .service-faq h2 {
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: var(--heading-lg);
  font-weight: 700;
}

body.page-hr-services .service-faq details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 18, 0.98) 0%,
    rgba(5, 8, 16, 0.98) 100%
  );
}

body.page-hr-services .service-faq details + details {
  margin-top: -1px;
}

body.page-hr-services .service-faq summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  min-height: 76px;
  padding: 1.25rem 4.1rem 1.25rem 2rem;
  color: #f2f4fa;
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.3;
}

body.page-hr-services .service-faq summary::-webkit-details-marker {
  display: none;
}

body.page-hr-services .service-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.45rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-2);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

body.page-hr-services .service-faq details[open] summary::after {
  content: "−";
}

body.page-hr-services .service-faq details p {
  margin: 0;
  padding: 0 2rem 1.35rem;
  color: #cfd5e6;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 90ch;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1.6rem 1.4rem;
  text-align: center;
}

.value-card h3 {
  color: var(--accent-2);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.55;
}

/* ===========================
   CONTACTS PAGE
   =========================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: var(--heading-md);
  margin-bottom: 1.2rem;
}

.contact-info h2 span {
  color: var(--accent-2);
}

.contact-detail {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.contact-detail-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.contact-detail-text h4 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 1rem;
}

.contact-detail-text p,
.contact-detail-text a {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-detail-text a {
  color: var(--accent-2);
}

.contact-form-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form-box h3 {
  margin: 0 0 1.4rem;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #11131c;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  color: #111;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.form-submit:hover {
  filter: brightness(1.07);
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  padding: 2rem 0 6rem;
}

.legal-page h1 {
  font-size: var(--heading-lg);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: var(--heading-xs);
  margin: 2rem 0 0.75rem;
  color: var(--accent-2);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.legal-page ul {
  color: var(--muted);
  line-height: 1.75;
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.legal-page a {
  color: var(--accent-2);
}

/* ===========================
   404 PAGE
   =========================== */
.page-404 {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(244, 161, 0, 0.15),
      transparent 55%
    ),
    radial-gradient(circle at 20% 80%, rgba(138, 59, 128, 0.2), transparent 45%);
}

.page-404-inner {
  max-width: 520px;
}

.page-404-code {
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(135deg, #ffcd39, #f4a100);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  margin-bottom: 0.5rem;
}

.page-404 h1 {
  font-size: var(--heading-sm);
  margin: 0.5rem 0 1rem;
  max-width: 100%;
}

.page-404 p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.page-404 .back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  color: #111;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: filter 0.2s;
}

.page-404 .back-home:hover {
  filter: brightness(1.07);
}

/* ===========================
   COOKIE POPUP
   =========================== */
#cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(680px, calc(100% - 2rem));
  z-index: 9999;
  background: rgba(17, 19, 30, 0.97);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s;
}

#cookie-popup.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-text {
  flex: 1 1 260px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--accent-2);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-accept {
  height: 40px;
  padding: 0 1.3rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcd39 0%, #f4a100 100%);
  color: #111;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.cookie-accept:hover {
  filter: brightness(1.07);
}

.cookie-decline {
  height: 40px;
  padding: 0 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

/* ===========================
   RESPONSIVE SUBPAGES
   =========================== */
@media (max-width: 900px) {
  :root {
    --heading-xl: clamp(2rem, 5.5vw, 3.2rem);
    --heading-lg: clamp(1.8rem, 4.5vw, 2.8rem);
    --heading-md: clamp(1.4rem, 3vw, 2rem);
  }

  .service-detail-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .service-detail-grid.reverse {
    direction: ltr;
  }

  .service-detail-img,
  body.page-reselling-wholesale .reselling-sourcing-section .service-detail-img,
  body.page-reselling-wholesale
    .reselling-distribution-section
    .service-detail-img,
  body.page-reselling-wholesale .reselling-resale-section .service-detail-img,
  body.page-marketing-services .marketing-smm-section .service-detail-img,
  body.page-marketing-services .marketing-seo-section .service-detail-img,
  body.page-marketing-services .marketing-content-section .service-detail-img {
    display: flex;
    justify-content: center;
  }

  .service-detail-img img {
    width: min(72vw, 330px);
    margin-left: 0;
  }

  .subpage-hero {
    background-size: 0, cover, cover;
  }

  body.page-about .subpage-hero {
    background-size:
      30% auto,
      cover,
      cover;
  }

  body.page-it-services .subpage-hero {
    min-height: auto;
    padding: 3.1rem 0 2.7rem;
  }

  body.page-it-services .it-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-marketing-services .subpage-hero {
    min-height: auto;
    padding: 3.1rem 0 2.7rem;
  }

  body.page-marketing-services .marketing-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-marketing-services
    .marketing-hero-content
    .header-content.custom-content
    h1 {
    max-width: 100%;
  }

  body.page-marketing-services .marketing-hero-media {
    justify-self: center;
  }

  body.page-marketing-services .marketing-hero-media img {
    width: min(86vw, 520px);
  }

  body.page-reselling-wholesale .subpage-hero {
    min-height: auto;
    padding: 3.1rem 0 2.7rem;
  }

  body.page-reselling-wholesale .reselling-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-reselling-wholesale
    .reselling-hero-content
    .header-content.custom-content
    h1 {
    max-width: 100%;
  }

  body.page-reselling-wholesale .reselling-hero-media {
    justify-self: center;
  }

  body.page-reselling-wholesale .reselling-hero-media img {
    width: min(86vw, 520px);
  }

  body.page-it-services .it-hero-content h1 {
    max-width: 100%;
  }

  body.page-it-services .it-hero-media {
    justify-self: center;
  }

  body.page-it-services .it-hero-media img {
    width: min(86vw, 520px);
  }

  body.page-it-services .it-custom-software-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-it-services
    .it-custom-software-section
    .service-detail-content
    p:not(.consulting-help-lead) {
    max-width: 100%;
  }

  body.page-it-services .it-custom-software-section .service-detail-img {
    order: -1;
  }

  body.page-it-services .it-custom-software-section .service-detail-img img {
    width: min(72vw, 330px);
    margin-left: 0;
  }

  body.page-it-services .it-consulting-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-it-services .it-consulting-section .service-detail-img img {
    width: min(72vw, 330px);
  }

  body.page-it-services
    .it-consulting-section
    .service-detail-content
    p:not(.consulting-help-lead) {
    max-width: 100%;
  }

  body.page-it-services .it-support-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-it-services
    .it-support-section
    .service-detail-content
    p:not(.consulting-help-lead) {
    max-width: 100%;
  }

  body.page-it-services .it-support-section .service-detail-img img {
    width: min(72vw, 330px);
    margin-left: 0;
  }

  body.page-it-services .it-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-it-services .help-section {
    padding: 2.4rem 0 2.6rem;
  }

  body.page-marketing-services .help-section {
    padding: 2.4rem 0 2.6rem;
  }

  body.page-it-services .it-help-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-marketing-services .marketing-help-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-reselling-wholesale .help-section {
    padding: 2.4rem 0 2.6rem;
  }

  body.page-reselling-wholesale .reselling-help-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-it-services .it-help-visual img {
    width: min(72vw, 330px);
  }

  body.page-marketing-services .marketing-help-visual img {
    width: min(72vw, 330px);
  }

  body.page-reselling-wholesale .reselling-help-visual img {
    width: min(72vw, 330px);
  }

  body.page-reselling-wholesale
    .reselling-sourcing-section
    .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-reselling-wholesale
    .reselling-sourcing-section
    .service-detail-img
    img {
    width: min(72vw, 330px);
  }

  body.page-reselling-wholesale
    .reselling-distribution-section
    .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-reselling-wholesale
    .reselling-distribution-section
    .service-detail-img
    img {
    width: min(72vw, 330px);
  }

  body.page-reselling-wholesale .reselling-resale-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-reselling-wholesale
    .reselling-resale-section
    .service-detail-img
    img {
    width: min(72vw, 330px);
  }

  body.page-reselling-wholesale .reselling-trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.page-marketing-services .marketing-smm-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-marketing-services .marketing-smm-section .service-detail-img img {
    width: min(72vw, 330px);
  }

  body.page-marketing-services .marketing-seo-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-marketing-services .marketing-seo-section .service-detail-img img {
    width: min(72vw, 330px);
  }

  body.page-marketing-services .marketing-content-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-marketing-services
    .marketing-content-section
    .service-detail-img
    img {
    width: min(72vw, 330px);
  }

  body.page-marketing-services .marketing-trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.page-consulting .consulting-help-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body.page-consulting .consulting-help-visual {
    display: flex;
    justify-content: center;
  }

  body.page-consulting .consulting-help-visual img {
    width: min(72vw, 330px);
  }

  body.page-consulting .consulting-help-list {
    text-align: left;
  }

  body.page-hr-services .hr-help-layout {
    grid-template-columns: 1fr;
  }

  body.page-hr-services .hr-help-visual img {
    width: min(72vw, 330px);
  }

  body.page-consulting .consulting-operations-grid {
    grid-template-columns: 1fr;
  }

  body.page-consulting .consulting-operations-visual img {
    width: min(72vw, 330px);
  }

  body.page-consulting .consulting-market-grid {
    grid-template-columns: 1fr;
  }

  body.page-consulting .consulting-market-content {
    order: 1;
  }

  body.page-consulting .consulting-market-visual {
    order: 2;
    display: flex;
    justify-content: center;
  }

  body.page-consulting .consulting-market-visual img {
    width: min(72vw, 330px);
    margin-left: 0;
  }

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

  body.page-hr-services .hr-recruitment-grid .service-detail-img img {
    width: min(72vw, 330px);
    margin-left: 0;
  }

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

  body.page-hr-services .hr-employee-grid .service-detail-img img {
    width: min(72vw, 330px);
  }

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

  body.page-hr-services .hr-training-grid .service-detail-img img {
    width: min(72vw, 330px);
    margin-left: 0;
  }

  body.page-hr-services .hr-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.page-consulting .consulting-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  :root {
    --heading-xxl: clamp(2.2rem, 9vw, 3.5rem);
    --heading-xl: clamp(1.85rem, 8vw, 2.8rem);
    --heading-lg: clamp(1.75rem, 7vw, 2.4rem);
    --heading-md: clamp(1.3rem, 5vw, 1.8rem);
    --section-pad: 3rem;
    --hero-pad-top: 4rem;
    --hero-pad-bottom: 3rem;
  }

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

  .legal-page {
    padding: 3rem 0 4rem;
  }

  .subpage-hero {
    min-height: 280px;
  }

  body.page-about .subpage-hero {
    min-height: min(736px, 92vh);
    padding: 6.25rem 0 4.5rem;
  }

  body.page-it-services .subpage-hero {
    padding: 2.4rem 0 2rem;
  }

  body.page-marketing-services .subpage-hero {
    padding: 2.4rem 0 2rem;
  }

  body.page-marketing-services
    .marketing-hero-content
    .header-content.custom-content
    h1 {
    margin-bottom: 0.7rem;
  }

  body.page-marketing-services
    .marketing-hero-content
    .header-content.custom-content
    p {
    font-size: 1rem;
    line-height: 1.32;
  }

  body.page-marketing-services .marketing-hero-content .custom-btn {
    width: 184px;
    height: 48px;
    font-size: 1rem;
  }

  body.page-reselling-wholesale .subpage-hero {
    padding: 2.4rem 0 2rem;
  }

  body.page-reselling-wholesale
    .reselling-hero-content
    .header-content.custom-content
    h1 {
    margin-bottom: 0.7rem;
  }

  body.page-reselling-wholesale
    .reselling-hero-content
    .header-content.custom-content
    p {
    font-size: 1rem;
    line-height: 1.32;
  }

  body.page-reselling-wholesale .reselling-hero-content .custom-btn {
    width: 184px;
    height: 48px;
    font-size: 1rem;
  }

  body.page-it-services .it-hero-content h1 {
    margin-bottom: 0.7rem;
  }

  body.page-it-services .it-hero-content p {
    font-size: 1rem;
    line-height: 1.32;
  }

  body.page-it-services .it-hero-content .custom-btn {
    width: 184px;
    height: 48px;
    font-size: 1rem;
  }

  body.page-it-services .it-custom-software-section .service-detail-content h2 {
    margin-bottom: 0.65rem;
    line-height: 1.02;
  }

  body.page-it-services
    .it-custom-software-section
    .service-detail-content
    p:not(.consulting-help-lead) {
    line-height: 1.3;
  }

  body.page-it-services .it-custom-software-section .provide-list {
    gap: 0.72rem;
  }

  body.page-it-services .it-custom-software-section .provide-list li {
    line-height: 1.3;
  }

  body.page-it-services .it-consulting-section .service-detail-content h2 {
    margin-bottom: 0.6rem;
  }

  body.page-it-services
    .it-consulting-section
    .service-detail-content
    p:not(.consulting-help-lead) {
    line-height: 1.3;
  }

  body.page-it-services .it-consulting-section .provide-list {
    gap: 0.72rem;
  }

  body.page-it-services .it-consulting-section .provide-list li {
    line-height: 1.3;
  }

  body.page-it-services .it-support-section .service-detail-content h2 {
    margin-bottom: 0.6rem;
  }

  body.page-it-services
    .it-support-section
    .service-detail-content
    p:not(.consulting-help-lead) {
    line-height: 1.3;
  }

  body.page-it-services .it-support-section .provide-list {
    gap: 0.72rem;
  }

  body.page-it-services .it-support-section .provide-list li {
    line-height: 1.3;
  }

  body.page-it-services .it-trust-content h2 {
    margin-bottom: 0.75rem;
  }

  body.page-it-services .it-trust-grid {
    margin-top: 0.8rem;
    gap: 0.95rem;
  }

  body.page-it-services .it-trust-grid p {
    line-height: 1.32;
  }

  body.page-it-services .it-help-list {
    gap: 0.85rem;
  }

  body.page-it-services .it-help-list li {
    line-height: 1.33;
  }

  body.page-marketing-services .marketing-help-list {
    gap: 0.85rem;
  }

  body.page-reselling-wholesale .reselling-help-list {
    gap: 0.85rem;
  }

  body.page-marketing-services .marketing-help-list li {
    line-height: 1.33;
  }

  body.page-reselling-wholesale .reselling-help-list li {
    line-height: 1.33;
  }

  body.page-reselling-wholesale .reselling-sourcing-section .provide-list {
    gap: 0.85rem;
  }

  body.page-reselling-wholesale .reselling-sourcing-section .provide-list li {
    line-height: 1.33;
  }

  body.page-reselling-wholesale .reselling-distribution-section .provide-list {
    gap: 0.85rem;
  }

  body.page-reselling-wholesale
    .reselling-distribution-section
    .provide-list
    li {
    line-height: 1.33;
  }

  body.page-reselling-wholesale .reselling-resale-section .provide-list {
    gap: 0.85rem;
  }

  body.page-reselling-wholesale .reselling-resale-section .provide-list li {
    line-height: 1.33;
  }

  body.page-reselling-wholesale .reselling-trust-content h2 {
    margin-bottom: 0.75rem;
  }

  body.page-reselling-wholesale .reselling-trust-grid {
    margin-top: 0.8rem;
    gap: 0.95rem;
  }

  body.page-reselling-wholesale .reselling-trust-grid p {
    line-height: 1.32;
  }

  body.page-marketing-services .marketing-smm-section .provide-list {
    gap: 0.85rem;
  }

  body.page-marketing-services .marketing-smm-section .provide-list li {
    line-height: 1.33;
  }

  body.page-marketing-services .marketing-seo-section .provide-list {
    gap: 0.85rem;
  }

  body.page-marketing-services .marketing-seo-section .provide-list li {
    line-height: 1.33;
  }

  body.page-marketing-services .marketing-content-section .provide-list {
    gap: 0.85rem;
  }

  body.page-marketing-services .marketing-content-section .provide-list li {
    line-height: 1.33;
  }

  body.page-marketing-services .marketing-trust-content h2 {
    margin-bottom: 0.75rem;
  }

  body.page-marketing-services .marketing-trust-grid {
    margin-top: 0.8rem;
    gap: 0.95rem;
  }

  body.page-marketing-services .marketing-trust-grid p {
    line-height: 1.32;
  }
}

/* Home contact CTA uses contacts form styles */
.contact-cta .contact-form-box {
  width: min(464px, 100%);
}

.contact-cta .contact-form-box h3 {
  margin-top: 0;
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(5, 8, 14, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-dialog {
  position: relative;
  width: min(520px, 100%);
}

.contact-modal-form {
  background: rgba(17, 19, 30, 0.96);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5);
}

.contact-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease;
}

.contact-modal-close:hover {
  border-color: rgba(255, 205, 57, 0.8);
}

body.modal-open {
  overflow: hidden;
}

.form-sent-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10000;
  max-width: min(420px, calc(100% - 2rem));
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background: rgba(17, 19, 30, 0.96);
  border: 1px solid rgba(255, 205, 57, 0.45);
  color: #f4f4f5;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  pointer-events: none;
}

.form-sent-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
