/* ==========================================================================
   PEVO d.o.o. — shared stylesheet
   ========================================================================== */

:root {
  --bg: #f8fafc;
  --bg-alt: #eef2f1;
  --surface: #ffffff;
  --dark: #0a0f1a;
  --dark-alt: #111a2c;
  --text: #1c2531;
  --text-muted: #5b6672;
  --text-on-dark: #eef2f7;
  --text-on-dark-muted: #9aa7b8;
  --accent: #4c7fa3;
  --accent-dark: #2f5a75;
  --accent-light: #9dc3dc;
  --line: #e3e8ee;
  --line-dark: #223049;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.16);
  --container: 1180px;
  --font-head: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
}
p {
  margin: 0;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--dark);
  color: var(--text-on-dark);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(76, 127, 163, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-dark .eyebrow {
  color: var(--accent-light);
  background: rgba(157, 195, 220, 0.1);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left {
  margin: 0 0 56px;
  text-align: left;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
}
.section-dark .section-head p {
  color: var(--text-on-dark-muted);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(76, 127, 163, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(76, 127, 163, 0.45);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-on-dark);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 32px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.nav-logo span {
  color: var(--accent-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-switch {
  display: flex;
  gap: 6px;
}
.lang-switch a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.lang-switch a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}
.lang-switch a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(76, 127, 163, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(157, 195, 220, 0.16), transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 48px);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.35) 0%, rgba(10, 15, 26, 0.55) 55%, rgba(10, 15, 26, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 32px 80px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.hero-inner .eyebrow {
  background: rgba(157, 195, 220, 0.12);
  color: var(--accent-light);
}
.hero h1 {
  font-size: clamp(52px, 9vw, 110px);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--text-on-dark-muted);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 22px 14px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero-stat:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}
.hero-stat h3 {
  font-size: 19px;
  color: #fff;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue::before {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--accent-light);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 190px 0 90px;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(76, 127, 163, 0.25), transparent 65%);
  z-index: 0;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: clamp(36px, 6vw, 60px);
  letter-spacing: -0.02em;
}
.breadcrumb {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-on-dark-muted);
}
.breadcrumb a {
  text-decoration: none;
  color: var(--text-on-dark-muted);
}
.breadcrumb a:hover {
  color: #fff;
}

/* ==========================================================================
   About / split layout
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.split-media.fade-images {
  position: relative;
  height: 460px;
}
.split-media.fade-images img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.split-media.fade-images img.fade-active {
  opacity: 1;
}
.split-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.split-text p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 16px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-dark);
  display: block;
}
.stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}
.grid-5 {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.grid-5 .card {
  padding: 26px 16px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(76, 127, 163, 0.35);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(76, 127, 163, 0.12);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 24px;
  height: 24px;
}
.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* sustainability */
.eco-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.eco-card:hover {
  transform: translateY(-6px);
}
.eco-card .eco-media {
  height: 200px;
  overflow: hidden;
}
.eco-card .eco-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-alt);
  padding: 20px;
}
.eco-card .eco-media.eco-media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.eco-card .icon-lg {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-card .icon-lg svg {
  width: 38px;
  height: 38px;
}
.eco-card .eco-body {
  padding: 26px;
}
.eco-card h3 {
  font-size: 20px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.eco-card ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
}
.eco-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.eco-card ul li a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* values / timeline */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
}
.value-card .card-icon {
  margin: 0 auto 20px;
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 2px solid var(--line-dark);
}
.timeline-item {
  position: relative;
  padding: 0 0 48px 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(76, 127, 163, 0.18);
}
.timeline-item .tl-tag {
  color: var(--accent-light);
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.timeline-item h3 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 10px;
}
.timeline-item p {
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  max-width: 620px;
}

/* partners */
.partners-swiper {
  padding: 10px 4px 50px;
}
.partner-slide {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.partner-slide img {
  height: 56px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}
.partner-slide span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.swiper-pagination-bullet {
  background: var(--accent-dark);
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-dark) !important;
}
.collab-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.collab-row .partner-slide {
  width: 220px;
}

/* gallery */
.gallery-swiper {
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.gallery-swiper img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 420px;
  width: 100%;
  object-fit: contain;
  background: var(--surface);
  padding: 20px;
}

/* credentials */
.credential-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.credential-strip img {
  max-height: 90px;
  width: auto;
  box-shadow: none;
}
.credential-info {
  flex: 1;
  min-width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.credential-info div span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.credential-info div b {
  font-size: 15px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}
.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  border: 1px solid var(--line);
}
.contact-form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--bg-alt);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(76, 127, 163, 0.3), transparent 65%);
}
.contact-info-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  position: relative;
}
.info-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-list li .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(157, 195, 220, 0.12);
  color: var(--accent-light);
  flex: none;
}
.info-list li .card-icon svg {
  width: 18px;
  height: 18px;
}
.info-list li b {
  display: block;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}
.info-list li span {
  font-size: 15px;
}
.contact-info-card .pasica {
  position: relative;
  margin-top: auto;
}
.contact-info-card .pasica img {
  border-radius: var(--radius-sm);
  box-shadow: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--dark-alt);
  color: var(--text-on-dark-muted);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .nav-logo {
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14.5px;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  text-decoration: none;
  font-size: 14.5px;
  color: var(--text-on-dark-muted);
  transition: color 0.25s ease;
}
.footer-col a:hover {
  color: var(--accent-light);
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-logos a {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logos img {
  height: 26px;
  width: auto;
  box-shadow: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  font-size: 13.5px;
}
.footer-bottom .lang-switch a {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Reveal animation fallback (before GSAP runs)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}
.no-js .reveal,
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-3,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .credential-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  section {
    padding: 70px 0;
  }
  .nav-links,
  .nav-right .lang-switch {
    display: none;
  }
  .navbar.mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.98);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar.mobile-open .nav-right .lang-switch {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-5,
  .grid-3,
  .values-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .credential-strip {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
