:root {
  --bg: #f5f6ef;
  --surface: #ffffff;
  --text: #0f1723;
  --muted: #516173;
  --line: #dbe1dd;
  --primary: #0f766e;
  --primary-dark: #0a4f4a;
  --accent: #f2b705;
  --radius: 10px;
  --shadow: 0 18px 35px rgba(9, 23, 39, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  user-select: none;
  -webkit-user-select: none;
  background:
    radial-gradient(circle at 10% 0%, #e6f2ee, transparent 40%),
    radial-gradient(circle at 80% 10%, #f9f3dc, transparent 35%),
    var(--bg);
  line-height: 1.55;
}

.page-home {
  background:
    radial-gradient(circle at 8% -8%, rgba(14, 165, 233, 0.16), transparent 40%),
    radial-gradient(circle at 94% 10%, rgba(15, 118, 110, 0.15), transparent 36%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6f9 46%, #edf2f7 100%);
}

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.page-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 90;
  background: rgba(15, 23, 35, 0.08);
}

.page-scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0f766e, #0ea5e9);
  transition: width 0.08s linear;
}

.topbar {
  background: #072a35;
  color: #dff6ff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 700;
}

.topbar-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px 0 8px;
  border-radius: 6px;
  color: #dff6ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(223, 246, 255, 0.25);
}

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

.icon-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(245, 246, 239, 0.88);
  border-bottom: 1px solid rgba(15, 23, 35, 0.08);
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  justify-self: start;
}

.nav {
  justify-self: center;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #1da89e);
  color: #fff;
  font-size: 14px;
}

.logo-mark svg {
  width: 25px;
  height: 25px;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav-list {
  display: flex;
}

.mobile-nav-list {
  display: none !important;
}

.nav a,
.mega-trigger {
  font-weight: 600;
  color: #1d2938;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mega-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
}

.mobile-dropdown,
.nav-cta,
.nav-overlay,
.canvas-logo {
  display: none;
}

.nav-contact {
  display: none;
}

@media (min-width: 1025px) {
  .nav-contact {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 14px;
  font-size: 14px;
}

.btn-light {
  background: #fff;
  color: #082237;
}

.has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(6px);
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.24s ease;
}

.has-mega.has-simple-dropdown {
  position: relative;
}

.simple-dropdown {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 6px);
  transform: translateY(6px);
  width: 280px;
  max-width: 92vw;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.24s ease;
}

.simple-dropdown-list {
  display: grid;
  gap: 2px;
}

.simple-dropdown-list a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: #445a70;
  font-size: 14px;
  line-height: 1.35;
}

.simple-dropdown-list a:hover {
  background: #f3f8fb;
  color: #0f172a;
}

.services-mega-menu {
  border: 1px solid var(--line);
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.mega-grid-solutions {
  grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
  align-items: stretch;
}

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

.mega-grid article {
  padding: 12px;
  border-radius: 12px;
}

.mega-grid h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.mega-grid a {
  display: block;
  color: var(--muted);
  padding: 6px 0;
}

.mega-cta {
  background: linear-gradient(145deg, #ffffff, #f4f8fc);
  color: #1d2938;
  border: 1px solid #dde5ec;
  height: 100%;
}

.mega-cta p {
  color: #4b5d6f;
}

.mega-cta-btn {
  background: var(--primary) !important;
  color: #fff !important;
  justify-content: center;
  text-align: center;
}

.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 8px 6px;
  width: min(1140px, 99%);
  margin: 0 auto;
  min-height: 390px;
  align-items: stretch;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  min-width: 0;
}

.services-column.col-1 {
  grid-column: 1;
}

.services-column.col-2 {
  grid-column: 2;
}

.services-column.col-3 {
  grid-column: 3;
}

.services-column.col-4 {
  grid-column: 4;
}

.service-visual-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 98px;
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0f766e;
  color: #edf6ff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.service-visual-card::before {
  content: none;
}

.service-visual-card.has-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.16) 15%, rgba(15, 23, 42, 0.72) 100%);
  transition: background 0.24s ease;
}

.service-visual-card.bg-1 { background-color: #0f766e; }
.service-visual-card.bg-2 { background-color: #2563eb; }
.service-visual-card.bg-3 { background-color: #d97706; }
.service-visual-card.bg-4 { background-color: #0891b2; }
.service-visual-card.bg-5 { background-color: #7c3aed; }
.service-visual-card.bg-6 { background-color: #e11d48; }
.service-visual-card.bg-7 { background-color: #334155; }

.service-visual-card.has-bg-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.service-visual-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
}

.service-visual-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2);
}

.service-visual-card.has-bg-image:hover {
  background-size: 106% !important;
}

.service-visual-card.has-bg-image:hover::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 12%, rgba(15, 23, 42, 0.78) 100%);
}


.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 600;
  background: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  padding: 54px 0 38px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      60deg,
      rgba(15, 23, 35, 0.038) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(15, 23, 35, 0.038) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(15, 23, 35, 0.03) 0 1px,
      transparent 1px 22px
    );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0.35) 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0.35) 82%,
    transparent 100%
  );
  opacity: 0.68;
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shape {
  position: absolute;
  right: -60px;
  top: -90px;
  width: 380px;
  height: 380px;
  border-radius: 32% 68% 40% 60% / 52% 34% 66% 48%;
  background: linear-gradient(160deg, rgba(15, 118, 110, 0.3), rgba(242, 183, 5, 0.22));
  animation: pulse 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes pulse {
  from {
    transform: translateY(-8px) rotate(-4deg);
  }
  to {
    transform: translateY(8px) rotate(4deg);
  }
}

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

.eyebrow {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: #0b6a63;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(30px, 5vw, 56px);
  max-width: 13ch;
}

h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.hero-text {
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 24px;
  text-align: left;
}

.hero-title {
  font-size: clamp(26px, 3.8vw, 46px);
  max-width: 17ch;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #cdd8e3;
  background: rgba(255, 255, 255, 0.86);
  color: #2f465d;
  font-size: 12px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  justify-content: flex-start;
}

.hero-content {
  text-align: left;
  width: 100%;
}

.hero-slider {
  position: relative;
  min-height: 440px;
  margin-bottom: 14px;
}

.hero-slide {
  display: none;
  animation: heroFade 0.35s ease;
}

.hero-slide.is-active {
  display: block;
}

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

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-slide .hero-actions {
  margin-bottom: 0;
}

.hero-slider-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.hero-progress {
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: var(--hero-progress-bg, #d4dde4);
  overflow: hidden;
}

.hero-progress-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 0;
  margin-bottom: 0;
  z-index: 3;
}

.hero-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--hero-progress-color, var(--primary));
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #b7c4ce;
}

.hero-dot.is-active {
  background: #0f766e;
}

.hero-media {
  margin: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(360px, 42vw);
  object-fit: cover;
  display: block;
}

.page-home .hero-media img {
  transform: scale(1.02) translate3d(0, 0, 0);
  transition: transform 0.45s ease-out;
  will-change: transform;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0c5f59;
}

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

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

.hero-stats-full {
  margin-top: 2px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-stats div:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 35, 0.12);
  border-color: #b8c6d3;
}

.hero-stats strong {
  display: block;
  font-size: 22px;
}

.hero-stats span {
  color: #57677a;
  font-size: 13px;
}

.section {
  padding: 58px 0;
}

.section-head {
  margin-bottom: 32px;
}

.page-home .section-head {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-home .section-head.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head.center {
  text-align: center;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0c5f59;
  font-weight: 600;
  white-space: nowrap;
}

.section-link svg {
  width: 16px;
  height: 16px;
}

.page-hizmetler .nav-services > .mega-trigger {
  color: var(--primary);
}

.page-cozumler .nav-solutions > .mega-trigger {
  color: var(--primary);
}

.breadcrumb-section {
  padding: 10px 0;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: #5f7182;
}

.breadcrumb a {
  color: #365570;
}

.breadcrumb a:hover {
  color: #113a5c;
}

.breadcrumb span {
  color: #8ea0b1;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.breadcrumb-back {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #d4dee7;
  background: #fff;
  color: #365570;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
}

.breadcrumb-back:hover {
  color: #113a5c;
  border-color: #c2d0de;
}

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

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(15, 118, 110, 0.18), transparent 36%),
    radial-gradient(circle at 82% 80%, rgba(242, 183, 5, 0.16), transparent 34%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  background: #ffffffc2;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.page-hero-inner h1 {
  font-size: clamp(30px, 3.8vw, 46px);
  max-width: none;
}

.page-hero-inner p {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
}

.services-page-section .section-head {
  margin-bottom: 24px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-info-panel,
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 22px rgba(15, 23, 35, 0.08);
}

.contact-info-panel h2,
.contact-form-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.contact-info-panel > p,
.contact-form-panel > p {
  margin: 0;
  color: var(--muted);
}

.contact-info-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-info-card {
  border: 1px solid #d7e0e8;
  background: #f8fbfd;
  border-radius: 8px;
  padding: 12px;
}

.contact-info-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.contact-info-card p,
.contact-info-card a {
  margin: 0;
  color: #2f475d;
  font-weight: 600;
}

.contact-socials {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #cfd9e2;
  background: #fff;
  color: #17324a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-socials a svg {
  width: 18px;
  height: 18px;
}

.contact-form-panel .form-grid {
  margin-top: 16px;
}

.contact-form-panel .offer-submit {
  margin-top: 10px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.local-pages-section {
  padding-top: 18px;
}

.local-city-block + .local-city-block {
  margin-top: 28px;
}

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

.local-page-card {
  position: relative;
  display: grid;
  gap: 10px;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  min-height: 170px;
  box-shadow: 0 10px 22px rgba(15, 23, 35, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.local-page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 35, 0.2);
}

.local-page-card h3 {
  margin: 0;
  font-size: 20px;
}

.local-page-card p {
  margin: 0;
  color: #edf5ff;
  font-size: 14px;
}

.local-page-card span {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
}

.local-page-card.tone-1 { background: #0f766e; }
.local-page-card.tone-2 { background: #2563eb; }
.local-page-card.tone-3 { background: #d97706; }
.local-page-card.tone-4 { background: #0f766e; }
.local-page-card.tone-5 { background: #7c3aed; }
.local-page-card.tone-6 { background: #e11d48; }
.local-page-card.tone-7 { background: #334155; }

.local-page-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}

.local-page-empty h3 {
  margin: 0 0 8px;
}

.local-page-empty p {
  margin: 0;
  color: var(--muted);
}

.local-detail-hero .service-detail-media img {
  height: 100%;
  min-height: 320px;
}

.local-highlights-section {
  padding-top: 6px;
}

.local-content-section {
  padding-top: 12px;
}

.local-related-section {
  padding-top: 18px;
}

.local-cta-band .cta-band-inner p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.service-page-card {
  position: relative;
  display: grid;
  gap: 10px;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  min-height: 185px;
  box-shadow: 0 10px 22px rgba(15, 23, 35, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 35, 0.2);
}

.service-page-card h3 {
  margin: 0;
  font-size: 22px;
}

.service-page-card p {
  margin: 0;
  color: #edf5ff;
  font-size: 14px;
}

.service-page-card span {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
}

.service-page-card.tone-1 { background: #0f766e; }
.service-page-card.tone-2 { background: #2563eb; }
.service-page-card.tone-3 { background: #d97706; }
.service-page-card.tone-4 { background: #0f766e; }
.service-page-card.tone-5 { background: #7c3aed; }
.service-page-card.tone-6 { background: #e11d48; }
.service-page-card.tone-7 { background: #334155; }

.references-page-section .section-head {
  margin-bottom: 24px;
}

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

.reference-case-card {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  min-width: 0;
  box-shadow: 0 10px 22px rgba(15, 23, 35, 0.08);
}

.reference-case-head h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.reference-case-head p {
  margin: 0;
  color: var(--muted);
}

.reference-meta-group {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.reference-shots-wrap {
  position: relative;
  min-width: 0;
}

.reference-shots-swiper {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d7e0e8;
  background: #e8edf2;
}

.reference-shots-swiper .swiper-wrapper {
  align-items: stretch;
}

.reference-shots-swiper .swiper-slide {
  width: 100%;
  height: auto;
  min-width: 0;
}

.reference-shot {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f5f8fb;
}

.reference-shot img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.reference-prev,
.reference-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.reference-prev {
  left: 8px;
}

.reference-next {
  right: 8px;
}

.swiper-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(8, 34, 55, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #082237;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.swiper-arrow:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

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

.solution-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 14px;
}

.solution-tab {
  flex: 0 0 auto;
  border: 1px solid #d0dae3;
  background: #fff;
  color: #27435a;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.solution-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.solution-pane {
  display: none;
}

.solution-pane.is-active {
  display: block;
}

.solution-category-block + .solution-category-block {
  margin-top: 28px;
}

.solution-category-block {
  background: #fff;
  border: 1px solid #d4dde5;
  border-radius: 12px;
  padding: 18px 0 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 35, 0.05);
}

.solution-category-block .section-head {
  margin-bottom: 14px;
  padding: 0 18px;
}

.solution-category-block .section-head h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  padding-left: 14px;
}

.solution-category-block .section-head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.solutions-swiper {
  position: relative;
  padding: 4px 42px 2px;
}

.solution-slide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 35, 0.06);
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
}

.solution-slide-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.solution-slide-card div {
  padding: 0 14px;
}

.solution-slide-card h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.solution-slide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.solution-slide-card .link-arrow {
  padding: 0 14px;
}

.solution-card-btn {
  margin: 0 14px;
  justify-self: start;
}

.solution-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #c8d3dc;
  background: #fff;
  color: #234862;
}

.solution-nav::after {
  font-size: 12px;
  font-weight: 700;
}

.solution-category {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.solution-category h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

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

.solution-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7e0e8;
  border-radius: 8px;
  background: #f9fbfc;
  padding: 8px;
}

.solution-item img {
  width: 100%;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.solution-item-body {
  display: grid;
  gap: 4px;
}

.solution-item span {
  font-weight: 600;
  color: #22394d;
}

.solution-item small {
  color: #5f7488;
  font-size: 12px;
}

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

.solution-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.solution-price-card.featured {
  border-color: #87b4ce;
  box-shadow: 0 10px 24px rgba(15, 23, 35, 0.09);
}

.solution-price-card .plan {
  margin: 0;
  color: #4f6679;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.solution-price-card h3 {
  margin: 0;
  font-size: 22px;
}

.solution-price-card strong {
  font-size: 28px;
  line-height: 1.1;
}

.solution-price-card ul {
  margin: 0;
  padding-left: 18px;
  color: #4d6277;
  display: grid;
  gap: 6px;
}

.service-detail-hero {
  padding-top: 44px;
}

.service-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.service-detail-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 60ch;
}

.blog-detail-hero .service-detail-copy h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  max-width: 20ch;
}

.service-detail-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(12, 25, 41, 0.12);
}

.service-detail-media img {
  width: 100%;
  height: min(390px, 44vw);
  object-fit: cover;
  display: block;
}

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

.service-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.service-detail-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.service-detail-card p {
  margin: 0;
  color: var(--muted);
}

.service-long-content {
  padding-top: 14px;
}

.service-rich-content {
  max-width: none;
  padding: 22px;
}

.service-rich-content h2,
.service-rich-content h3,
.service-rich-content h4 {
  margin: 0 0 12px;
  color: #162f45;
  line-height: 1.3;
}

.service-rich-content h2 {
  font-size: clamp(24px, 2.3vw, 32px);
}

.service-rich-content h3 {
  font-size: clamp(20px, 1.9vw, 26px);
}

.service-rich-content h4 {
  font-size: clamp(17px, 1.4vw, 20px);
}

.service-rich-content p {
  margin: 0 0 14px;
  color: #4d6277;
  line-height: 1.78;
}

.service-rich-content ul,
.service-rich-content ol {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #4d6277;
  display: grid;
  gap: 8px;
}

.service-rich-content li {
  line-height: 1.7;
}

.service-rich-content a {
  color: #0b5f8a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-rich-content blockquote {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 3px solid #90afc7;
  background: #f6fafc;
  border-radius: 8px;
  color: #3f566c;
}

.service-offer-section {
  padding-top: 30px;
}

.service-faq-section {
  padding-top: 32px;
}

.service-inline-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #d4dee7;
  border-radius: 8px;
  background: #fff;
  color: #2f4f69;
  font-size: 12px;
  font-weight: 600;
}

.service-inline-links a:hover {
  border-color: #b4c8d8;
  color: #1b3f5b;
}

.service-subservices {
  padding-top: 34px;
}

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

.service-subservice-item {
  border: 1px solid #d4dee7;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.service-subservice-item strong {
  font-size: 15px;
  color: #1b334a;
}

.service-subservice-item span {
  font-size: 12px;
  color: #4f657a;
}

.open-content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.legal-page-section .open-content-card {
  max-width: 100%;
  margin: 0;
}

.legal-page-section h1 {
  max-width: none;
  font-size: clamp(28px, 3vw, 42px);
}

.legal-page-section .rich-content p,
.legal-page-section .rich-content li {
  line-height: 1.72;
}

.rich-content {
  color: #30475d;
}

.rich-content h3,
.rich-content h4 {
  margin: 0 0 10px;
}

.rich-content h4 {
  margin-top: 18px;
  font-size: 18px;
}

.rich-content p {
  margin: 0 0 12px;
  color: var(--muted);
}

.rich-content ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.service-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-step-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.service-step-item strong {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 7px;
  background: #e6f3f1;
  color: #0f766e;
}

.service-step-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.service-step-item p {
  margin: 0;
  color: var(--muted);
}

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

.portfolio-item {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 35, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 35, 0.12);
}

.portfolio-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.portfolio-body {
  padding: 14px;
}

.portfolio-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.portfolio-body p {
  margin: 0;
  color: var(--muted);
}

.portfolio-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #d7e0e8;
  background: #f6f9fc;
  color: #4e657c;
  font-size: 11px;
  font-weight: 600;
}

.tech-slider {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.tech-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.tech-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.tech-copy h2 {
  margin: 0;
}

.tech-copy p {
  margin: 0;
  color: var(--muted);
}

.tech-rows {
  display: grid;
  gap: 10px;
  align-content: center;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.tech-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  flex-wrap: nowrap;
  animation: techRowSlide 24s linear infinite;
}

.tech-row:nth-child(2) {
  animation-duration: 28s;
  animation-direction: reverse;
}

.tech-rows:hover .tech-row {
  animation-play-state: paused;
}

@keyframes techRowSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tech-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: techSlide 22s linear infinite;
}

.tech-track .tech-item,
.tech-row .tech-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ced8e1;
  background: #f9fbfc;
  color: #32495e;
  font-weight: 600;
  font-size: 13px;
}

.tech-track .tech-item-logo,
.tech-row .tech-item-logo {
  min-width: 140px;
  padding: 0 14px;
}

.tech-track .tech-item-logo img,
.tech-row .tech-item-logo img {
  height: 20px;
  max-width: 110px;
  object-fit: contain;
}

.tech-slider:hover .tech-track {
  animation-play-state: paused;
}

@keyframes techSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.lightbox-trigger {
  display: block;
  cursor: zoom-in;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 26px;
  background: rgba(4, 10, 16, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.lightbox-figure img {
  width: min(1200px, 88vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0b1118;
}

.lightbox-figure figcaption {
  margin: 0;
  color: #d3e2ef;
  font-size: 14px;
  text-align: center;
}

.lightbox-nav,
.lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.trust-column {
  display: grid;
  gap: 18px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 18px rgba(15, 23, 35, 0.06);
}

.trust-card::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 108px;
  height: 108px;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.16), rgba(15, 118, 110, 0.12));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  filter: blur(1px);
  pointer-events: none;
}

.trust-card::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 10px;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.12), transparent 72%);
  pointer-events: none;
}

.trust-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.trust-card-head h3 {
  margin: 0;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
  background: linear-gradient(180deg, #eff9f7, #e6f5fb);
  border: 1px solid #c8e0e4;
  box-shadow: 0 5px 12px rgba(15, 118, 110, 0.12);
  flex: 0 0 34px;
}

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

.trust-card p {
  margin: 0;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.trust-visual {
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  min-height: 520px;
  background:
    linear-gradient(130deg, rgba(10, 79, 74, 0.5), rgba(29, 168, 158, 0.25)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1300&q=80") center/cover;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.offer-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.offer-info p {
  color: var(--muted);
  margin: 0 0 16px;
}

.offer-visual {
  min-height: 250px;
  border-radius: 10px;
  border: 1px solid #c9d7df;
  background:
    linear-gradient(120deg, rgba(10, 79, 74, 0.4), rgba(29, 168, 158, 0.3)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.offer-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 16px;
}

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

.form-grid .field {
  display: grid;
}

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

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid #cdd8e1;
  background: #f9fbfc;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: #1c2f42;
  outline: none;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: #8cb3cf;
  box-shadow: 0 0 0 3px rgba(27, 123, 187, 0.12);
}

.form-grid input.is-invalid,
.form-grid textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-grid input.is-valid,
.form-grid textarea.is-valid {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.field-error {
  min-height: 16px;
  margin-top: 4px;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.3;
}

.offer-note {
  margin: -4px 0 0;
  color: #556b80;
  font-size: 13px;
}

.form-status {
  margin: 6px 0 0;
  min-height: 20px;
  font-size: 13px;
  font-weight: 600;
}

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

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

.offer-submit {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  justify-self: stretch;
}

.service-card,
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 18px rgba(15, 23, 35, 0.06);
}

.blog-swiper {
  position: relative;
  padding: 4px 42px;
}

.blog-swiper .swiper-wrapper {
  align-items: stretch;
}

.blog-swiper .swiper-slide {
  height: auto;
}

.blog-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #c8d3dc;
  background: #fff;
  color: #234862;
}

.blog-nav::after {
  font-size: 12px;
  font-weight: 700;
}

.testi-swiper {
  position: relative;
  padding: 4px 42px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 18px rgba(15, 23, 35, 0.06);
}

.testi-card p {
  margin: 0 0 14px;
  color: #33485d;
}

.testi-card h4 {
  margin: 0 0 2px;
  font-size: 15px;
}

.testi-card span {
  color: #657a8f;
  font-size: 13px;
}

.testi-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #c8d3dc;
  background: #fff;
  color: #234862;
}

.testi-nav::after {
  font-size: 12px;
  font-weight: 700;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f766e, #0ea5e9);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 110px;
  height: 110px;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.14), rgba(15, 118, 110, 0.1));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none;
}

.process-card strong {
  display: inline-grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: linear-gradient(145deg, #0f766e, #0ea5e9);
  color: #ffffff;
  box-shadow: 0 8px 14px rgba(15, 118, 110, 0.18);
}

.process-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.stack-grid span {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid #ced8e1;
  background: #f9fbfc;
  color: #32495e;
  font-weight: 600;
  font-size: 13px;
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -70px;
  width: 260px;
  height: 260px;
  background: linear-gradient(145deg, rgba(148, 163, 184, 0.16), rgba(100, 116, 139, 0.08));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -90px;
  width: 320px;
  height: 320px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(148, 163, 184, 0.12) 0 2px,
      transparent 2px 18px
    );
  border-radius: 34%;
  pointer-events: none;
}

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

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-card p,
.blog-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.service-child-list {
  margin: 0 0 12px;
  padding-left: 16px;
  display: grid;
  gap: 4px;
  color: #4c6277;
  font-size: 12px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.media-panel {
  min-height: 320px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(10, 79, 74, 0.75), rgba(29, 168, 158, 0.6)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.text-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.text-panel p {
  color: var(--muted);
  margin-bottom: 22px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-grid span {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 8px;
  border: 1px dashed #bbc6bf;
  background: rgba(255, 255, 255, 0.72);
  color: #4d5e6e;
  font-weight: 700;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-wall-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  border-radius: 10px;
  border: 1px solid #d6e0e8;
  background: #ffffffcc;
  padding: 12px;
}

.brand-card.has-logo {
  padding: 12px 14px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #0f766e;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(14, 165, 233, 0.16));
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.brand-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #334155;
}

.brand-card h3 a {
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  max-width: 100%;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.24s ease, opacity 0.24s ease;
}

.brand-card:hover .brand-logo {
  filter: grayscale(0);
  opacity: 1;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: logoSlide 24s linear infinite;
}

.logo-track span {
  display: grid;
  place-items: center;
  min-width: 180px;
  min-height: 84px;
  border-radius: 8px;
  border: 1px dashed #bbc6bf;
  background: rgba(255, 255, 255, 0.72);
  color: #4d5e6e;
  font-weight: 700;
  padding: 0 18px;
}

.home-brand-marquee .logo-track {
  gap: 10px;
  animation-duration: 28s;
}

.references-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  align-items: center;
}

.references-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.references-copy h2 {
  margin: 0;
}

.references-copy p {
  margin: 0;
  color: var(--muted);
}

.home-brand-marquee .brand-card {
  min-width: 220px;
  flex: 0 0 220px;
  justify-content: center;
}

.home-brand-marquee .brand-card.has-logo {
  min-width: 190px;
  flex-basis: 190px;
}

@keyframes logoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.blog-card p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-thumb {
  width: calc(100% + 44px);
  max-width: none;
  height: 170px;
  object-fit: cover;
  display: block;
  margin: -22px -22px 16px;
  border-bottom: 1px solid #dbe3ea;
}

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

.blog-card-page {
  min-height: 100%;
}

.page-home .blog-card > p {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d7e0e8;
  width: max-content;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.page-home .blog-card[data-cat="yazilim"] > p {
  color: #0f766e;
  background: #e7f8f5;
  border-color: #b8e6df;
}

.page-home .blog-card[data-cat="tasarim"] > p {
  color: #2563eb;
  background: #eaf1ff;
  border-color: #c9d9ff;
}

.page-home .blog-card[data-cat="pazarlama"] > p {
  color: #b45309;
  background: #fff4df;
  border-color: #f6ddb1;
}

.page-home .blog-card[data-cat="entegrasyon"] > p {
  color: #7c3aed;
  background: #f2ebff;
  border-color: #ddd0ff;
}

.page-home .blog-card[data-cat="kurumsal"] > p {
  color: #334155;
  background: #eef2f7;
  border-color: #d9e1eb;
}

.page-home .blog-card[data-cat="eticaret"] > p {
  color: #be123c;
  background: #ffe8ef;
  border-color: #ffc9d8;
}

.cta-band-inner {
  background: linear-gradient(135deg, #082237, #0c5f59);
  color: #fff;
  padding: 28px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cta-band .eyebrow {
  color: #8ce6df;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-secondary-link {
  color: #d8f1ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(216, 241, 255, 0.55);
}

.home-newsletter {
  background: #061823;
  border-bottom: 1px solid #16374a;
  padding: 24px 0 0;
}

.home-newsletter-inner {
  width: min(1160px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #d8e6f2;
}

.home-newsletter-copy h2 {
  color: #ffffff;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  text-align: center;
}

.home-newsletter-form {
  display: grid;
  width: min(760px, 100%);
  max-width: 760px;
  gap: 10px;
}

.newsletter-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-field input {
  width: 100%;
  border: 1px solid #2d4e60;
  background: rgba(255, 255, 255, 0.08);
  color: #f2f8fc;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.newsletter-field input::placeholder {
  color: #9ab3c5;
}

.newsletter-field input:focus {
  border-color: #3c87b4;
  box-shadow: 0 0 0 3px rgba(61, 154, 206, 0.2);
}

.newsletter-note {
  margin: 0;
  color: #97b1c2;
  font-size: 13px;
  text-align: center;
}

.newsletter-status {
  margin: 0;
  min-height: 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.newsletter-status.is-success {
  color: #8ff3b5;
}

.newsletter-status.is-error {
  color: #ffb3b3;
}

.footer {
  margin-top: 84px;
  background: #061823;
  color: #d3e3ee;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.footer a,
.footer p {
  display: block;
  color: #a8c2d4;
  margin: 0 0 8px;
  font-size: 14px;
}

.footer .footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a8c2d4;
  margin: 0 0 8px;
}

.footer .footer-contact-link svg {
  width: 15px;
  height: 15px;
  color: #86a8be;
  flex: 0 0 15px;
}

.footer .footer-contact-link:hover {
  color: #d7e9f5;
}

.footer .footer-address {
  color: #8fb0c6;
  margin-bottom: 10px;
}

.footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  width: max-content;
}

.footer .footer-social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  line-height: 1;
  padding: 0;
  border: 1px solid #1f4154;
  border-radius: 8px;
  color: #9bb7ca;
  background: rgba(255, 255, 255, 0.02);
  margin: 0 !important;
}

.footer .footer-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0;
  flex: none;
}

.footer .footer-social-link:hover {
  color: #d7e9f5;
  border-color: #315d74;
}

.footer-logo {
  color: #fff;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid #16374a;
  margin-top: 24px;
  padding: 16px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  color: #8da7ba;
  font-size: 14px;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-legal-links a {
  color: #9bb7ca;
  font-size: 14px;
  margin: 0;
}

.footer-legal-links a:hover {
  color: #d7e9f5;
}

.footer-seo-strip {
  border-top: 1px solid #16374a;
  padding: 12px 0 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.footer-seo-strip a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #9bb7ca;
  font-size: 13px;
  margin: 0;
  white-space: nowrap;
}

.footer-seo-strip a:hover {
  color: #d7e9f5;
}

.footer-seo-strip::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.footer-seo-strip::-webkit-scrollbar-thumb {
  background: #2b4f63;
  border-radius: 999px;
}

.page-home .footer {
  margin-top: 0;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0c6660;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(9, 23, 39, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease, background 0.2s ease;
  z-index: 70;
}

.back-to-top:hover {
  background: var(--primary-dark);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  padding: 10px 14px;
  pointer-events: none;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar-inner {
  width: min(1120px, 98%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6e0e8;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(15, 23, 35, 0.14);
  pointer-events: auto;
}

.cookie-bar-inner p {
  margin: 0;
  color: #42586d;
  font-size: 13px;
}

/* Home page visual enrichment */
.text-accent {
  background: linear-gradient(120deg, #0f766e, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(720px, 86vw);
  height: min(360px, 52vw);
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.14), transparent 52%),
    radial-gradient(circle at 76% 42%, rgba(245, 158, 11, 0.12), transparent 58%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.page-home .hero-bg-shape::after {
  content: "";
  position: absolute;
  inset: 28% auto auto -46%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.2);
  filter: blur(28px);
}

.page-home .hero-media {
  border-color: rgba(149, 170, 186, 0.5);
  box-shadow: 0 20px 44px rgba(10, 33, 57, 0.18);
}

.page-home .hero-stats div {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.78);
}

.page-home .section {
  position: relative;
}

.page-home .section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58));
}

.page-home .section-tint {
  background: linear-gradient(180deg, rgba(238, 246, 255, 0.62), rgba(244, 251, 247, 0.62));
}

.page-home .section-head h2 {
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.page-home .section-head.center h2 {
  margin-left: auto;
  margin-right: auto;
}

.page-home .trust-card,
.page-home .process-card,
.page-home .testi-card,
.page-home .blog-card,
.page-home .offer-info,
.page-home .offer-form,
.page-home .faq-list details {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-home .trust-card:hover,
.page-home .process-card:hover,
.page-home .testi-card:hover,
.page-home .blog-card:hover,
.page-home .offer-info:hover,
.page-home .offer-form:hover,
.page-home .faq-list details:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 35, 0.12);
  border-color: #bfd0df;
}

.page-home .process-card strong,
.page-home .hero-stats strong {
  background-image: linear-gradient(135deg, #0f766e, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .stack-grid span {
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  border-color: #c8d5e1;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.page-home .stack-grid span:hover {
  border-color: #9fb6ca;
  color: #183c57;
  transform: translateY(-2px);
}

.page-home .logo-track span {
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.page-home .logo-track span:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.page-home .cta-band-inner {
  background:
    linear-gradient(135deg, rgba(8, 34, 55, 0.94), rgba(12, 95, 89, 0.92)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0 2px,
      transparent 2px 14px
    );
}

@media (min-width: 1025px) {
  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu,
  .has-mega:hover .simple-dropdown,
  .has-mega:focus-within .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .nav-wrap {
    display: flex;
    justify-content: space-between;
  }

  .split-grid,
  .offer-grid,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .solutions-categories-grid,
  .solution-pricing-grid {
    grid-template-columns: 1fr;
  }

  .solutions-swiper {
    padding: 4px 34px;
  }

  .service-detail-hero-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

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

  .tech-copy {
    text-align: center;
    justify-items: center;
  }

  .testi-swiper,
  .blog-swiper {
    padding: 4px 34px;
  }

  .section-head-row {
    align-items: flex-start;
  }

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

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

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

  .references-copy {
    text-align: center;
    justify-items: center;
  }

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

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(360px, 88vw);
    height: 100vh;
    min-height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-right: 1px solid var(--line);
    border-radius: 0 0 12px 0;
    padding: 18px 16px 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 35, 0.2);
    opacity: 1;
    visibility: visible;
    transform: translateX(-102%);
    transition: transform 0.24s ease;
    z-index: 60;
    overflow: hidden;
    overflow-x: hidden;
  }

  .nav.open {
    transform: translateX(0);
  }

  .canvas-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    min-width: 0;
  }

  .canvas-logo .logo-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-bottom: 8px;
    margin-top: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100dvh - 220px);
    padding-bottom: 0;
    min-width: 0;
  }

  .desktop-nav-list {
    display: none !important;
  }

  .mobile-nav-list {
    display: flex !important;
  }

  .nav ul > li,
  .nav ul > li.has-mega,
  .nav ul > li.has-mega.mobile-open {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .nav ul > li > a,
  .nav ul > li > .mega-trigger,
  .nav ul > li.has-mega > .mega-trigger {
    min-width: 0;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 8px 6px;
    border-radius: 6px;
    min-height: 40px;
  }

  .mega-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav ul > li.has-mega > .mega-trigger::after {
    display: inline-block;
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid #456079;
    border-bottom: 2px solid #456079;
    transform: rotate(45deg);
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .nav ul > li.has-mega.mobile-open > .mega-trigger::after {
    transform: rotate(-135deg);
  }

  .mega-menu {
    display: none !important;
  }

  .simple-dropdown {
    display: none !important;
  }

  .nav ul > li.has-mega .mobile-dropdown {
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
    clear: both;
    margin-top: 2px;
  }

  .nav ul > li.has-mega.mobile-open .mobile-dropdown {
    display: block !important;
  }

  .nav ul > li.has-mega .mobile-dropdown a {
    display: block;
    width: 100%;
    padding: 8px 6px;
    color: #53677c;
    font-size: 14px;
    border-radius: 6px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav ul > li.has-mega .mobile-dropdown .mobile-subgroup {
    padding: 4px 0 2px;
  }

  .nav ul > li.has-mega .mobile-dropdown .mobile-subgroup-title {
    display: block;
    padding: 8px 6px 4px;
    color: #2f455c;
    font-size: 13px;
    font-weight: 600;
  }

  .nav ul > li.has-mega .mobile-dropdown a.mobile-sub-link {
    padding-left: 18px;
    color: #5f7184;
    font-size: 13px;
  }

  .nav-contact {
    display: inline-flex;
    width: 100%;
    margin-top: 0;
    background: var(--primary) !important;
    color: #fff !important;
    border: 1px solid transparent !important;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 24, 35, 0.38);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 45;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .trust-visual {
    min-height: 320px;
  }

  .home-newsletter-inner {
    width: min(1160px, 94%);
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding: 34px 0;
  }

  .page-hero-inner {
    padding: 20px;
  }

  .cta-band-inner,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-newsletter-inner {
    width: min(1160px, 94%);
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-stats,
  .logo-grid,
  .mega-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .local-pages-grid {
    grid-template-columns: 1fr;
  }

  .references-list {
    grid-template-columns: 1fr;
  }

  .brand-wall,
  .brand-wall-compact {
    grid-template-columns: 1fr;
  }

  .solutions-swiper {
    padding: 4px 30px;
  }

  .service-steps-grid,
  .service-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-subservices-grid {
    grid-template-columns: 1fr;
  }

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

  .lightbox-modal {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .lightbox-nav.prev {
    justify-self: start;
  }

  .lightbox-nav.next {
    justify-self: end;
  }

  .process-grid,
  .stack-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .newsletter-field {
    grid-template-columns: 1fr;
  }

  .newsletter-field .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-swiper {
    padding: 4px 34px;
  }

  .blog-thumb {
    height: 150px;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .topbar-icons {
    width: 100%;
    justify-content: center;
  }

  .hero-slider {
    min-height: 560px;
  }

  h1 {
    max-width: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .cookie-bar {
    padding: 8px 10px;
  }

  .cookie-bar-inner {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-bar-inner .btn {
    width: 100%;
  }
}
