@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #101828;
  background: #f4f5fb;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-x: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: radial-gradient(circle at top left, rgba(75, 114, 255, 0.28), transparent 55%),
    radial-gradient(circle at top right, rgba(135, 56, 250, 0.32), transparent 55%),
    rgba(10, 15, 33, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: stretch;
}

@media (max-width: 991px) {
  .site-header {
    position: relative;
  }

  .site-header.sticky-active {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 2.5vw, 24px) 0;
  min-height: 70px;
  height: 100%;
}

.site-header {
  display: flex;
  align-items: stretch;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: clamp(36px, 4vw, 40px);
  height: clamp(36px, 4vw, 40px);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #8ef3ff, #4f46e5 52%, #1b133a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7ff;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 22px);
}

.brand-text-main {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(14px, 1.8vw, 15px);
  color: #e5e7ff;
  line-height: 1.2;
}

.brand-text-sub {
  font-size: clamp(11px, 1.4vw, 12px);
  color: #aab3ff;
  line-height: 1.3;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #e5e7ff;
}

.menu-close {
  display: none;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  opacity: 0.86;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #a3e635);
  transition: width 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a.is-active {
  opacity: 1;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.lang-switch button {
  border: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: #e5e7ff;
  cursor: pointer;
  opacity: 0.7;
}

.lang-switch button.is-active {
  background: radial-gradient(circle at 20% 0, #bbf7d0, #22c55e);
  color: #022c22;
  opacity: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 13px;
  color: #cbd5f5;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #22c55e, #a3e635);
  color: #022c22;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.32);
}

.btn-outline {
  background: transparent;
  color: #e5e7ff;
  border: 1px solid rgba(148, 163, 184, 0.65);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.95);
}

/* Burger */
.burger {
  display: none;
  width: clamp(38px, 5vw, 44px);
  height: clamp(32px, 4vw, 38px);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.burger:hover {
  border-color: rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.5);
}

.burger-lines {
  position: relative;
  width: clamp(20px, 2.5vw, 22px);
  height: 2.5px;
  border-radius: 999px;
  background: #e5e7ff;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: clamp(20px, 2.5vw, 22px);
  height: 2.5px;
  border-radius: inherit;
  background: inherit;
}

.burger-lines::before {
  top: -6px;
}

.burger-lines::after {
  top: 6px;
}

.burger.is-open .burger-lines {
  background: transparent;
}

.burger.is-open .burger-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.burger.is-open .burger-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  color: #f9fafb;
  background:
    radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.55), transparent 55%),
    radial-gradient(circle at 100% 20%, rgba(56, 189, 248, 0.65), transparent 52%),
    radial-gradient(circle at 50% 110%, rgba(16, 185, 129, 0.7), #020617 80%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/blur.svg");
  background-size: cover;
  mix-blend-mode: soft-light;
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(40px, 7vw, 60px) 0 clamp(50px, 8vw, 72px);
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 12px);
  padding: clamp(6px, 1vw, 8px) clamp(16px, 2vw, 20px) clamp(6px, 1vw, 8px) clamp(6px, 1vw, 8px);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.7);
  font-size: clamp(13px, 1.8vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
}

.hero-kicker-dot {
  width: clamp(28px, 3.5vw, 32px);
  height: clamp(28px, 3.5vw, 32px);
  border-radius: 999px;
  background: radial-gradient(circle at 25% 20%, #bbf7d0, #22c55e 45%, #064e3b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 2.2vw, 20px);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(24px, 5vw + 1rem, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: clamp(14px, 2vw, 18px);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-title span.accent {
  color: #bbf7d0;
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw + 0.5rem, 15px);
  line-height: 1.6;
  max-width: 100%;
  color: #e5e7eb;
  margin-bottom: clamp(18px, 3vw, 26px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  font-size: 12px;
  color: #cbd5f5;
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.3);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-cta-note {
  font-size: 12px;
  color: #cbd5f5;
}

.hero-secondary {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 0, rgba(248, 250, 252, 0.05), transparent 55%),
    rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: clamp(14px, 1.8vw, 18px) clamp(20px, 2.5vw, 24px) clamp(12px, 1.5vw, 16px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.6);
  overflow: hidden;
  max-width: 100%;
  min-height: clamp(260px, 32vw, 320px);
}

.hero-secondary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-pill {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5f5;
  background: rgba(15, 23, 42, 0.7);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 18px;
  background: linear-gradient(90deg, #22c55e, #a3e635);
}

/* Hero Services Banner Slider */
.hero-services-banner-slider {
  position: relative;
  width: 100%;
  border-radius: clamp(16px, 2vw, 20px);
  overflow: hidden;
  margin-top: clamp(12px, 1.5vw, 16px);
}

.hero-services-banner-wrapper {
  position: relative;
  width: 100%;
  height: clamp(180px, 24vw, 260px);
  overflow: hidden;
  display: flex;
  background: transparent;
  border-radius: clamp(14px, 1.8vw, 18px);
}

.hero-services-banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 0.5vw, 6px);
}

.hero-services-banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-services-banner-slide img {
  max-width: 102%;
  max-height: 102%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: clamp(10px, 1.2vw, 14px);
}

.hero-services-banner-slide:hover img {
  transform: scale(1.03);
}

.hero-services-banner-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 20px);
  margin-top: clamp(12px, 1.5vw, 16px);
  z-index: 10;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  padding: clamp(8px, 1.2vw, 12px) clamp(14px, 2vw, 20px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}


.hero-banner-hint {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.8);
}

.hero-services-banner-prev,
.hero-services-banner-next {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: clamp(14px, 1.8vw, 18px);
  padding: 0;
}

.hero-services-banner-prev:hover,
.hero-services-banner-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-services-banner-prev:active,
.hero-services-banner-next:active {
  transform: scale(0.95);
}

.hero-services-banner-dots {
  display: flex;
  gap: clamp(6px, 0.8vw, 10px);
  align-items: center;
}

.hero-services-banner-dot {
  width: clamp(6px, 0.8vw, 8px);
  height: clamp(6px, 0.8vw, 8px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
}

.hero-services-banner-dot.active {
  background: #ffffff;
  width: clamp(20px, 2.5vw, 28px);
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-services-banner-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-services-grid {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hero-services-grid:active {
  cursor: grabbing;
}

.hero-services-wrapper {
  display: flex;
  will-change: transform;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.hero-service-card {
  flex-shrink: 0;
  flex-grow: 0;
  transition: transform 0.2s ease, box-shadow 0.15s ease, border-color 0.15s ease,
    background 0.15s ease;
  box-sizing: border-box;
  margin-right: 0;
}

.hero-service-card {
  position: relative;
  border-radius: 14px;
  padding: 10px 10px 11px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.3);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease,
    background 0.15s ease;
}

.hero-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
  border-color: rgba(129, 230, 217, 0.7);
}

.hero-service-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #e0f2fe, #38bdf8 55%, #075985 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  margin-bottom: 8px;
  font-size: 14px;
}

.hero-service-title {
  font-size: clamp(11px, 1.2vw + 0.2rem, 12px);
  font-weight: 500;
  color: #f9fafb;
  margin-bottom: clamp(3px, 0.5vw, 4px);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.hero-service-text {
  font-size: clamp(10px, 1.1vw + 0.1rem, 11px);
  color: #cbd5f5;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-service-arrow {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 11px;
  color: #a5b4fc;
}

/* ========== Sections ========== */
section {
  padding: clamp(40px, 8vw, 64px) 0;
}

.section-header {
  text-align: left;
  margin-bottom: 32px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(20px, 3vw + 0.5rem, 26px);
  line-height: 1.3;
  margin: 0;
  color: #020617;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-subtitle {
  margin-top: clamp(6px, 1vw, 8px);
  font-size: clamp(13px, 1.2vw + 0.3rem, 14px);
  color: #64748b;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Services block under hero */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 18px);
}

.service-card {
  border-radius: clamp(14px, 2vw, 18px);
  padding: clamp(14px, 2vw, 18px) clamp(12px, 1.8vw, 16px) clamp(12px, 1.8vw, 16px);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 8px);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.service-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #0f172a;
  background: radial-gradient(circle at 20% 0, #e0f2fe, #38bdf8 55%, #075985 100%);
}

.service-card-title {
  font-size: clamp(13px, 1.3vw + 0.3rem, 14px);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.service-card-text {
  font-size: clamp(12px, 1.2vw + 0.2rem, 13px);
  color: #64748b;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card-link {
  margin-top: auto;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f766e;
}

/* ========== Services Banner Slider ========== */
.services-banner-slider {
  position: relative;
  width: 100%;
  margin: clamp(32px, 4vw, 48px) 0;
  border-radius: clamp(20px, 3vw, 28px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  background: #ffffff;
}

.services-banner-wrapper {
  position: relative;
  width: 100%;
  height: clamp(400px, 50vw, 600px);
  overflow: hidden;
  display: flex;
}

.services-banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: block;
}

.services-banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.services-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-banner-slide:hover img {
  transform: scale(1.05);
}

.services-banner-nav {
  position: absolute;
  bottom: clamp(20px, 3vw, 28px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  z-index: 10;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2.5vw, 24px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-banner-prev,
.services-banner-next {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: clamp(16px, 2vw, 20px);
  padding: 0;
}

.services-banner-prev:hover,
.services-banner-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.services-banner-prev:active,
.services-banner-next:active {
  transform: scale(0.95);
}

.services-banner-dots {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  align-items: center;
}

.services-banner-dot {
  width: clamp(8px, 1vw, 10px);
  height: clamp(8px, 1vw, 10px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-banner-dot.active {
  background: #ffffff;
  width: clamp(24px, 3vw, 32px);
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.5);
}

.services-banner-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* ========== Projects ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 28px);
  margin-top: 40px;
}

.project-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.project-card.featured {
  border: 2px solid rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.project-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(90deg, #22c55e, #a3e635);
  color: #022c22;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-category {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 4px;
}

.project-date {
  font-size: 12px;
  color: #94a3b8;
  margin-top: -8px;
  margin-bottom: 4px;
}

.project-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #020617;
  margin: 0;
  line-height: 1.3;
}

.project-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: -4px 0 8px;
  font-weight: 500;
}

.project-description {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.tech-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(56, 189, 248, 0.1);
  color: #075985;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0f766e;
  margin-top: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.project-link:hover {
  color: #22c55e;
  gap: 8px;
}

.project-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.project-link:hover i {
  transform: translateX(2px);
}

/* Extra block: process */
.process {
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 50%),
    radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.16), transparent 55%),
    #020617;
  color: #e5e7eb;
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.process-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.process-text {
  font-size: 14px;
  color: #cbd5f5;
}

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

.process-step {
  padding: 14px 14px 13px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 13px;
}

.process-step-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5b4fc;
  margin-bottom: 4px;
}

.process-step-title {
  font-weight: 500;
  margin-bottom: 2px;
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #e5e7eb;
  border-radius: 18px;
  padding: 18px 20px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-strip-text {
  font-size: 14px;
}

.cta-strip-text strong {
  color: #e5e7ff;
}

/* Footer */
.site-footer {
  padding: 32px 0 24px;
  font-size: 13px;
  color: #64748b;
  background: #020617;
  border-top: 1px solid #111827;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-contacts {
  white-space: pre-line;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7ff;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0, #bbf7d0, #22c55e);
  color: #022c22;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.45);
}

/* ========== Service detail layout ========== */
.service-hero {
  padding: 70px 0 40px;
  background:
    radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.55), transparent 55%),
    radial-gradient(circle at 100% 12%, rgba(56, 189, 248, 0.6), transparent 50%),
    #020617;
  color: #f9fafb;
}

.service-hero-inner {
  max-width: 820px;
}

.breadcrumbs {
  font-size: 12px;
  color: #a5b4fc;
  margin-bottom: 10px;
}

.breadcrumbs a {
  color: inherit;
  opacity: 0.9;
}

.service-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.service-lead {
  font-size: 15px;
  color: #e5e7eb;
  max-width: 650px;
}

.service-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #cbd5f5;
}

.service-body {
  background: #f4f5fb;
}

.service-body-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 40px;
  padding: 40px 0 64px;
}

.service-section-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-lead-text {
  font-size: clamp(18px, 1.5vw, 20px) !important;
  line-height: 1.6 !important;
  color: #374151 !important;
  margin-bottom: 40px !important;
  font-weight: 400;
}

.service-text {
  font-size: 17px;
  line-height: 1.75;
  color: #374151;
}

.service-text p {
  margin-top: 0;
  margin-bottom: 24px;
}

.service-list {
  padding-left: 0;
  margin: 24px 0 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: #374151;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.service-list li b {
  font-weight: 600;
  color: #111827;
}

.service-sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-sidebar-title {
  font-size: 15px;
  margin-bottom: 8px;
}

.service-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
  color: #64748b;
}

.service-summary-list li {
  margin-bottom: 4px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.service-tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
}

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

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 clamp(20px, 3vw, 24px);
  }

  .hero-inner {
    gap: clamp(20px, 3vw, 32px);
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 16px);
  }

  .services-banner-slider {
    margin: clamp(28px, 3.5vw, 40px) 0;
  }

  .services-banner-wrapper {
    height: clamp(350px, 45vw, 550px);
  }

  .process-inner {
    gap: clamp(24px, 3vw, 32px);
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
  .site-header {
    position: relative;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    padding: clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px) clamp(28px, 5vw, 36px);
    padding-top: clamp(80px, 12vw, 100px);
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    flex-direction: column;
    gap: clamp(18px, 3vw, 24px);
    z-index: 9999;
    font-size: clamp(18px, 4vw, 22px);
    box-shadow: none;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .menu-close {
    position: absolute;
    top: clamp(20px, 4vw, 32px);
    right: clamp(20px, 4vw, 32px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7ff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10000;
    padding: 0;
    margin: 0;
  }

  .nav-links.is-open .menu-close {
    display: flex;
  }

  .menu-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
    transform: rotate(90deg);
  }

  .menu-close-icon {
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
    display: block;
  }

  .nav-links a {
    padding: clamp(12px, 2vw, 16px) 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: block;
    box-sizing: border-box;
  }

  .nav-links.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: clamp(32px, 5vw, 40px);
    gap: clamp(24px, 3vw, 32px);
  }

  .hero-secondary {
    margin-top: clamp(20px, 3vw, 28px);
    padding: clamp(12px, 1.8vw, 16px) clamp(16px, 2.5vw, 20px) clamp(10px, 1.5vw, 14px);
    min-height: clamp(220px, 28vw, 280px);
  }

  .hero-services-banner-wrapper {
    height: clamp(160px, 20vw, 220px);
  }

  .hero-services-banner-nav {
    margin-top: clamp(14px, 1.8vw, 18px);
    gap: clamp(18px, 2.2vw, 22px);
    padding: clamp(10px, 1.3vw, 14px) clamp(16px, 2.2vw, 22px);
  }

  .hero-services-banner-prev,
  .hero-services-banner-next {
    width: clamp(36px, 4.5vw, 44px);
    height: clamp(36px, 4.5vw, 44px);
    font-size: clamp(16px, 2vw, 20px);
  }

  .hero-services-banner-dots {
    gap: clamp(8px, 1.2vw, 12px);
  }

  .hero-services-banner-dot {
    width: clamp(8px, 1.2vw, 10px);
    height: clamp(8px, 1.2vw, 10px);
  }

  .hero-services-banner-dot.active {
    width: clamp(24px, 3.5vw, 32px);
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 32px);
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.5vw, 16px);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 18px);
  }

  .services-banner-wrapper {
    height: clamp(300px, 40vw, 480px);
  }

  .services-banner-nav {
    bottom: clamp(16px, 2.5vw, 24px);
    padding: clamp(8px, 1.2vw, 12px) clamp(14px, 2vw, 20px);
  }

  .services-banner-prev,
  .services-banner-next {
    width: clamp(32px, 3.5vw, 40px);
    height: clamp(32px, 3.5vw, 40px);
    font-size: clamp(14px, 1.8vw, 18px);
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 24px);
  }

  .service-body-inner {
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 32px);
  }

  .section-header {
    margin-bottom: clamp(24px, 3vw, 32px);
  }

  .cta-strip {
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 16px);
  }
}

/* Mobile Landscape (640px - 767px) */
@media (max-width: 767px) {
  .header-inner {
    padding: clamp(16px, 2.5vw, 20px) 0;
    min-height: 60px;
  }

  .brand {
    gap: clamp(10px, 1.5vw, 12px);
  }

  .brand-mark {
    width: clamp(32px, 4vw, 36px);
    height: clamp(32px, 4vw, 36px);
    font-size: clamp(18px, 2.5vw, 20px);
  }

  .brand-text-main {
    font-size: clamp(13px, 1.8vw, 14px);
  }

  .brand-text-sub {
    font-size: clamp(10px, 1.4vw, 11px);
  }

  .hero-inner {
    padding: clamp(32px, 5vw, 40px) 0 clamp(40px, 6vw, 52px);
  }

  .hero-kicker {
    font-size: clamp(10px, 1.2vw, 11px);
    padding: clamp(2px, 0.3vw, 3px) clamp(10px, 1.5vw, 12px) clamp(2px, 0.3vw, 3px) clamp(2px, 0.3vw, 3px);
    margin-bottom: clamp(12px, 2vw, 16px);
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 1.5vw, 16px);
    font-size: clamp(11px, 1.3vw, 12px);
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    gap: clamp(10px, 1.5vw, 12px);
  }

  .btn {
    width: 100%;
    padding: clamp(10px, 1.5vw, 12px) clamp(16px, 2.5vw, 20px);
    font-size: clamp(12px, 1.4vw, 13px);
  }

  .hero-secondary {
    padding: clamp(10px, 1.5vw, 14px) clamp(14px, 2vw, 18px) clamp(8px, 1.2vw, 12px);
    min-height: clamp(200px, 32vw, 260px);
  }

  .hero-services-banner-wrapper {
    height: clamp(150px, 28vw, 200px);
  }

  .hero-services-banner-nav {
    margin-top: clamp(12px, 1.5vw, 16px);
    gap: clamp(16px, 2vw, 24px);
    padding: clamp(12px, 1.5vw, 16px) clamp(18px, 2.5vw, 24px);
  }

  .hero-services-banner-prev,
  .hero-services-banner-next {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    font-size: clamp(18px, 2.5vw, 22px);
  }

  .hero-services-banner-dots {
    gap: clamp(10px, 1.5vw, 14px);
  }

  .hero-services-banner-dot {
    width: clamp(10px, 1.5vw, 12px);
    height: clamp(10px, 1.5vw, 12px);
  }

  .hero-services-banner-dot.active {
    width: clamp(28px, 4vw, 36px);
  }

  .hero-service-card {
    padding: clamp(12px, 1.8vw, 14px);
  }

  .hero-service-icon {
    width: clamp(26px, 3vw, 28px);
    height: clamp(26px, 3vw, 28px);
    font-size: clamp(13px, 1.5vw, 14px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: clamp(14px, 2vw, 18px);
  }

  .services-banner-slider {
    margin: clamp(24px, 3vw, 32px) 0;
    border-radius: clamp(16px, 2.5vw, 24px);
  }

  .services-banner-wrapper {
    height: clamp(280px, 60vw, 400px);
  }

  .services-banner-nav {
    bottom: clamp(12px, 2vw, 20px);
    gap: clamp(12px, 1.8vw, 20px);
    padding: clamp(8px, 1vw, 10px) clamp(12px, 1.8vw, 18px);
  }

  .services-banner-prev,
  .services-banner-next {
    width: clamp(28px, 3vw, 36px);
    height: clamp(28px, 3vw, 36px);
    font-size: clamp(12px, 1.5vw, 16px);
  }

  .services-banner-dot {
    width: clamp(6px, 0.8vw, 8px);
    height: clamp(6px, 0.8vw, 8px);
  }

  .services-banner-dot.active {
    width: clamp(20px, 2.5vw, 28px);
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: clamp(18px, 2.5vw, 24px);
  }

  .service-card {
    padding: clamp(16px, 2.5vw, 20px) clamp(14px, 2vw, 18px);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: clamp(12px, 1.5vw, 14px);
  }

  .process-step {
    padding: clamp(12px, 1.8vw, 14px);
    font-size: clamp(12px, 1.4vw, 13px);
  }

  section {
    padding: clamp(36px, 5vw, 42px) 0;
  }

  .section-header {
    margin-bottom: clamp(20px, 3vw, 24px);
  }

  .cta-strip {
    flex-direction: column;
    align-items: stretch;
    padding: clamp(16px, 2.5vw, 20px);
    text-align: center;
  }

  .cta-strip-text {
    font-size: clamp(13px, 1.5vw, 14px);
    margin-bottom: clamp(10px, 1.5vw, 12px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(14px, 2vw, 18px);
  }

  .footer-contacts {
    font-size: clamp(12px, 1.4vw, 13px);
  }
}

/* Mobile Portrait (480px - 639px) */
@media (max-width: 639px) {
  .container {
    padding: 0 clamp(14px, 3vw, 18px);
  }

  .hero-title {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: clamp(13px, 3.5vw, 15px);
  }

  .section-title {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .section-subtitle {
    font-size: clamp(12px, 3vw, 14px);
  }

  .service-card-title {
    font-size: clamp(13px, 3.2vw, 14px);
  }

  .service-card-text {
    font-size: clamp(12px, 3vw, 13px);
  }

  .process-title {
    font-size: clamp(20px, 4.5vw, 24px);
  }

  .process-text {
    font-size: clamp(13px, 3vw, 14px);
  }

  .service-title {
    font-size: clamp(24px, 5.5vw, 28px);
  }

  .service-lead {
    font-size: clamp(14px, 3.5vw, 15px);
  }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 479px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: clamp(20px, 7vw, 24px);
  }

  .hero-subtitle {
    font-size: clamp(12px, 4vw, 14px);
  }

  .section-title {
    font-size: clamp(18px, 5vw, 20px);
  }

  .section-kicker {
    font-size: clamp(10px, 2.5vw, 11px);
  }

  .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero-service-card {
    padding: 12px;
  }

  .service-card {
    padding: 14px 12px;
  }

  .process-step {
    padding: 12px;
    font-size: 12px;
  }
}

/* Extra Small Mobile (up to 359px) */
@media (max-width: 359px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 18px;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .section-title {
    font-size: 16px;
  }

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

  .hero-kicker {
    font-size: 9px;
    padding: 2px 8px 2px 2px;
  }

  .brand-text-main {
    font-size: 10px;
  }

  .brand-text-sub {
    font-size: 8px;
  }
}

/* Oasis Catalog Styles */
.oasis-catalog {
  margin-top: clamp(24px, 3vw, 32px);
  padding: clamp(20px, 2.5vw, 28px);
  background: rgba(15, 23, 42, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.oasis-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.oasis-search-input {
  flex: 1;
  padding: clamp(12px, 1.5vw, 16px) clamp(16px, 2vw, 20px);
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  color: #e5e7ff;
  font-size: clamp(14px, 1.8vw, 16px);
  transition: all 0.2s ease;
}

.oasis-search-input:focus {
  outline: none;
  border-color: #38bdf8;
  background: rgba(248, 250, 252, 0.08);
}

.oasis-search-input::placeholder {
  color: rgba(203, 213, 225, 0.5);
}

.oasis-search-btn {
  padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 24px);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: clamp(14px, 1.8vw, 16px);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oasis-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.oasis-loading {
  text-align: center;
  padding: clamp(40px, 5vw, 60px);
  color: #cbd5f5;
}

.oasis-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(56, 189, 248, 0.2);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.oasis-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(200px, 25vw, 280px), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(24px, 3vw, 32px);
}

.oasis-product-card {
  background: rgba(248, 250, 252, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 20px);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.oasis-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.4);
  background: rgba(248, 250, 252, 0.05);
}

.oasis-product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: clamp(12px, 1.5vw, 16px);
  background: rgba(248, 250, 252, 0.05);
}

.oasis-product-title {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  color: #e5e7ff;
  margin-bottom: clamp(8px, 1vw, 12px);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oasis-product-price {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #22c55e;
  margin-bottom: clamp(4px, 0.5vw, 8px);
}

.oasis-product-brand {
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgba(203, 213, 225, 0.7);
  margin-bottom: clamp(8px, 1vw, 12px);
}

.oasis-product-stock {
  font-size: clamp(11px, 1.3vw, 13px);
  color: rgba(203, 213, 225, 0.6);
  padding: clamp(4px, 0.5vw, 6px) clamp(8px, 1vw, 12px);
  background: rgba(56, 189, 248, 0.1);
  border-radius: 6px;
  display: inline-block;
}

.oasis-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  flex-wrap: wrap;
}

.oasis-pagination button {
  padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 20px);
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  color: #cbd5f5;
  font-size: clamp(13px, 1.6vw, 15px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.oasis-pagination button:hover:not(:disabled) {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  color: #ffffff;
}

.oasis-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.oasis-pagination button.active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-color: #22c55e;
  color: #ffffff;
}

@media (max-width: 767px) {
  .oasis-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: clamp(12px, 1.5vw, 16px);
  }

  .oasis-search-bar {
    flex-direction: column;
  }


  .oasis-search-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Language Switcher Styles */
.mobile-lang-switch {
  display: none;
}

@media (max-width: 991px) {
  .mobile-lang-switch {
    display: inline-flex !important;
    margin-top: 15px;
    justify-content: center;
    width: 100%;
  }
}