/*
 * LinkUp – tačne dimenzije iz Elementor CSS (post-507, post-184, post-214, post-13/76/159/817)
 * Container: 1400px, padding 20px | Header top: border #414C6A57, padding-bottom 10px, icon 18px, gap 27px
 * Nav: Rajdhani 600 uppercase, boja #404040, active #F95E5A
 * Hero: min-height 480px, overlay home/kontakt 0.46, seo 0.6, o-nama 0.45
 * Wave SVG: calc(201% + 1.3px) × 276px (seo 278px) | h1: 55px/800, o-nama 53px, p: 22px
 * Button: 18px/600, padding 16px 25px, radius 30px | Section: padding 50px, h2 50px/700
 * Benefit card: 266px, padding 50px 30px, icon 68px, title 23px | Footer h2: 25px accent
 */

:root {
  --color-primary: #414c6a;
  --color-accent: #f95e5a;
  --color-white: #ffffff;
  --color-light: #f7f7f8;
  --color-text: #404040;
  --color-muted: #6b7280;
  --font-heading: "Rajdhani", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --container: 1400px;
  --container-padding: 20px;
  --nav-gap: 27px;
  --radius: 8px;
  --radius-btn: 30px;
  --shadow: 0 10px 30px rgba(65, 76, 106, 0.12);
  --hero-min-height: 480px;
  --hero-wave-height: 276px;
  --hero-overlay: 0.56;
  --text-h1-hero: 55px;
  --text-h1-hero-about: 53px;
  --text-hero-sub: 22px;
  --text-btn: 18px;
  --text-section-h2: 50px;
  --mobile-header-height: 110px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 10000;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.accent {
  color: var(--color-accent);
}

/* Header */
/* Header – post-184: boxed container (max 1400px), desktop padding 10px,
   gornji red (a7fd8e3): border-bottom 1px #414C6A57, padding 0 20px 10px 0 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-light);
  box-shadow: none;
  padding: 10px 0;
}

.header-top {
  background: var(--color-light);
  color: var(--color-primary);
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  padding-top: 0;
  padding-bottom: 10px;
  /* a7fd8e3: --padding-right: 20px (uz standardni container padding) */
  padding-right: calc(var(--container-padding) + 20px);
  border-bottom: 1px solid #414c6a57;
}

.header-top a {
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.3s;
}

.header-top a:not(:last-child) {
  padding-right: 13.5px;
  margin-right: 13.5px;
  border-right: 1px dashed var(--color-accent);
}

.header-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.header-top a:hover {
  color: var(--color-accent);
}

.header-main {
  background: var(--color-light);
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 10px;
  padding-bottom: 0;
}

.logo {
  display: inline-flex;
  flex: 0 1 auto;
  width: 300px;
  max-width: 35%;
}

.logo img {
  width: 62%;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--nav-gap);
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-primary);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle__icon,
.menu-toggle__close {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle.is-active .menu-toggle__icon {
  display: none;
}

.menu-toggle.is-active .menu-toggle__close {
  display: block;
}

.mobile-nav-overlay,
.mobile-nav-panel {
  display: none;
}

/* Hero – Elementor cover + wave (post-13/76/159/817) */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.hero:not(.hero--cover) {
  background: linear-gradient(135deg, #414c6a 0%, #5a6a8f 100%);
  padding: 4rem 0 5rem;
}

.hero--cover {
  --hero-overlay: 0.56;
  min-height: var(--hero-min-height);
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--hero-overlay));
  z-index: 1;
  pointer-events: none;
}

.hero--cover .container {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  width: 100%;
  min-height: var(--hero-min-height);
  display: flex;
  flex-direction: column;
  /* Elementor 573309f: --justify-content:center, kit --widgets-spacing 20px */
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

.hero__text {
  max-width: 50%;
  flex: 0 0 auto;
}

.hero__cta {
  /* Elementor 636086d .elementor-widget-container: margin 20px 0 0 0 */
  margin-top: 20px;
  max-width: 50%;
  flex: 0 0 auto;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
  /* Elementor: .elementor-shape[data-negative=false].elementor-shape-bottom */
  transform: rotate(180deg);
}

.hero-wave svg {
  display: block;
  position: relative;
  left: 50%;
  width: calc(201% + 1.3px);
  height: var(--hero-wave-height);
  transform: translateX(-50%) rotateY(180deg);
}

.hero h1,
.hero h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h1-hero);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 20px;
  /* Original (post-13 c65abc2) nema text-transform – tekst je kucan velikim slovima */
  text-transform: none;
  color: var(--color-white);
}

.hero p {
  font-family: var(--font-body);
  font-size: var(--text-hero-sub);
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  color: var(--color-white);
}

/* Home – post-13 */
.hero--home {
  --hero-overlay: 0.56;
  background-image: url("/images/Banner-Naslovna-1-scaled.jpg");
}

.hero--home h1 {
  text-transform: none;
}

/* SEO – post-76 */
.hero--seo {
  --hero-overlay: 0.56;
  background-image: url("/images/linkup-naslovna-platforma.jpg");
}

.hero--seo h1 {
  text-transform: none;
}

/* Kontakt – post-817 */
.hero--kontakt {
  background-image: url("/images/Banner-Naslovna-1-scaled.jpg");
}

.hero--kontakt h1 {
  text-transform: uppercase;
  margin: 0;
}

.hero--cover.hero--home .container,
.hero--cover.hero--seo .container {
  justify-content: center;
}

.hero--cover.hero--about .container,
.hero--cover.hero--kontakt .container {
  justify-content: center;
  padding-top: 0;
}

.hero--page {
  padding: 3rem 0 4rem;
  text-align: center;
}

.hero--page h1 {
  margin-bottom: 0;
}

/* Buttons – Elementor .elementor-button */
.btn {
  display: inline-block;
  padding: 16px 25px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  /* Elementor .elementor-button: line-height 1, bez bordera */
  line-height: 1;
  text-transform: uppercase;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 6px 4px 9px -2px rgba(0, 0, 0, 0.14);
}

.btn-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Sections – padding 50px iz Elementor --padding-top/bottom */
.section {
  padding: 50px 0;
}

.section--light {
  background: var(--color-light);
}

/* Elementor heading: line-height 1, bez text-transform (post-13: c957035/6ccf55f/7452c7b/ae9c9d2/765f901) */
.section-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: none;
  margin: 0 0 20px;
  line-height: 1;
}

.section--about .section-title:not(#about-title) {
  font-size: 30px;
  font-weight: 700;
}

.section-title--center {
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--color-muted);
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Kit 507: --gap / widgets-spacing = 20px */
  gap: 20px;
  align-items: center;
}

/* SEO platforma: "Kako LinkUp platforma…" row – wider gap, right column nudged right */
.page-seo-platforma .section--how .grid-2 {
  column-gap: 3.75rem;
}

.page-seo-platforma .section--how .grid-2 > div:last-child {
  padding-left: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 266px));
  /* 0c9cdcd: --gap: 20px 20px */
  gap: 20px;
  justify-content: center;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
  /* Original icon-box naslovi nisu uppercase ("Bolja vidljivost"…) */
  text-transform: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.card--benefit {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
  transition: bottom 0.3s ease-in-out;
  text-align: center;
  position: relative;
  bottom: 0;
  max-width: 266px;
}

.card--benefit:hover {
  bottom: 20px;
  transform: none;
}

.card--benefit h3 {
  color: var(--color-white);
  font-size: 23px;
  font-weight: 700;
}

.card--benefit p {
  color: var(--color-white);
  opacity: 1;
  margin: 0;
  font-weight: 400;
}

.card--benefit .card-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 31px;
}

.image-mask-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.image-mask {
  position: relative;
  z-index: 1;
  display: block;
  width: 90%;
  max-width: 491px;
  height: auto;
  margin: 0 auto;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MDAgODAwIj48ZyBmaWxsPSIjZmZmIj48ZWxsaXBzZSBjeD0iNTAuNSIgY3k9IjEwNS44IiByeD0iNTAuNCIgcnk9IjUwLjQiLz48ZWxsaXBzZSBjeD0iNzczLjkiIGN5PSIyNjIuMiIgcng9IjI2LjEiIHJ5PSIyNi4xIi8+PGVsbGlwc2UgY3g9IjU5Mi43IiBjeT0iNzIxLjUiIHJ4PSIyNi45IiByeT0iMjYuOSIvPjxwYXRoIGQ9Ik01OTksMTM3Yy0yMi4zLDIxLjgtNTcuNCwyNi04NC42LDguM0M0ODguNywxMjguNiw0NzgsOTcuNSw0ODYsNjkuNUMzMjkuNywxNS4xLDE1NC45LDg4LDg1LjIsMjQxLjZjLTUyLjIsMTE1LjEtMzEuMywyNDQuOCw0Mi45LDMzNi45YzMwLjYtMzAuOSw3OS44LTM3LjIsMTE3LjctMTIuNWMzOS4zLDI1LjYsNTMuMiw3NS42LDM0LjUsMTE3LjFDNDM1LDczMy4zLDYwNiw2NjAuMyw2NzQuNyw1MDguOEM3MzMuOCwzNzguMiw2OTkuMSwyMjksNTk5LDEzN3oiLz48L2c+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MDAgODAwIj48ZyBmaWxsPSIjZmZmIj48ZWxsaXBzZSBjeD0iNTAuNSIgY3k9IjEwNS44IiByeD0iNTAuNCIgcnk9IjUwLjQiLz48ZWxsaXBzZSBjeD0iNzczLjkiIGN5PSIyNjIuMiIgcng9IjI2LjEiIHJ5PSIyNi4xIi8+PGVsbGlwc2UgY3g9IjU5Mi43IiBjeT0iNzIxLjUiIHJ4PSIyNi45IiByeT0iMjYuOSIvPjxwYXRoIGQ9Ik01OTksMTM3Yy0yMi4zLDIxLjgtNTcuNCwyNi04NC42LDguM0M0ODguNywxMjguNiw0NzgsOTcuNSw0ODYsNjkuNUMzMjkuNywxNS4xLDE1NC45LDg4LDg1LjIsMjQxLjZjLTUyLjIsMTE1LjEtMzEuMywyNDQuOCw0Mi45LDMzNi45YzMwLjYtMzAuOSw3OS44LTM3LjIsMTE3LjctMTIuNWMzOS4zLDI1LjYsNTMuMiw3NS42LDM0LjUsMTE3LjFDNDM1LDczMy4zLDYwNiw2NjAuMyw2NzQuNyw1MDguOEM3MzMuOCwzNzguMiw2OTkuMSwyMjksNTk5LDEzN3oiLz48L2c+PC9zdmc+");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Feature list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.category-list {
  columns: 4;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.category-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  break-inside: avoid;
  line-height: 1.9;
}

.category-list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-image: url("/images/arrow-circle-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section--categories {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.section--categories .container {
  position: relative;
  z-index: 1;
}

/* Crveni LinkUp znak (Znal-LinkUp.svg, #F95E5A) kao vodeni žig koji prelazi
   preko "Kako platforma..." sekcije i sekcije sa kategorijama, kao na linkup.rs.
   Referenca post-76.css (df72a71::before): 814px, desno, 71px od vrha, opacity 0.17. */
.page-seo-platforma .seo-emblem-wrap {
  position: relative;
  overflow: hidden;
}

.page-seo-platforma .seo-emblem-wrap > .section {
  position: relative;
  z-index: 1;
  background: transparent;
}

.page-seo-platforma .seo-emblem-wrap::after {
  content: "";
  position: absolute;
  top: 71px;
  right: -150px;
  width: 814px;
  height: 814px;
  background: url("/images/Znal-LinkUp.svg") no-repeat right top;
  background-size: contain;
  opacity: 0.17;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .page-seo-platforma .seo-emblem-wrap::after {
    width: 460px;
    height: 460px;
    right: -110px;
    top: 40px;
  }
}

@media (max-width: 767px) {
  .page-seo-platforma .seo-emblem-wrap::after {
    display: none;
  }
}

.grid-guarantee {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 960px;
  margin: 0 auto;
}

.card--guarantee {
  text-align: center;
  padding: 60px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.card--guarantee .card-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
}

.card--guarantee h3 {
  font-size: 23px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card--guarantee p {
  color: var(--color-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.callout-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0;
  min-height: 273px;
  display: flex;
  align-items: center;
  text-align: center;
}

.callout-bar p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-white);
}

/* Pozadine sekcija – post-13:
   2be6df1 ("Šta je LinkUp") = #F7F7F8, padding 50px 0
   62b10a1 (testimonials)    = bela, padding 50px 0
   1bb5bdc (pregovaranje)    = #F7F7F8
   0c9cdcd (benefiti)        = bela, margin 50px 0
   d1b2abc (CTA)             = #F7F7F8, min-height 335px, margin-top 50px */
.section--about {
  background: var(--color-light);
  padding: 50px 0;
}

.section--testimonials {
  position: relative;
  background: transparent;
  padding: 50px 0;
}

.section--negotiation {
  background: var(--color-light);
  padding: 10px 0;
}

.section--negotiation p {
  /* a6006cc: color var(--e-global-color-primary) */
  color: var(--color-primary);
}

.section--negotiation .grid-2 {
  /* 1bb5bdc: --gap: 0px 0px */
  gap: 0;
}

.section--benefits {
  position: relative;
  background: var(--color-white);
  padding: 10px 0;
  margin: 50px 0;
}

.section--benefits .section-title {
  /* ae9c9d2 widget-container: margin 0 0 50px 0 */
  margin-bottom: 50px;
}

.section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}

.section-wave svg {
  display: block;
  width: calc(201% + 1.3px);
  height: 70px;
  margin-left: 50%;
  transform: translateX(-50%) rotateY(180deg);
}

.section-wave--to-light svg path {
  fill: var(--color-light);
}

.section-wave--to-white svg path {
  fill: var(--color-white);
}

/* SEO platforma – talas na granici benefiti→testimonials (sakriven u CSS).
   Referenca post-76.css: height 278px (desktop), 138px (≤1024), 80px (≤767). */
.page-seo-platforma .section-wave svg {
  height: 278px;
}

.page-seo-platforma .section--benefits {
  margin-bottom: 0;
  padding-bottom: 40px;
}

/* Ravan prelaz benefiti→testimonials: uklonjen dekorativni talas. */
.page-seo-platforma .section--benefits .section-wave {
  display: none;
}

.page-seo-platforma .section--benefits .container {
  position: relative;
  z-index: 1;
}

.page-seo-platforma .section--testimonials {
  overflow: hidden;
  background: var(--color-light);
}

.page-seo-platforma .section--testimonials .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .page-seo-platforma .section-wave svg {
    height: 138px;
  }
}

@media (max-width: 767px) {
  .page-seo-platforma .section-wave svg {
    height: 80px;
  }
}

/* Testimonials slider */
.testimonials-slider {
  position: relative;
  padding: 0 3.5rem 2.5rem;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Elementor testimonial-carousel (d955862) – bez kartice: bez pozadine, bordera i senke */
.testimonial {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 20px;
  box-shadow: none;
  box-sizing: border-box;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-primary);
  box-shadow: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}

.slider-btn:hover {
  background: transparent;
  color: var(--color-accent);
}

.slider-btn--prev {
  left: 0;
}

.slider-btn--next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.15);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-muted);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.team-member h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0 0 0.25rem;
}

.team-member p {
  margin: 0;
  color: var(--color-muted);
}

/* FAQ Accordion */
.accordion {
  width: 66.67%;
  margin-inline: auto;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion--dark .accordion-item {
  border: 7px solid var(--color-white);
  margin-bottom: 0.65rem;
}

.accordion--dark .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.25rem 2.75rem 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  position: relative;
}

.accordion--dark .accordion-trigger {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  text-transform: none;
}

.accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
  transition: transform 0.25s ease;
}

.accordion--dark .accordion-trigger::after {
  content: "+";
  color: var(--color-white);
  font-size: 1.55rem;
  right: 1.25rem;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.accordion:not(.accordion--dark) .accordion-item.is-open .accordion-trigger::after {
  content: "−";
}

.accordion--dark .accordion-item.is-open .accordion-trigger::after {
  content: "−";
  font-size: 1.55rem;
  transform: translateY(-50%);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  color: var(--color-muted);
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.accordion--dark .accordion-panel {
  padding: 0 1.25rem;
  background: var(--color-white);
  border: 7px solid var(--color-white);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 400;
}

.accordion-item.is-open .accordion-panel {
  opacity: 1;
  padding: 0 0 1.25rem;
}

.accordion--dark .accordion-item.is-open .accordion-panel {
  padding: 1.25rem 1.25rem 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-panel,
  .accordion-trigger::after {
    transition: none;
  }
}

.accordion--dark .accordion-item.is-open .accordion-trigger {
  border-radius: 10px 10px 0 0;
}

.accordion-panel ul {
  padding-left: 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Contact – post-817 */
.page-kontakt .section--contact,
body:not(.page-home):not(.page-seo-platforma):not(.page-o-nama) .section {
  background: var(--color-light);
}

.contact-grid .section-title {
  font-size: 50px;
  font-weight: 700;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.contact-info li {
  margin-bottom: 9px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.form-group {
  margin-bottom: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(2, 1, 1, 0.2);
  border-radius: 20px;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-white);
}

.form-group .btn-primary {
  margin-top: 20px;
}

.map-wrap iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

/* Kontakt – podaci levo, mapa desno */
.page-kontakt .contact-grid {
  gap: 60px;
  align-items: center;
}

.page-kontakt .contact-grid .map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.page-kontakt .contact-grid .map-wrap iframe {
  height: 450px;
  display: block;
}

.page-kontakt .contact-info li {
  font-size: 15px;
  line-height: 1.5;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.page-kontakt .contact-info .contact-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--color-primary);
}

.page-kontakt .contact-info strong {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 767px) {
  .page-kontakt .contact-grid {
    gap: 32px;
  }
}

/* Video */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #414c6a 0%, #5a6a8f 100%);
  color: var(--color-white);
  text-align: center;
  padding: 4rem 0;
}

.cta--light {
  background: var(--color-light);
  color: var(--color-primary);
  min-height: 335px;
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.cta--light .container {
  width: 100%;
}

.cta--light h2 {
  font-size: 50px;
  font-weight: 700;
}

.cta--light p {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-body);
}

.cta h2 {
  font-family: var(--font-heading);
  margin: 0 0 20px;
  line-height: 1;
  /* Original (post-13 765f901) nema uppercase */
  text-transform: none;
}

.cta--light h2 {
  color: var(--color-primary);
}

.cta p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.cta--light p {
  /* c46d585: color var(--e-global-color-primary), Open Sans 25px 700 */
  color: var(--color-primary);
  opacity: 1;
}

/* Footer – post-214: bela pozadina, 4 kolone po 25% (gap 0),
   kolone 2–4 poravnate udesno (align-items:flex-end) sa širinama 60% / 51% / 48%,
   naslovi #F95E5A Rajdhani 25px 700 (tekst kucan velikim slovima),
   linkovi Open Sans 600 #414C6A sa ikonicama 14px */
.site-footer {
  background: transparent;
  color: var(--color-text);
}

.footer-main {
  /* Elementor ff3c579 ≤1024: --padding-top/bottom 50px; desktop visual match */
  padding: 50px 0;
  background: var(--color-white);
  color: var(--color-text);
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  gap: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col:not(.footer-col--brand) {
  /* 8bb8db8 / ae51512 / c00791c: --align-items: flex-end */
  align-items: flex-end;
}

.footer-col--menu .footer-col__inner {
  width: 60%; /* 009b64b / 0ebd553 */
}

.footer-col--contact .footer-col__inner {
  width: 51%; /* 88fa4c0 / 19dd814 */
}

.footer-col--social .footer-col__inner {
  width: 48%; /* 11fed5c / 449567a */
}

.footer-col--brand > a {
  display: inline-block;
  line-height: 0;
  margin: 0;
}

.footer-col--brand img {
  /* c49b016: img width 50% */
  width: 50%;
  height: auto;
  margin: 0;
}

/* post-507: .elementor-widget:not(:last-child) margin-block-end 20px */
.footer-col--brand .footer-info {
  margin-top: 20px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  text-transform: none;
  margin: 0 0 10px;
  line-height: 1;
  color: var(--color-accent);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Elementor icon-list: no space_between → 0 gap; ~line-height 1.5 = 24px red */
.footer-grid li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.footer-grid a,
.footer-info li,
.footer-list li {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  /* global.css: .elementor-icon-list-text = --e-global-color-secondary (#414C6A) */
  color: var(--color-primary);
}

.footer-grid a {
  transition: color 0.3s;
}

.footer-grid a:hover {
  color: var(--color-accent);
}

.footer-list li,
.footer-list a {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.footer-list .list-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 6px; /* post-214: .elementor-icon-list-icon margin-top 6px */
  color: var(--color-primary);
}

.footer-list a:hover .list-icon {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 12px; /* 449567a: --grid-column-gap: 12px */
  flex-wrap: wrap;
  justify-content: flex-end; /* e-grid-align-right */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0.4em; /* 449567a: --icon-padding: 0.4em */
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 17px; /* 449567a: --icon-size: 17px */
  font-weight: 700;
}

.social-links a svg {
  width: 17px;
  height: 17px;
}

.social-links a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer-bottom {
  /* 0a76ad1: background #414C6A; 6bf2512: Open Sans 14px 500, centrirano, belo */
  background: var(--color-primary);
  border-top: none;
  padding: 1rem 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

/* O nama – post-159 */
.page-o-nama .hero--about {
  --hero-overlay: 0.56;
  background-image: url("/images/o-nama-baner-2.jpg");
}

.page-o-nama .hero--about .container {
  justify-content: center;
  text-align: left;
}

.page-o-nama .hero__text {
  max-width: 31%;
}

.page-o-nama .hero--about h1 {
  font-size: var(--text-h1-hero-about);
  text-transform: none;
  margin: 0;
}

.page-o-nama .hero--about p {
  margin: 0;
}

.page-o-nama .section--intro {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 0;
}

.page-o-nama .section--intro .grid-2 {
  gap: 92px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-o-nama .about-intro__text p {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 1.25rem;
}

.page-o-nama .about-intro__text p:last-child {
  margin-bottom: 0;
}

.page-o-nama .about-intro__graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.page-o-nama .about-intro__graphic img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
}

.page-o-nama .section--mission {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 50px 0;
  margin-top: 50px;
}

.page-o-nama .section--mission .section-title {
  color: var(--color-white);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: none;
}

.page-o-nama .section--mission .section-intro {
  color: var(--color-white);
  font-size: 19px;
  font-weight: 400;
  max-width: 1000px;
  margin-bottom: 0;
}

.page-o-nama .section--team {
  padding: 50px 0;
  margin: 50px 0;
  background: var(--color-light);
}

.page-o-nama .section--team .section-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: none;
}

.page-o-nama .team-grid {
  grid-template-columns: repeat(2, 200px);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.page-o-nama .team-member__photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin: 0 auto 1rem;
  width: 100%;
  max-width: 200px;
}

.page-o-nama .team-member__photo img {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
  object-fit: cover;
  margin: 0;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MDAgODAwIj48ZyBmaWxsPSIjZmZmIj48ZWxsaXBzZSBjeD0iNTAuNSIgY3k9IjEwNS44IiByeD0iNTAuNCIgcnk9IjUwLjQiLz48ZWxsaXBzZSBjeD0iNzczLjkiIGN5PSIyNjIuMiIgcng9IjI2LjEiIHJ5PSIyNi4xIi8+PGVsbGlwc2UgY3g9IjU5Mi43IiBjeT0iNzIxLjUiIHJ4PSIyNi45IiByeT0iMjYuOSIvPjxwYXRoIGQ9Ik01OTksMTM3Yy0yMi4zLDIxLjgtNTcuNCwyNi04NC42LDguM0M0ODguNywxMjguNiw0NzgsOTcuNSw0ODYsNjkuNUMzMjkuNywxNS4xLDE1NC45LDg4LDg1LjIsMjQxLjZjLTUyLjIsMTE1LjEtMzEuMywyNDQuOCw0Mi45LDMzNi45YzMwLjYtMzAuOSw3OS44LTM3LjIsMTE3LjctMTIuNWMzOS4zLDI1LjYsNTMuMiw3NS42LDM0LjUsMTE3LjFDNDM1LDczMy4zLDYwNiw2NjAuMyw2NzQuNyw1MDguOEM3MzMuOCwzNzguMiw2OTkuMSwyMjksNTk5LDEzN3oiLz48L2c+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MDAgODAwIj48ZyBmaWxsPSIjZmZmIj48ZWxsaXBzZSBjeD0iNTAuNSIgY3k9IjEwNS44IiByeD0iNTAuNCIgcnk9IjUwLjQiLz48ZWxsaXBzZSBjeD0iNzczLjkiIGN5PSIyNjIuMiIgcng9IjI2LjEiIHJ5PSIyNi4xIi8+PGVsbGlwc2UgY3g9IjU5Mi43IiBjeT0iNzIxLjUiIHJ4PSIyNi45IiByeT0iMjYuOSIvPjxwYXRoIGQ9Ik01OTksMTM3Yy0yMi4zLDIxLjgtNTcuNCwyNi04NC42LDguM0M0ODguNywxMjguNiw0NzgsOTcuNSw0ODYsNjkuNUMzMjkuNywxNS4xLDE1NC45LDg4LDg1LjIsMjQxLjZjLTUyLjIsMTE1LjEtMzEuMywyNDQuOCw0Mi45LDMzNi45YzMwLjYtMzAuOSw3OS44LTM3LjIsMTE3LjctMTIuNWMzOS4zLDI1LjYsNTMuMiw3NS42LDM0LjUsMTE3LjFDNDM1LDczMy4zLDYwNiw2NjAuMyw2NzQuNyw1MDguOEM3MzMuOCwzNzguMiw2OTkuMSwyMjksNTk5LDEzN3oiLz48L2c+PC9zdmc+");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-o-nama .team-member h3 {
  font-size: 24px;
  color: var(--color-text);
  font-weight: 700;
  text-transform: none;
}

.page-o-nama .team-member p {
  font-size: 1rem;
}

/* Responsive — Elementor breakpoints: 1024px / 767px */
@media (max-width: 1024px) {
  :root {
    --container: 1024px;
  }

  .site-header {
    padding-block: 10px;
  }

  .logo {
    width: 229px;
    max-width: 229px;
  }

  .logo img {
    width: 100%;
    max-width: 229px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 266px));
  }

  .hero-wave svg {
    height: 135px;
  }

  .hero__text,
  .hero__cta {
    max-width: 83%;
  }

  .hero--home h1 {
    font-size: 2.8125rem;
  }

  .grid-guarantee {
    grid-template-columns: repeat(2, 1fr);
  }

  /* post-214 ≤1024: padding 50px 20px, kolone ostaju 4 × 25% */
  .footer-main {
    padding: 50px 0;
  }

  .page-o-nama .hero-wave svg {
    height: 135px;
  }

  .page-o-nama .section--intro .grid-2 {
    gap: 2rem;
  }

  .page-o-nama .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .page-o-nama .team-member__photo img {
    width: 90%;
  }
}

@media (max-width: 767px) {
  :root {
    --container: 767px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header {
    z-index: 1300;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
  }

  .mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--mobile-header-height);
    right: 0;
    width: min(280px, 80vw);
    height: calc(100vh - var(--mobile-header-height));
    height: calc(100dvh - var(--mobile-header-height));
    background: var(--color-white);
    z-index: 1200;
    padding: 1.25rem;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-panel.is-open {
    transform: translateX(0);
  }

  .mobile-nav-panel__menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-panel__menu li {
    margin: 0;
  }

  .mobile-nav-panel__menu a {
    display: block;
    padding: 0.6rem 0;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text);
    border-bottom: 1px solid rgba(65, 76, 106, 0.1);
    transition: color 0.3s;
  }

  .mobile-nav-panel__menu a:hover,
  .mobile-nav-panel__menu a:focus,
  .mobile-nav-panel__menu a.active,
  .mobile-nav-panel__menu a[aria-current="page"] {
    color: var(--color-accent);
  }

  .mobile-nav-panel__heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.25rem 0 0.65rem;
    line-height: 1;
  }

  .mobile-nav-panel__social-links {
    justify-content: flex-start;
    gap: 8px;
  }

  .mobile-nav-panel__social-links a {
    padding: 0.35em;
    font-size: 15px;
  }

  .mobile-nav-panel__social-links a svg {
    width: 15px;
    height: 15px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .menu-toggle {
    color: var(--color-primary);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-guarantee,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* SEO platforma "Kako…" row – stack normalno bez levog razmaka na mobilnom */
  .page-seo-platforma .section--how .grid-2 {
    column-gap: 20px;
  }

  .page-seo-platforma .section--how .grid-2 > div:last-child {
    padding-left: 0;
  }

  .category-list {
    columns: 2;
    column-gap: 1.5rem;
  }

  .category-list li {
    margin-bottom: 0.75rem;
  }

  .section-title,
  .cta--light h2,
  .contact-grid .section-title {
    font-size: 40px;
  }

  .section--benefits .grid-4 {
    justify-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .accordion {
    width: 100%;
  }

  /* post-214 ≤767: blok centriran, sadržaj ulevo, jednake širine kolona */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .footer-col,
  .footer-col--brand {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 280px;
  }

  .footer-col--menu .footer-col__inner,
  .footer-col--contact .footer-col__inner,
  .footer-col--social .footer-col__inner {
    width: 100%;
  }

  .footer-col--brand > a {
    align-self: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .header-top .container {
    justify-content: center;
    padding-inline: var(--container-padding);
  }

  .logo {
    width: 67%;
    max-width: 67%;
  }

  .logo img {
    width: 74%;
  }

  .testimonials-slider {
    padding: 0 2.5rem 2rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .hero--cover {
    min-height: 300px;
    height: auto;
    padding: 1.875rem 0 0;
  }

  .hero--cover .container {
    min-height: 300px;
    height: auto;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .hero__text,
  .hero__cta,
  .hero h1,
  .hero h2,
  .hero p {
    max-width: 100%;
  }

  .hero h1,
  .page-o-nama .hero--about h1 {
    font-size: 45px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1.125rem;
    line-height: 1.1;
  }

  .hero__cta {
    padding-bottom: 0;
    margin-top: 0;
  }

  .hero-wave svg {
    height: 80px;
  }

  .page-o-nama .hero__text {
    max-width: 100%;
  }

  .page-o-nama .hero-wave svg {
    height: 60px;
  }

  .image-mask {
    width: 100%;
  }

  .page-o-nama .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-o-nama .section--intro {
    min-height: auto;
    padding-top: 2rem;
  }

  .page-o-nama .section--intro .grid-2 {
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-panel,
  .mobile-nav-overlay {
    transition: none;
  }
}
