/* =========================================================
   Sanly Galkan HJ — Landing page
   Brand: #01B4FF → #0080FD gradient, ink #1B1B1B
   ========================================================= */

:root {
  --c-cyan: #01b4ff;
  --c-blue: #0080fd;
  --c-blue-dark: #0068d6;
  --c-ink: #1b1b1b;
  --c-body: #4b5563;
  --c-muted: #8b96a5;
  --c-line: #e3ecf5;
  --c-bg: #ffffff;
  --c-bg-soft: #f4f8fd;
  --c-bg-tint: #e9f3fe;

  --grad-brand: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-blue) 100%);

  --font: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.06), 0 2px 8px rgba(16, 42, 67, 0.05);
  --shadow-md: 0 6px 24px rgba(16, 42, 67, 0.09);
  --shadow-lg: 0 16px 48px rgba(16, 42, 67, 0.14);
  --shadow-cta: 0 8px 20px rgba(0, 128, 253, 0.3);

  --header-h: 76px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  margin: 0;
  color: var(--c-ink);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

p {
  margin: 0;
}

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

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

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border: 0;
  border-radius: var(--radius-sm);
  font: 700 15px/1.2 var(--font);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 128, 253, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: #fff;
  color: var(--c-blue);
  box-shadow: inset 0 0 0 1.5px #bfd9f7;
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--c-blue);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 16px;
  border-radius: 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 4px 20px rgba(16, 42, 67, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand-lockup {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 9px 15px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-ink);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-link:hover {
  color: var(--c-blue);
  background: var(--c-bg-tint);
}

.nav-link.is-active {
  color: var(--c-blue);
}

.nav-cta {
  display: none;
}

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

.lang-menu {
  position: relative;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--c-bg-tint);
  color: var(--c-blue);
  font: 700 13.5px/1 var(--font);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.lang-pill:hover {
  background: #dcecfd;
}

.lang-caret {
  transition: transform 0.2s ease;
}

.lang-menu.is-open .lang-caret {
  transform: rotate(180deg);
}

.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 160px;
  padding: 6px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--c-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.lang-menu.is-open .lang-list {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.lang-list li {
  padding: 10px 14px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--c-ink);
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.lang-list li:hover {
  background: var(--c-bg-tint);
  color: var(--c-blue);
}

.lang-list li[aria-selected="true"] {
  color: var(--c-blue);
  background: var(--c-bg-tint);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--c-bg-tint);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.4px;
  border-radius: 2px;
  background: var(--c-ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(1, 180, 255, 0.18), transparent 65%),
    radial-gradient(800px 460px at 12% 8%, rgba(0, 128, 253, 0.14), transparent 60%),
    linear-gradient(180deg, #ddefff 0%, #eaf4ff 55%, #ffffff 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 128, 253, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 128, 253, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 0 0 1px rgba(0, 128, 253, 0.22);
  color: var(--c-blue);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(34px, 5.2vw, 60px);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 20px;
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 18px);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-stats {
  margin: 72px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 760px);
  padding: 26px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.hero-stat {
  text-align: center;
}

.hero-stat + .hero-stat {
  border-left: 1.5px solid var(--c-line);
}

.stat-number {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat dd {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-body);
}

/* ---------- Sections (generic) ---------- */
.section {
  padding: 92px 0;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title {
  font-size: clamp(27px, 3.4vw, 38px);
  letter-spacing: -0.015em;
}

.section-sub {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 16.5px;
}

/* ---------- Services ---------- */
.services {
  padding-top: 20px;
  background:
    radial-gradient(700px 400px at 100% 100%, rgba(1, 180, 255, 0.07), transparent 60%),
    #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--c-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(0, 128, 253, 0.25);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: linear-gradient(145deg, #eaf4ff, #f6faff);
  box-shadow: inset 0 0 0 1px rgba(0, 128, 253, 0.1);
}

.service-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1) rotate(-3deg);
}

.service-card h3 {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.3;
}

.service-card p {
  margin-top: 10px;
  font-size: 14.5px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--c-blue);
  font-size: 14.5px;
  font-weight: 700;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ---------- Partners ---------- */
.partners {
  background: var(--c-bg-soft);
  overflow: clip;
}

.marquee {
  position: relative;
  margin-top: 10px;
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  padding-right: 72px;
  animation: marquee 42s linear infinite;
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 48s;
}

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

.marquee-track img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.marquee-track img:hover {
  filter: none;
  opacity: 1;
}

/* Nortel SVG has a square canvas with the wordmark in a middle band —
   enlarge and pull margins in so its visual height matches the row */
.marquee-track img[src*="nortel"] {
  height: 100px;
  max-width: none;
  margin-block: -33px;
}

/* Square-canvas logos need a taller slot to read at the same visual weight */
.marquee-track img[src*="rsa"],
.marquee-track img[src*="netapp"],
.marquee-track img[src*="citrix"],
.marquee-track img[src*="dell"],
.marquee-track img[src*="hp"],
.marquee-track img[src*="symantec"],
.marquee-track img[src*="apc"],
.marquee-track img[src*="cisco"],
.marquee-track img[src*="fujitsu"],
.marquee-track img[src*="huawei"] {
  height: 52px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}

.about-glow {
  position: absolute;
  inset: 6%;
  border-radius: 36px;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(1, 180, 255, 0.22), transparent 70%),
    radial-gradient(60% 60% at 25% 75%, rgba(0, 128, 253, 0.18), transparent 70%),
    linear-gradient(150deg, #eef6ff, #f8fbff);
  box-shadow: inset 0 0 0 1px rgba(0, 128, 253, 0.1);
}

.about-visual img {
  position: relative;
  width: 58%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 128, 253, 0.25));
  animation: float 6s ease-in-out infinite;
}

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

.about-content .section-title {
  text-align: left;
}

.about-text {
  margin-top: 20px;
  font-size: 16.5px;
}

.about-points {
  margin-top: 26px;
  display: grid;
  gap: 13px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--c-ink);
  font-size: 15.5px;
}

.point-icon {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--c-bg-tint);
  color: var(--c-blue);
}

.about-content .btn {
  margin-top: 30px;
}

/* ---------- Customers ---------- */
.customers {
  background:
    radial-gradient(700px 380px at 0% 0%, rgba(1, 180, 255, 0.06), transparent 60%),
    #fff;
}

.customers-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.customers-track {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px;
}

.customers-track::-webkit-scrollbar {
  display: none;
}

.customers-track li {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 148px;
  height: 128px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--c-line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.customers-track li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(0, 128, 253, 0.2);
}

.customers-track img {
  max-width: 96px;
  max-height: 88px;
  object-fit: contain;
}

/* GAP logo ships as a white SVG — darken it so it reads on the light card */
.customer-gap img {
  filter: invert(0.62);
}

/* Wide lockup logos need a wider slot to stay legible */
.customer-wide img {
  max-width: 124px;
}

.carousel-btn {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--c-line);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.carousel-btn:hover {
  background: var(--c-blue);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--c-bg-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-aside {
  position: relative;
  display: flex;
  padding: 46px 40px;
  background:
    radial-gradient(420px 300px at 90% -10%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(150deg, var(--c-cyan) -20%, var(--c-blue) 65%);
  color: #fff;
}

.contact-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.contact-aside-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-aside h3 {
  color: #fff;
  font-size: clamp(23px, 2.4vw, 29px);
  line-height: 1.25;
}

.contact-aside p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
}

.contact-info {
  margin-top: 34px;
  display: grid;
  gap: 15px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
}

.contact-form {
  padding: 46px 44px;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--c-ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: #fbfdff;
  font: 500 15px/1.5 var(--font);
  color: var(--c-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--c-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3.5px rgba(0, 128, 253, 0.14);
}

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

.form-submit {
  width: 100%;
}

.form-status {
  margin-top: 14px;
  min-height: 1.4em;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--c-blue);
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--c-line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: 40px;
  padding: 60px 0 44px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 320px;
  font-size: 14.5px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  font-size: 14.5px;
  color: var(--c-body);
  transition: color 0.15s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--c-blue);
}

.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 14px;
  color: var(--c-muted);
}

.footer-bottom strong {
  color: var(--c-ink);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track,
  .about-visual img {
    animation: none;
  }
}

/* =========================================================
   Responsive
   ========================================================= */

/* --- Tablet --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 320px;
  }

  .about-content {
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-points {
    justify-items: center;
  }

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

  .contact-aside {
    padding: 40px 32px;
  }
}

/* --- Mobile nav breakpoint --- */
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 49;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .main-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    padding: 13px 14px;
    font-size: 16px;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 10px;
  }

  .nav-toggle {
    display: flex;
  }
}

/* --- Mobile --- */
@media (max-width: 640px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

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

  .brand-lockup {
    height: 42px;
  }

  .lang-pill span {
    display: none;
  }

  .lang-pill {
    padding: 12px;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero-stats {
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px;
  }

  .hero-stat + .hero-stat {
    border-left: 0;
    border-top: 1.5px solid var(--c-line);
    padding-top: 22px;
  }

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

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

  .service-card p {
    font-size: 15px;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

  .contact-aside {
    padding: 36px 24px;
  }

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

  .customers-track li {
    width: 128px;
    height: 112px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 36px;
  }

  .marquee-track {
    gap: 48px;
    padding-right: 48px;
  }

  .marquee-track img {
    height: 28px;
    max-width: 120px;
  }
}
