.site-title {
  display: none !important;
}

/* ============================================================
   SALON HERO – CSS
   Brand: #399138 | #096626 | #d6d4d7
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --c-green:        #399138;
  --c-green-dark:   #096626;
  --c-silver:       #d6d4d7;
  --c-white:        #ffffff;
  --c-offwhite:     #f7f6f4;
  --c-text:         #1a1a1a;
  --c-text-muted:   #6b6b6b;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', sans-serif;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset scoped ──────────────────────────────────────────── */
.salon-hero *, .salon-hero *::before, .salon-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Section ───────────────────────────────────────────────── */
.salon-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0d1a0e;
  font-family: var(--font-body);
}

/* ── Background layers ─────────────────────────────────────── */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   #1a3d1a 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%,  #096626 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 70%,  #0d2e0e 0%, transparent 60%),
    linear-gradient(160deg, #0a1a0b 0%, #101f10 40%, #081208 100%);
  z-index: 0;
}

.hero-bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.35;
  z-index: 1;
}

.hero-bg-circles {
  z-index: 1;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(57, 145, 56, 0.12);
}

.hero-circle--lg {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circlePulse 8s var(--ease-in-out) infinite;
}

.hero-circle--md {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(57, 145, 56, 0.08);
  animation: circlePulse 8s var(--ease-in-out) infinite 1.5s;
}

.hero-circle--sm {
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(57, 145, 56, 0.18);
  animation: circlePulse 8s var(--ease-in-out) infinite 3s;
}

@keyframes circlePulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}

/* ── Botanical accents ─────────────────────────────────────── */
.hero-botanical {
  position: absolute;
  bottom: -20px;
  width: 120px;
  height: 320px;
  z-index: 2;
  opacity: 0;
  animation: botanicalReveal 1.4s var(--ease-out-expo) forwards;
}

.hero-botanical--left {
  left: 4%;
  animation-delay: 0.8s;
}

.hero-botanical--right {
  right: 4%;
  animation-delay: 1s;
}

@keyframes botanicalReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Line accent ───────────────────────────────────────────── */
.hero-line-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--c-green));
  z-index: 3;
  opacity: 0;
  animation: lineReveal 1s var(--ease-out-expo) 0.3s forwards;
}

@keyframes lineReveal {
  from { opacity: 0; transform: translateX(-50%) scaleY(0); transform-origin: top; }
  to   { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* ── Inner wrapper ─────────────────────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  padding: 120px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Badge ─────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px 6px 12px;
  border: 1px solid rgba(57, 145, 56, 0.35);
  border-radius: 100px;
  background: rgba(57, 145, 56, 0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

.hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px var(--c-green);
  animation: dotBlink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-badge__text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 212, 215, 0.8);
}

/* ── Headline ──────────────────────────────────────────────── */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-headline__line {
  display: block;
  font-size: clamp(40px, 6.5vw, 78px);
  opacity: 0;
}

.hero-headline__line--1 {
  animation: fadeUp 0.9s var(--ease-out-expo) 0.7s forwards;
}

.hero-headline__line--2 {
  animation: fadeUp 0.9s var(--ease-out-expo) 0.85s forwards;
  color: rgba(255,255,255,0.85);
  font-size: clamp(38px, 6vw, 72px);
}

.hero-headline__line--3 {
  animation: fadeUp 0.9s var(--ease-out-expo) 1s forwards;
}

.hero-headline__em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-green);
  position: relative;
  display: inline-block;
}

.hero-headline__em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-green);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 0.7s var(--ease-out-expo) 1.8s forwards;
}

@keyframes underlineReveal {
  to { transform: scaleX(1); }
}

/* ── Subheadline ───────────────────────────────────────────── */
.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(214, 212, 215, 0.75);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 1.1s forwards;
}

/* ── CTA Group ─────────────────────────────────────────────── */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 1.25s forwards;
}

/* Primary button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo),
              background 0.25s ease,
              border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-btn:hover::before {
  opacity: 1;
}

.hero-btn--primary {
  padding: 15px 32px 15px 36px;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-dark) 100%);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 24px rgba(57, 145, 56, 0.4), 0 0 0 0 rgba(57, 145, 56, 0);
}

.hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(57, 145, 56, 0.55), 0 0 0 4px rgba(57, 145, 56, 0.15);
}

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

.hero-btn__icon {
  display: flex;
  align-items: center;
  transition: transform 0.25s var(--ease-out-expo);
}

.hero-btn--primary:hover .hero-btn__icon {
  transform: translateX(4px);
}

/* Ghost button */
.hero-btn--ghost {
  padding: 14px 32px;
  background: transparent;
  color: rgba(214, 212, 215, 0.85);
  border: 1px solid rgba(214, 212, 215, 0.25);
}

.hero-btn--ghost:hover {
  border-color: rgba(57, 145, 56, 0.6);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(57, 145, 56, 0.15);
}

/* ── Trust strip ───────────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 48px;
  border: 1px solid rgba(57, 145, 56, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 1.5s forwards;
}

.hero-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-trust__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: 'DM Sans', sans-serif;
}

.hero-trust__num::after {
  content: '+';
  font-size: 0.6em;
  color: var(--c-green);
  vertical-align: super;
}

.hero-trust__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(214, 212, 215, 0.5);
}

.hero-trust__divider {
  width: 1px;
  height: 40px;
  background: rgba(57, 145, 56, 0.2);
  flex-shrink: 0;
}

/* ── Scroll cue ────────────────────────────────────────────── */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll-cue__line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-green), transparent);
  margin: 0 auto;
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── Shared keyframes ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    padding: 100px 24px 60px;
  }

  .hero-trust {
    gap: 24px;
    padding: 20px 28px;
  }

  .hero-botanical {
    width: 80px;
    height: 220px;
  }

  .hero-botanical--left  { left: 0; }
  .hero-botanical--right { right: 0; }

  .hero-circle--lg { width: 400px; height: 400px; }
  .hero-circle--md { width: 280px; height: 280px; }
  .hero-circle--sm { width: 160px; height: 160px; }
}

@media (max-width: 480px) {
  .hero-trust {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .hero-trust__divider {
    width: 40px;
    height: 1px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-botanical {
    display: none;
  }
}


/* ============================================================
   SALON PAIN SECTION – CSS
   Brand: #399138 | #096626 | #d6d4d7
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-pain {
  position: relative;
  background-color: #07120a;
  padding: 120px 0 100px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Background ─────────────────────────────────────────────── */
.pain-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(9, 102, 38, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(57, 145, 56, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #07120a 0%, #091509 50%, #07120a 100%);
  pointer-events: none;
}

.pain-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.3;
  pointer-events: none;
}

/* ── Top decorative line ────────────────────────────────────── */
.pain-line-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-green, #399138), transparent);
  opacity: 0.5;
}

/* ── Inner ──────────────────────────────────────────────────── */
.pain-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* ── Header ─────────────────────────────────────────────────── */
.pain-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pain-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: painFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.pain-eyebrow::before,
.pain-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(57, 145, 56, 0.4);
}

.pain-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #ffffff;
  opacity: 0;
  animation: painFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.pain-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.pain-title__em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: painUnderline 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes painUnderline {
  to { transform: scaleX(1); }
}

/* ── Grid ───────────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ── Card ───────────────────────────────────────────────────── */
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(57, 145, 56, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  cursor: default;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(57, 145, 56, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card:hover {
  border-color: rgba(57, 145, 56, 0.35);
  background: rgba(57, 145, 56, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(57, 145, 56, 0.1);
}

/* Staggered card animations */
.pain-card--1 { animation: painFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
.pain-card--2 { animation: painFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards; }
.pain-card--3 { animation: painFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.64s forwards; }
.pain-card--4 { animation: painFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.76s forwards; }
.pain-card--5 { animation: painFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.88s forwards; }
.pain-card--6 { animation: painFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.00s forwards; }

/* ── Card icon ──────────────────────────────────────────────── */
.pain-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(57, 145, 56, 0.2);
  background: rgba(57, 145, 56, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover .pain-card__icon {
  background: rgba(57, 145, 56, 0.14);
  border-color: rgba(57, 145, 56, 0.4);
}

/* ── Card text ──────────────────────────────────────────────── */
.pain-card__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(214, 212, 215, 0.8);
  padding-top: 9px;
  transition: color 0.3s ease;
}

.pain-card:hover .pain-card__text {
  color: rgba(214, 212, 215, 0.95);
}

/* ── Closing statement ──────────────────────────────────────── */
.pain-closing {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: painFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

.pain-closing__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(57, 145, 56, 0.3), transparent);
  max-width: 160px;
}

.pain-closing__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.pain-closing__text em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
}

/* ── Shared keyframe ─────────────────────────────────────────── */
@keyframes painFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .salon-pain {
    padding: 80px 0 72px;
  }

  .pain-inner {
    padding: 0 20px;
    gap: 48px;
  }

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

  .pain-closing {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pain-closing__line {
    width: 60px;
    max-width: 60px;
  }

  .pain-closing__text {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================================
   SALON SOLUTIONS SECTION – CSS
   Vizuelni jezik: svetliji, strukturiraniji, "expert" feel
   Brand: #399138 | #096626 | #d6d4d7
   Fonts: Cormorant Garamond + DM Sans
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-solutions {
  position: relative;
  background-color: #f4f2ef;
  padding: 120px 0 108px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Background ─────────────────────────────────────────────── */
.sol-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 95% 10%, rgba(57, 145, 56, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 5% 85%,  rgba(9, 102, 38, 0.05) 0%, transparent 55%),
    linear-gradient(175deg, #f7f6f3 0%, #eeecea 100%);
  pointer-events: none;
}

.sol-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.6;
  pointer-events: none;
}

/* ── Grid decoration lines ───────────────────────────────────── */
.sol-grid-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sol-grid-deco__h,
.sol-grid-deco__v {
  position: absolute;
  background: rgba(57, 145, 56, 0.07);
}

.sol-grid-deco__h {
  left: 0; right: 0;
  height: 1px;
}

.sol-grid-deco__v {
  top: 0; bottom: 0;
  width: 1px;
}

.sol-grid-deco__h--1 { top: 35%; }
.sol-grid-deco__h--2 { top: 70%; }
.sol-grid-deco__v--1 { left: 33.33%; }
.sol-grid-deco__v--2 { left: 66.66%; }

/* ── Inner ──────────────────────────────────────────────────── */
.sol-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ─────────────────────────────────────────────────── */
.sol-header {
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sol-header__label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sol-header__label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: #399138;
  opacity: 0.6;
}

.sol-header__label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #399138;
  opacity: 0;
  animation: solFadeRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.sol-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #111;
  opacity: 0;
  animation: solFadeRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.sol-title__accent {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.sol-title__accent::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: solUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes solUnderline {
  to { transform: scaleX(1); }
}

.sol-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #6b6b6b;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: solFadeRight 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* ── Grid layout ─────────────────────────────────────────────── */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Card base ───────────────────────────────────────────────── */
.sol-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  opacity: 0;
  cursor: default;
}

.sol-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #399138, #096626);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 0 16px 16px;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(57, 145, 56, 0.08);
  border-color: rgba(57, 145, 56, 0.2);
}

.sol-card:hover::after {
  transform: scaleX(1);
}

/* Stagger animations */
.sol-card--1 { animation: solFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
.sol-card--2 { animation: solFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards; }
.sol-card--3 { animation: solFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.64s forwards; }
.sol-card--4 { animation: solFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.76s forwards; }
.sol-card--5 { animation: solFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.88s forwards; }
.sol-card--cta { animation: solFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.00s forwards; }

/* ── Card number badge ───────────────────────────────────────── */
.sol-card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(57, 145, 56, 0.35);
}

/* ── Background number watermark ────────────────────────────── */
.sol-card__bg-num {
  position: absolute;
  bottom: -16px;
  right: -8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 96px;
  font-weight: 700;
  color: rgba(57, 145, 56, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}

.sol-card:hover .sol-card__bg-num {
  color: rgba(57, 145, 56, 0.07);
}

/* ── Card top row ────────────────────────────────────────────── */
.sol-card__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Icon wrap ───────────────────────────────────────────────── */
.sol-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(57, 145, 56, 0.07);
  border: 1px solid rgba(57, 145, 56, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #399138;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.sol-card:hover .sol-card__icon-wrap {
  background: rgba(57, 145, 56, 0.12);
  border-color: rgba(57, 145, 56, 0.3);
}

/* ── Card title ──────────────────────────────────────────────── */
.sol-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #111;
}

/* ── Card text ───────────────────────────────────────────────── */
.sol-card__text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: #555;
  flex: 1;
}

.sol-card__text strong {
  font-weight: 500;
  color: #333;
}

/* ── Card CTA link ───────────────────────────────────────────── */
.sol-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b6b6b;
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.25s ease;
  align-self: flex-start;
}

.sol-card__cta svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-card:hover .sol-card__cta {
  color: #399138;
}

.sol-card:hover .sol-card__cta svg {
  transform: translateX(5px);
}

/* ── CTA card (6th) ──────────────────────────────────────────── */
.sol-card--cta {
  background: linear-gradient(145deg, #096626 0%, #0d3d10 100%);
  border-color: transparent;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}

.sol-card--cta:hover {
  box-shadow: 0 20px 50px rgba(9, 102, 38, 0.3), 0 4px 12px rgba(57, 145, 56, 0.2);
  border-color: transparent;
}

.sol-card--cta::after {
  background: rgba(255,255,255,0.12);
}

.sol-card-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sol-card-cta__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.sol-card-cta__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: #ffffff;
}

.sol-card-cta__sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.sol-card-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 100px;
  align-self: flex-start;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-card-cta__btn svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-card--cta:hover .sol-card-cta__btn {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.sol-card--cta:hover .sol-card-cta__btn svg {
  transform: translateX(4px);
}

/* Decorative rings inside CTA card */
.sol-card-cta__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sol-card-cta__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

.sol-card-cta__ring--1 {
  width: 220px;
  height: 220px;
  bottom: -60px;
  right: -60px;
}

.sol-card-cta__ring--2 {
  width: 140px;
  height: 140px;
  bottom: -20px;
  right: -10px;
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes solFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes solFadeRight {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .sol-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-grid-deco__v--1 { left: 50%; }
  .sol-grid-deco__v--2 { display: none; }
}

@media (max-width: 600px) {
  .salon-solutions {
    padding: 80px 0 72px;
  }

  .sol-inner {
    padding: 0 20px;
  }

  .sol-header {
    margin-bottom: 48px;
  }

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

  .sol-grid-deco {
    display: none;
  }
}

/* ============================================================
   SALON KRIOLIPOLIZA – CSS
   Estetika: tamna luksuznija od hero, svetlija od pain,
   "royal" feel — dubok navy-green, zlatni akcenti, magazinski layout
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-krio {
  position: relative;
  background-color: #0c1810;
  padding: 120px 0 108px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.krio-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%,   rgba(57, 145, 56, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 0% 100%,   rgba(9,  102,  38, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%,   rgba(57, 145, 56, 0.04) 0%, transparent 70%),
    linear-gradient(160deg, #0c1810 0%, #0e1f12 50%, #091408 100%);
  pointer-events: none;
}

.krio-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.4;
  pointer-events: none;
}

/* ── Inner ──────────────────────────────────────────────────── */
.krio-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.krio-header {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: krioSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.krio-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(214, 212, 215, 0.45);
}

.krio-header__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #399138;
  box-shadow: 0 0 8px #399138;
  flex-shrink: 0;
  animation: krioDotBlink 2.5s ease-in-out infinite;
}

@keyframes krioDotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.krio-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.krio-header__title-em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.krio-header__title-em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: krioUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes krioUnderline {
  to { transform: scaleX(1); }
}

.krio-header__intro {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(214, 212, 215, 0.6);
  max-width: 580px;
}

/* ══════════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════════ */
.krio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════════
   VISUAL (left)
══════════════════════════════════════════ */
.krio-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  animation: krioSlideRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.krio-visual__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* Image placeholder — zameni sa <img> u Elementoru */
.krio-visual__placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #152318 0%, #0e1c10 100%);
  border: 1px solid rgba(57, 145, 56, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Placeholder unutrašnjost */
.krio-visual__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.krio-visual__placeholder-inner p {
  font-size: 12px;
  color: rgba(214, 212, 215, 0.3);
  letter-spacing: 0.06em;
}

/* Before / After label */
.krio-ba-divider {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  z-index: 3;
  pointer-events: none;
}

.krio-ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, rgba(57, 145, 56, 0.5) 30%, rgba(57, 145, 56, 0.5) 70%, transparent 95%);
}

.krio-ba-label {
  position: absolute;
  bottom: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 212, 215, 0.5);
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 100px;
}

.krio-ba-label--before { left: 16px; }
.krio-ba-label--after  { right: 16px; }

/* Floating stat badges */
.krio-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(9, 20, 10, 0.85);
  border: 1px solid rgba(57, 145, 56, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px 18px;
  z-index: 5;
}

.krio-badge--top    { top: 20px;    left: -18px; }
.krio-badge--bottom { bottom: 20px; right: -18px; }

.krio-badge__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.krio-badge__num small {
  font-size: 13px;
  font-weight: 400;
  color: #399138;
  margin-left: 2px;
}

.krio-badge__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(214, 212, 215, 0.45);
  max-width: 100px;
  line-height: 1.3;
}

/* Zone tags */
.krio-zones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.krio-zones__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(214, 212, 215, 0.4);
}

.krio-zones__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.krio-zone {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(214, 212, 215, 0.75);
  padding: 5px 14px;
  border: 1px solid rgba(57, 145, 56, 0.2);
  border-radius: 100px;
  background: rgba(57, 145, 56, 0.06);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: default;
}

.krio-zone:hover {
  border-color: rgba(57, 145, 56, 0.5);
  background: rgba(57, 145, 56, 0.12);
  color: #ffffff;
}

/* ══════════════════════════════════════════
   CONTENT (right)
══════════════════════════════════════════ */
.krio-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  opacity: 0;
  animation: krioSlideLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* What is */
.krio-what__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.krio-what__text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(214, 212, 215, 0.7);
  margin-bottom: 10px;
}

.krio-what__text strong {
  font-weight: 500;
  color: rgba(214, 212, 215, 0.95);
}

/* Benefits */
.krio-benefits__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.8);
  margin-bottom: 16px;
}

.krio-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.krio-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.8);
  padding: 10px 14px;
  border: 1px solid rgba(57, 145, 56, 0.1);
  border-radius: 8px;
  background: rgba(57, 145, 56, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.krio-benefit:hover {
  border-color: rgba(57, 145, 56, 0.25);
  background: rgba(57, 145, 56, 0.08);
}

.krio-benefit__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(57, 145, 56, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Results note */
.krio-results {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-left: 2px solid #399138;
  background: rgba(57, 145, 56, 0.06);
  border-radius: 0 10px 10px 0;
}

.krio-results__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.krio-results__text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(214, 212, 215, 0.7);
}

.krio-results__text strong {
  font-weight: 500;
  color: rgba(214, 212, 215, 0.95);
}

/* CTA */
.krio-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.krio-cta__question {
  font-size: 14px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.55);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
}

.krio-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px 15px 36px;
  background: linear-gradient(135deg, #399138 0%, #096626 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  box-shadow: 0 4px 24px rgba(57, 145, 56, 0.35);
  align-self: flex-start;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.krio-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.krio-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(57, 145, 56, 0.5), 0 0 0 4px rgba(57, 145, 56, 0.12);
}

.krio-cta__btn:hover::before {
  opacity: 1;
}

.krio-cta__btn svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.krio-cta__btn:hover svg {
  transform: translateX(5px);
}

/* ══════════════════════════════════════════
   FAQ STRIP
══════════════════════════════════════════ */
.krio-faq {
  border-top: 1px solid rgba(57, 145, 56, 0.12);
  padding-top: 52px;
  opacity: 0;
  animation: krioSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.krio-faq__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.krio-faq__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.krio-faq__item {
  padding: 20px 20px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(57, 145, 56, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.krio-faq__item:hover {
  background: rgba(57, 145, 56, 0.06);
  border-color: rgba(57, 145, 56, 0.25);
  transform: translateY(-3px);
}

.krio-faq__q {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.krio-faq__q svg {
  width: 30px !important;
}

.krio-faq__a {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(214, 212, 215, 0.5);
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes krioSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes krioSlideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes krioSlideLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .krio-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .krio-visual__frame {
    max-width: 480px;
  }

  .krio-badge--top    { left: 0; }
  .krio-badge--bottom { right: 0; }

  .krio-faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .salon-krio {
    padding: 80px 0 72px;
  }

  .krio-inner {
    padding: 0 20px;
    gap: 52px;
  }

  .krio-benefits__grid {
    grid-template-columns: 1fr;
  }

  .krio-faq__grid {
    grid-template-columns: 1fr;
  }

  .krio-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SALON REZULTATI I RECENZIJE – CSS
   Estetika: krem-bela pozadina, editorial layout, zlatno-zeleni akcenti
   Svesni kontrast u odnosu na tamnu kriolipoliza sekciju
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-results {
  position: relative;
  background-color: #f9f7f4;
  padding: 124px 0 0;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.res-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 40% at 15% 10%, rgba(57, 145, 56, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(57, 145, 56, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #f9f7f4 0%, #f2efeb 100%);
  pointer-events: none;
}

.res-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.55;
  pointer-events: none;
}

/* ── Inner ──────────────────────────────────────────────────── */
.res-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.res-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: resFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.res-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #399138;
}

.res-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #399138;
  flex-shrink: 0;
}

.res-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111;
}

.res-header__title-em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.res-header__title-em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: resUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes resUnderline {
  to { transform: scaleX(1); }
}

/* ══════════════════════════════════════════
   BEFORE / AFTER BLOCK
══════════════════════════════════════════ */
.res-ba-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  animation: resFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.res-ba-disclaimer {
  font-size: 12.5px;
  font-weight: 300;
  color: #999;
  letter-spacing: 0.01em;
  line-height: 1.6;
  padding-left: 16px;
  border-left: 2px solid rgba(57, 145, 56, 0.25);
  max-width: 600px;
}

/* Grid: 3 kolone */
.res-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.res-ba-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  opacity: 0;
}

.res-ba-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10), 0 2px 8px rgba(57, 145, 56, 0.07);
  border-color: rgba(57, 145, 56, 0.2);
}

/* Card stagger */
.res-ba-card--1 { animation: resFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards; }
.res-ba-card--2 { animation: resFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.56s forwards; }
.res-ba-card--3 { animation: resFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.67s forwards; }
.res-ba-card--4 { animation: resFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.78s forwards; }
.res-ba-card--5 { animation: resFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.89s forwards; }
.res-ba-card--6 { animation: resFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.00s forwards; }

/* Split: pre / posle */
.res-ba-split {
  display: flex;
  position: relative;
  aspect-ratio: 4 / 3;
}

.res-ba-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.res-ba-side--before {
  background: linear-gradient(135deg, #e8e4de 0%, #ddd8d1 100%);
}

.res-ba-side--after {
  background: linear-gradient(135deg, #e2ede2 0%, #d0e6d0 100%);
}

/* Placeholder ikona (vidljiva samo dok nema prave slike) */
.res-ba-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kada dodaš pravu sliku:
   <div class="res-ba-side--before" style="background-image:url('pre.jpg');background-size:cover;background-position:center">
   Ukloni .res-ba-img-placeholder */

.res-ba-side__label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Central divider */
.res-ba-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ffffff;
  z-index: 3;
}

/* Card footer */
.res-ba-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.res-ba-card__tag {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.01em;
}

.res-ba-card__sessions {
  font-size: 11px;
  font-weight: 400;
  color: #399138;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   SECTION DIVIDER
══════════════════════════════════════════ */
.res-section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.res-section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(57, 145, 56, 0.18), transparent);
}

.res-section-divider__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(57, 145, 56, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 145, 56, 0.04);
}

/* ══════════════════════════════════════════
   REVIEWS BLOCK
══════════════════════════════════════════ */
.res-reviews-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  animation: resFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.res-reviews-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.res-reviews-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #111;
  line-height: 1.1;
}

.res-reviews-sub {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #777;
  max-width: 540px;
}

/* Stars trust strip */
.res-stars-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.res-stars {
  display: flex;
  gap: 2px;
}

.res-stars-text {
  font-size: 12.5px;
  font-weight: 500;
  color: #333;
}

.res-stars-sep {
  color: #ccc;
  font-size: 12px;
}

.res-stars-google {
  font-size: 12px;
  font-weight: 400;
  color: #4285F4;
}

/* Trustindex wrapper */
.res-trustindex-wrap {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.04em;
  /* Trustindex plugin se oslanja na sopstvene stilove —
     ovaj wrapper daje vizuelni framing */
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.res-cta {
  position: relative;
  background: linear-gradient(145deg, #0d1f0f 0%, #091408 100%);
  border-radius: 24px 24px 0 0;
  padding: 72px 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

.res-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.res-cta__question {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
}

.res-cta__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.res-cta__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.5);
  line-height: 1.65;
}

.res-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 15px 36px 15px 40px;
  background: linear-gradient(135deg, #399138 0%, #096626 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 28px rgba(57, 145, 56, 0.4);
  align-self: flex-start;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.res-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.res-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(57, 145, 56, 0.55), 0 0 0 4px rgba(57, 145, 56, 0.12);
}

.res-cta__btn:hover::before { opacity: 1; }

.res-cta__btn svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.res-cta__btn:hover svg {
  transform: translateX(5px);
}

/* CTA decorative rings */
.res-cta__deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  pointer-events: none;
  z-index: 1;
}

.res-cta__deco-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(57, 145, 56, 0.1);
}

.res-cta__deco-ring--1 { width: 200px; height: 200px; }
.res-cta__deco-ring--2 { width: 290px; height: 290px; border-color: rgba(57, 145, 56, 0.06); }
.res-cta__deco-ring--3 { width: 380px; height: 380px; border-color: rgba(57, 145, 56, 0.03); }

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes resFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .res-ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .res-cta {
    padding: 56px 40px;
  }
}

@media (max-width: 640px) {
  .salon-results {
    padding: 80px 0 0;
  }

  .res-inner {
    padding: 0 20px;
    gap: 48px;
  }

  .res-ba-grid {
    grid-template-columns: 1fr;
  }

  .res-cta {
    padding: 48px 28px 52px;
    border-radius: 16px 16px 0 0;
  }

  .res-cta__deco {
    display: none;
  }

  .res-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SALON PROCES – CSS
   Estetika: deep forest-dark, horizontalni timeline, magazinski
   Namerno drugačije od svih prethodnih sekcija —
   vertikalni ritam simetričan, konektor linija je "živa"
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-process {
  position: relative;
  background-color: #080f09;
  padding: 124px 0 116px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.proc-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(57, 145, 56, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0%   40%, rgba(9,  102,  38, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(57, 145, 56, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #080f09 0%, #0b1a0c 60%, #070d08 100%);
  pointer-events: none;
}

.proc-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.35;
  pointer-events: none;
}

/* Subtle horizontal stripes texture */
.proc-bg-line {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 80px,
    rgba(57, 145, 56, 0.02) 80px,
    rgba(57, 145, 56, 0.02) 81px
  );
  pointer-events: none;
}

/* ── Inner ──────────────────────────────────────────────────── */
.proc-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.proc-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  opacity: 0;
  animation: procFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.proc-header__tag {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proc-tag-line {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(57, 145, 56, 0.4);
}

.proc-tag-text {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.7);
}

.proc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.proc-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.proc-title__em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: procUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes procUnderline {
  to { transform: scaleX(1); }
}

/* ══════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════ */
.proc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  opacity: 0;
  animation: procFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* ── Connector: hidden — replaced by per-step pseudo-elements ── */
.proc-connector {
  display: none;
}

/* ── Each step ───────────────────────────────────────────────── */
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}

/* Step top: node + connector lines */
.proc-step__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

/*
  Leva linija: od desne ivice LEVOG kruga do leve ivice OVOG kruga.
  Svaki step (osim prvog) crta liniju koja dolazi s leva.
  Linija je centrirana na visini kruga (56px / 2 = 28px od vrha).
  Počinje od 50% - pola širine kolone, završava na levoj ivici kruga (50% - 28px).
*/
.proc-step--2 .proc-step__top::before,
.proc-step--3 .proc-step__top::before,
.proc-step--4 .proc-step__top::before,
.proc-step--5 .proc-step__top::before {
  content: '';
  position: absolute;
  top: 28px; /* vertikalni centar kruga */
  right: calc(50% + 28px); /* počinje od leve ivice kruga */
  left: 0;                  /* ide do leve ivice kolone */
  height: 1px;
  background: rgba(57, 145, 56, 0.18);
  z-index: 0;
  pointer-events: none;
  transform-origin: left;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Desna linija: od desne ivice OVOG kruga do leve ivice SLEDEĆEG.
   Svaki step (osim poslednjeg) crta liniju koja ide desno. */
.proc-step--1 .proc-step__top::after,
.proc-step--2 .proc-step__top::after,
.proc-step--3 .proc-step__top::after,
.proc-step--4 .proc-step__top::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);  /* počinje od desne ivice kruga */
  right: 0;                 /* ide do desne ivice kolone */
  height: 1px;
  background: rgba(57, 145, 56, 0.18);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Linije postaju vidljive kada je timeline aktivan */
.proc-timeline.is-active .proc-step__top::before,
.proc-timeline.is-active .proc-step__top::after {
  opacity: 1;
}

/* Animirana zelena fill linija (desna, po stepu) */
.proc-step--1 .proc-step__top::after,
.proc-step--2 .proc-step__top::after,
.proc-step--3 .proc-step__top::after,
.proc-step--4 .proc-step__top::after {
  background: rgba(57, 145, 56, 0.18);
}

/* Zeleni fill overlay — dolazi kao zasebni span iz JS-a ako treba,
   ali base linija je dovoljna za prelepi look */

/* Node circle */
.proc-step__node {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(57, 145, 56, 0.25);
  /* Solid — linija ne prolazi kroz krug */
  background: #0f1e10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(214, 212, 215, 0.65);
  z-index: 2;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.proc-step__node--accent {
  border-color: rgba(57, 145, 56, 0.5);
  background: #152e16;
  color: #399138;
  box-shadow: 0 0 24px rgba(57, 145, 56, 0.2);
}

.proc-step__node--final {
  border-color: rgba(57, 145, 56, 0.35);
}

.proc-step:hover .proc-step__node {
  border-color: rgba(57, 145, 56, 0.6);
  background: #152918;
  color: #399138;
  box-shadow: 0 0 20px rgba(57, 145, 56, 0.18);
}

/* Step number (top-left of node) */
.proc-step__num {
  position: absolute;
  top: -8px;
  right: -8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #399138;
  background: #080f09;
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid rgba(57, 145, 56, 0.2);
  line-height: 1;
}

/* Icon inside node */
.proc-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Body text */
.proc-step__body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proc-step__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.005em;
}

.proc-step__text {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(214, 212, 215, 0.5);
}

/* Stagger each step's entrance with slight delay */
.proc-step--1 { animation-delay: 0.42s; }
.proc-step--2 { animation-delay: 0.54s; }
.proc-step--3 { animation-delay: 0.66s; }
.proc-step--4 { animation-delay: 0.78s; }
.proc-step--5 { animation-delay: 0.90s; }

.proc-step {
  opacity: 0;
  animation: procStepIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes procStepIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   TRUST NOTE
══════════════════════════════════════════ */
.proc-trust {
  max-width: 680px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  border: 1px solid rgba(57, 145, 56, 0.14);
  border-radius: 14px;
  background: rgba(57, 145, 56, 0.04);
  backdrop-filter: blur(6px);
  text-align: left;
  opacity: 0;
  animation: procFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.proc-trust__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.proc-trust__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(214, 212, 215, 0.65);
  font-style: normal;
}

.proc-trust__text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* ══════════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════════ */
.proc-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: procFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
}

.proc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px 15px 44px;
  background: linear-gradient(135deg, #399138 0%, #096626 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 28px rgba(57, 145, 56, 0.4);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.proc-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.proc-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(57, 145, 56, 0.55), 0 0 0 4px rgba(57, 145, 56, 0.12);
}

.proc-cta__btn:hover::before { opacity: 1; }

.proc-cta__btn svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.proc-cta__btn:hover svg {
  transform: translateX(5px);
}

.proc-cta__note {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(214, 212, 215, 0.3);
  text-transform: uppercase;
}

/* ── Shared keyframe ─────────────────────────────────────────── */
@keyframes procFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet: 2+3 grid — gasi SVE horizontalne pseudo linije */
@media (max-width: 1024px) {
  .proc-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }

  /* Ugasi sve apsolutno pozicionirane horizontalne linije */
  .proc-step--1 .proc-step__top::after,
  .proc-step--2 .proc-step__top::after,
  .proc-step--3 .proc-step__top::after,
  .proc-step--4 .proc-step__top::after,
  .proc-step--2 .proc-step__top::before,
  .proc-step--3 .proc-step__top::before,
  .proc-step--4 .proc-step__top::before,
  .proc-step--5 .proc-step__top::before {
    display: none;
  }
}

/* Mobile: 1 kolona, vertikalni timeline sa levom linijom */
@media (max-width: 640px) {
  .salon-process {
    padding: 80px 0 88px;
  }

  .proc-inner {
    padding: 0 20px;
    gap: 52px;
  }

  .proc-timeline {
    grid-template-columns: 1fr;
    row-gap: 0;
    /* Vertikalna leva linija kao timeline */
    border-left: 1px solid rgba(57, 145, 56, 0.2);
    padding-left: 0;
    margin-left: 28px; /* odmak od ivice ekrana */
  }

  /* Svaki step: horizontalni red — krug + tekst */
  .proc-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 36px 20px; /* padding-left daje razmak od border linije */
    width: auto;
  }

  /* Krug: fiksna širina, ne raste */
  .proc-step__top {
    flex-shrink: 0;
    width: auto;        /* ne zauzima celu širinu */
    position: relative;
  }

  /* Mali horizontalni most od border linije do kruga */
  .proc-step__top::before {
    content: '';
    position: absolute;
    top: 28px;
    left: -20px;        /* poveži sa border-left na .proc-timeline */
    width: 20px;
    height: 1px;
    background: rgba(57, 145, 56, 0.2);
    display: block;
    opacity: 1;         /* uvek vidljiv na mobu */
  }

  /* Ugasi sve ostale pseudo-elemente na mobu */
  .proc-step--1 .proc-step__top::after,
  .proc-step--2 .proc-step__top::after,
  .proc-step--3 .proc-step__top::after,
  .proc-step--4 .proc-step__top::after,
  .proc-step--2 .proc-step__top::before,
  .proc-step--3 .proc-step__top::before,
  .proc-step--4 .proc-step__top::before,
  .proc-step--5 .proc-step__top::before {
    display: none;
  }

  /* Horizontalni most ostaje samo na prvom (universal ::before) */
  .proc-step__top::before {
    display: block !important;
  }

  /* Tekst blok zauzima ostatak prostora */
  .proc-step__body {
    flex: 1;
    text-align: left;
    padding-top: 8px;
    min-width: 0; /* sprečava overflow */
  }

  .proc-step__title {
    font-size: 15px;
  }

  .proc-step__text {
    font-size: 12.5px;
  }

  .proc-trust {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .proc-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SALON O NAMA – CSS
   Estetika: toplo krem, editorijalni 2-column layout,
   "human" i luksuzan istovremeno — kontrastira tamne sekcije
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-about {
  position: relative;
  background-color: #faf8f5;
  padding: 124px 0 120px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.about-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 5%  20%, rgba(57, 145, 56, 0.055) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 95% 80%, rgba(57, 145, 56, 0.040) 0%, transparent 60%),
    linear-gradient(170deg, #faf8f5 0%, #f3f0eb 100%);
  pointer-events: none;
}

.about-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.6;
  pointer-events: none;
}

/* ── Inner: 2-column grid ────────────────────────────────────── */
.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ══════════════════════════════════════════
   VISUAL (left column)
══════════════════════════════════════════ */
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: aboutSlideRight 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

/* Main image container */
.about-visual__main {
  position: relative;
  border-radius: 20px;
  overflow: visible; /* badges can overflow */
}

.about-visual__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #e8e3db 0%, #ddd7ce 100%);
  border: 1px solid rgba(0,0,0,0.07);
}

/* Placeholder — ukloni i zameni sa <img> */
.about-visual__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-visual__placeholder p {
  font-size: 12px;
  color: rgba(0,0,0,0.25);
  letter-spacing: 0.06em;
}

/* Secondary small image */
.about-visual__secondary {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: linear-gradient(145deg, #e0dbd2 0%, #d6d0c6 100%);
  border: 1px solid rgba(0,0,0,0.06);
}

.about-visual__placeholder--sm {
  height: 100%;
}

/* ── Floating badges ─────────────────────────────────────────── */
.about-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(57, 145, 56, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  z-index: 3;
}

.about-badge--exp {
  top: 28px;
  right: -22px;
}

.about-badge--clients {
  bottom: 60px;
  left: -22px;
}

.about-badge__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #111;
  letter-spacing: -0.02em;
}

.about-badge__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   CONTENT (right column)
══════════════════════════════════════════ */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 12px;
  opacity: 0;
  animation: aboutSlideLeft 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Tag */
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #399138;
}

.about-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #399138;
  flex-shrink: 0;
}

/* Title */
.about-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #111;
  margin-top: -6px;
}

.about-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.about-title__em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: aboutUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes aboutUnderline {
  to { transform: scaleX(1); }
}

/* Body copy */
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-copy p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

.about-copy p strong {
  font-weight: 600;
  color: #222;
}

/* Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(57, 145, 56, 0.1);
  background: rgba(57, 145, 56, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.about-pillar:hover {
  border-color: rgba(57, 145, 56, 0.25);
  background: rgba(57, 145, 56, 0.06);
}

.about-pillar__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(57, 145, 56, 0.08);
  border: 1px solid rgba(57, 145, 56, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.about-pillar:hover .about-pillar__icon {
  background: rgba(57, 145, 56, 0.13);
}

.about-pillar__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.about-pillar__text strong {
  font-size: 13.5px;
  font-weight: 500;
  color: #222;
}

.about-pillar__text span {
  font-size: 12.5px;
  font-weight: 300;
  color: #888;
  line-height: 1.5;
}

/* Trust line */
.about-trust {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-trust__bar {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  min-height: 42px;
  background: linear-gradient(to bottom, #399138, rgba(57, 145, 56, 0.2));
  border-radius: 4px;
  margin-top: 2px;
}

.about-trust__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

/* Quote block */
.about-quote {
  position: relative;
  margin: 0;
  padding: 22px 26px 22px 30px;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
}

.about-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #399138, #096626);
}

.about-quote__mark {
  position: absolute;
  top: -4px;
  right: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 96px;
  font-weight: 700;
  color: rgba(57, 145, 56, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  position: relative;
  z-index: 1;
}

/* CTA */
.about-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-cta__pre {
  font-size: 13.5px;
  font-weight: 300;
  color: #888;
  font-style: italic;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px 15px 40px;
  background: linear-gradient(135deg, #399138 0%, #096626 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(57, 145, 56, 0.32);
  align-self: flex-start;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.about-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(57, 145, 56, 0.5), 0 0 0 4px rgba(57, 145, 56, 0.1);
}

.about-cta__btn:hover::before { opacity: 1; }

.about-cta__btn svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-cta__btn:hover svg {
  transform: translateX(5px);
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes aboutSlideRight {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes aboutSlideLeft {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual__main {
    max-width: 500px;
  }

  .about-badge--exp     { right: 0;   }
  .about-badge--clients { left: 0;    }

  .about-title {
    font-size: clamp(34px, 8vw, 52px);
  }
}

@media (max-width: 580px) {
  .salon-about {
    padding: 80px 0 88px;
  }

  .about-inner {
    padding: 0 20px;
    gap: 44px;
  }

  .about-visual__secondary {
    display: none;
  }

  .about-badge {
    padding: 10px 14px;
  }

  .about-badge__num {
    font-size: 22px;
  }

  .about-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SALON CTA MAIN – CSS
   Estetika: najdublji tamni ton na sajtu, centiran, ceremonijalan
   Ova sekcija mora "iskoči" — puna visina, bez distrakcija,
   sve usmeno na jedan trenutak odluke
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-cta-main {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #060d07;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  padding: 100px 32px;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.ctam-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%,  rgba(57, 145, 56, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%,  rgba(9,  102,  38, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 10%,  rgba(57, 145, 56, 0.08) 0%, transparent 55%),
    linear-gradient(160deg, #060d07 0%, #091209 50%, #050c06 100%);
  pointer-events: none;
}

.ctam-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.4;
  pointer-events: none;
}

/* ── Botanical accents ───────────────────────────────────────── */
.ctam-botanical {
  position: absolute;
  bottom: -10px;
  width: 130px;
  height: 340px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: ctamBotanical 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.ctam-botanical--left  { left: 3%; }
.ctam-botanical--right { right: 3%; }

@keyframes ctamBotanical {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Concentric rings ────────────────────────────────────────── */
.ctam-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.ctam-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(57, 145, 56, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctamRingPulse 9s ease-in-out infinite;
}

.ctam-ring--1 {
  width: 500px;
  height: 500px;
  border-color: rgba(57, 145, 56, 0.09);
  animation-delay: 0s;
}

.ctam-ring--2 {
  width: 750px;
  height: 750px;
  border-color: rgba(57, 145, 56, 0.055);
  animation-delay: 1.5s;
}

.ctam-ring--3 {
  width: 1020px;
  height: 1020px;
  border-color: rgba(57, 145, 56, 0.03);
  animation-delay: 3s;
}

@keyframes ctamRingPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}

/* ── Inner ──────────────────────────────────────────────────── */
.ctam-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Eyebrow ─────────────────────────────────────────────────── */
.ctam-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.7);
  margin-bottom: 36px;
  opacity: 0;
  animation: ctamFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.ctam-eyebrow__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(57, 145, 56, 0.5);
  flex-shrink: 0;
}

/* ── Title ───────────────────────────────────────────────────── */
.ctam-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ctam-title__line {
  display: block;
  font-size: clamp(38px, 6.5vw, 80px);
  opacity: 0;
}

.ctam-title__line--1 {
  font-size: clamp(30px, 4.5vw, 56px);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  animation: ctamFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.ctam-title__line--2 {
  animation: ctamFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.ctam-title__line--3 {
  animation: ctamFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.ctam-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.ctam-title__em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: ctamUnderline 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}

@keyframes ctamUnderline {
  to { transform: scaleX(1); }
}

/* ── Subheadline ─────────────────────────────────────────────── */
.ctam-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.72;
  color: rgba(214, 212, 215, 0.65);
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  animation: ctamFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.ctam-sub strong {
  font-weight: 500;
  color: rgba(214, 212, 215, 0.9);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ctam-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0;
  animation: ctamFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

.ctam-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease,
    border-color 0.25s ease,
    background  0.25s ease;
  position: relative;
  overflow: hidden;
}

.ctam-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.09);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ctam-btn:hover::before { opacity: 1; }

/* Primary */
.ctam-btn--primary {
  padding: 16px 36px 16px 40px;
  background: linear-gradient(135deg, #399138 0%, #096626 100%);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 4px 28px rgba(57, 145, 56, 0.45), 0 0 0 0 rgba(57, 145, 56, 0);
}

.ctam-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(57, 145, 56, 0.60), 0 0 0 5px rgba(57, 145, 56, 0.13);
}

.ctam-btn__icon {
  display: flex;
  align-items: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ctam-btn--primary:hover .ctam-btn__icon {
  transform: translateX(5px);
}

/* Ghost */
.ctam-btn--ghost {
  padding: 15px 32px;
  background: transparent;
  color: rgba(214, 212, 215, 0.75);
  border: 1px solid rgba(214, 212, 215, 0.2);
}

.ctam-btn--ghost:hover {
  border-color: rgba(57, 145, 56, 0.55);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(57, 145, 56, 0.15);
}

.ctam-btn__icon-left {
  display: flex;
  align-items: center;
  opacity: 0.7;
}

/* ── Mini trust strip ────────────────────────────────────────── */
.ctam-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
  opacity: 0;
  animation: ctamFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

.ctam-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(214, 212, 215, 0.45);
  letter-spacing: 0.02em;
}

.ctam-trust__sep {
  color: rgba(57, 145, 56, 0.35);
  font-size: 14px;
}

/* ── Response note ───────────────────────────────────────────── */
.ctam-response {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(214, 212, 215, 0.22);
  opacity: 0;
  animation: ctamFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

/* ── Shared keyframe ─────────────────────────────────────────── */
@keyframes ctamFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .salon-cta-main {
    padding: 88px 24px;
    min-height: auto;
  }

  .ctam-btns {
    flex-direction: column;
    width: 100%;
  }

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

  .ctam-botanical {
    width: 80px;
    height: 220px;
  }

  .ctam-botanical--left  { left: 0; }
  .ctam-botanical--right { right: 0; }

  .ctam-ring--1 { width: 280px;  height: 280px;  }
  .ctam-ring--2 { width: 430px;  height: 430px;  }
  .ctam-ring--3 { display: none; }
}

/* ============================================================
   SALON KONTAKT – CSS
   Estetika: topla svetla, strukturirana levo-desno,
   mapa kao dramski završni element cele stranice
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.salon-contact {
  position: relative;
  background-color: #f5f3f0;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 5%  10%, rgba(57, 145, 56, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 95% 60%, rgba(57, 145, 56, 0.04) 0%, transparent 55%),
    linear-gradient(175deg, #f5f3f0 0%, #edeae5 100%);
  pointer-events: none;
}

.contact-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.55;
  pointer-events: none;
}

/* ── Inner ──────────────────────────────────────────────────── */
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.contact-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  animation: contactFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.contact-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #399138;
}

.contact-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #399138;
  flex-shrink: 0;
}

.contact-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111;
}

.contact-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.contact-title__em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: contactUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes contactUnderline {
  to { transform: scaleX(1); }
}

/* ══════════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

/* ══════════════════════════════════════════
   CONTACT INFO (left)
══════════════════════════════════════════ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  animation: contactSlideRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.contact-info__block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.contact-info__block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(57, 145, 56, 0.15);
  background: rgba(57, 145, 56, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 15px;
  font-weight: 300;
  color: #222;
  line-height: 1.5;
  text-decoration: none;
}

.contact-info__value--link {
  transition: color 0.22s ease;
}

.contact-info__value--link:hover {
  color: #399138;
}

/* Hours grid */
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 2px;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-hours__days {
  font-size: 13.5px;
  font-weight: 300;
  color: #555;
}

.contact-hours__time {
  font-size: 13.5px;
  font-weight: 400;
  color: #222;
}

.contact-hours__row--closed .contact-hours__days {
  color: #aaa;
}

.contact-hours__time--closed {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
  font-style: italic;
}

/* Socials */
.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid rgba(57, 145, 56, 0.18);
  border-radius: 100px;
  background: rgba(57, 145, 56, 0.04);
  font-size: 12.5px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.contact-social:hover {
  border-color: rgba(57, 145, 56, 0.45);
  background: rgba(57, 145, 56, 0.08);
  color: #399138;
}

/* ══════════════════════════════════════════
   FORM (right)
══════════════════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  animation: contactSlideLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.contact-form__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #111;
  letter-spacing: -0.01em;
}

.contact-form__sub {
  font-size: 13.5px;
  font-weight: 300;
  color: #888;
  margin-top: -16px;
}

/* WPForms wrapper — override WPForms default styles */
.contact-form__wrap {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

/* WPForms field overrides */
.contact-form__wrap .wpforms-field-container,
.contact-form__wrap .wpforms-field {
  margin-bottom: 16px !important;
}

.contact-form__wrap input[type="text"],
.contact-form__wrap input[type="email"],
.contact-form__wrap input[type="tel"],
.contact-form__wrap textarea {
  width: 100% !important;
  padding: 13px 16px !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #222 !important;
  background: #faf9f7 !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
  outline: none !important;
  box-shadow: none !important;
}

.contact-form__wrap input[type="text"]:focus,
.contact-form__wrap input[type="email"]:focus,
.contact-form__wrap input[type="tel"]:focus,
.contact-form__wrap textarea:focus {
  border-color: rgba(57, 145, 56, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(57, 145, 56, 0.08) !important;
  background: #ffffff !important;
}

.contact-form__wrap textarea {
  resize: vertical !important;
  min-height: 120px !important;
}

.contact-form__wrap label {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* WPForms submit button */
.contact-form__wrap button[type="submit"],
.contact-form__wrap input[type="submit"],
.contact-form__wrap .wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 15px 32px !important;
  background: linear-gradient(135deg, #399138 0%, #096626 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  cursor: pointer !important;
  box-shadow: 0 4px 20px rgba(57, 145, 56, 0.3) !important;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease !important;
  margin-top: 6px !important;
}

.contact-form__wrap button[type="submit"]:hover,
.contact-form__wrap input[type="submit"]:hover,
.contact-form__wrap .wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(57, 145, 56, 0.45) !important;
}

/* ══════════════════════════════════════════
   FULL-WIDTH MAP
══════════════════════════════════════════ */
.contact-map {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

/* Top edge fade — blends map into section above */
.contact-map__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #f5f3f0, transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* ══════════════════════════════════════════
   SEO TEXT (diskretan vizuelno, moćan za SEO)
══════════════════════════════════════════ */
.contact-seo {
  background: #eae7e2;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.contact-seo__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-seo__text {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #aaa;
  text-align: center;
}

.contact-seo__text strong {
  font-weight: 400;
  color: #999;
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes contactFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes contactSlideRight {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes contactSlideLeft {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 580px) {
  .contact-inner {
    padding: 80px 20px 60px;
    gap: 48px;
  }

  .contact-map {
    height: 320px;
  }

  .contact-form__wrap {
    padding: 24px 20px;
  }

  .contact-seo__inner {
    padding: 0 20px;
  }
}

/* ============================================================
   SALON FOOTER – CSS
   Estetika: najdublji tamni ton, magazinski 4-column grid,
   warm green accents, clean i čitljiv tipografski ritam
   ============================================================ */

/* ── Footer root ─────────────────────────────────────────────── */

.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-builder-grid-row {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.salon-footer {
  position: relative;
  background-color: #050c06;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

/* ── Background ──────────────────────────────────────────────── */
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%,   rgba(57, 145, 56, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0%   80%,  rgba(9,  102,  38, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 20%,  rgba(57, 145, 56, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #050c06 0%, #040a05 100%);
  pointer-events: none;
}

.footer-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.3;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   TOP CTA STRIP
══════════════════════════════════════════ */
.footer-cta-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(57, 145, 56, 0.12);
  background: rgba(57, 145, 56, 0.04);
}

.footer-cta-strip__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta-strip__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-cta-strip__dot {
  margin: 6px 0px 0px 0px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #399138;
  box-shadow: 0 0 8px #399138;
  flex-shrink: 0;
  animation: footerDotBlink 2s ease-in-out infinite;
}

@keyframes footerDotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.footer-cta-strip__text {
  margin: 6px 0px 0px 0px;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.6);
  letter-spacing: 0.01em;
}

.footer-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #399138 0%, #096626 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 3px 16px rgba(57, 145, 56, 0.35);
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease;
}

.footer-cta-strip__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(57, 145, 56, 0.5);
}

.footer-cta-strip__btn svg {
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta-strip__btn:hover svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   MAIN FOOTER — 4 COLUMNS
══════════════════════════════════════════ */
.footer-main {
  position: relative;
  z-index: 2;
}

.footer-main__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 40px 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 56px;
}

/* ── Column base ─────────────────────────────────────────────── */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col__title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.8);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(57, 145, 56, 0.12);
}

/* ── Col 1: Brand ────────────────────────────────────────────── */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1;
}

.footer-logo__sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.6);
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(214, 212, 215, 0.45);
  max-width: 280px;
}

.footer-brand-desc strong {
  font-weight: 400;
  color: rgba(214, 212, 215, 0.6);
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(57, 145, 56, 0.18);
  background: rgba(57, 145, 56, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(214, 212, 215, 0.45);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.footer-social:hover {
  border-color: rgba(57, 145, 56, 0.45);
  background: rgba(57, 145, 56, 0.10);
  color: #399138;
}

/* ── Col 2 & 3: Link lists ───────────────────────────────────── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.5);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.22s ease, padding-left 0.22s ease;
  position: relative;
}

.footer-link::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #399138;
  transition: width 0.22s ease;
  flex-shrink: 0;
}

.footer-link:hover {
  color: rgba(214, 212, 215, 0.9);
}

.footer-link:hover::before {
  width: 12px;
}

.footer-link--highlight {
  color: rgba(57, 145, 56, 0.65);
}

.footer-link--highlight:hover {
  color: #399138;
}

.footer-link--cta {
  color: #399138;
  font-weight: 400;
  margin-top: 4px;
}

.footer-link--cta:hover {
  color: #5ab958;
}

/* ── Col 4: Contact ──────────────────────────────────────────── */
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.5);
  line-height: 1.55;
}

.footer-contact-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-link {
  color: rgba(214, 212, 215, 0.5);
  text-decoration: none;
  transition: color 0.22s ease;
}

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

/* Hours */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(57, 145, 56, 0.1);
}

.footer-hours__title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.5);
}

.footer-hours__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: center;
}

.footer-hours__day {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.45);
  white-space: nowrap;
}

.footer-hours__time {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(214, 212, 215, 0.6);
}

.footer-hours__day--closed {
  color: rgba(214, 212, 215, 0.25);
}

.footer-hours__time--closed {
  font-size: 11.5px;
  font-style: italic;
  color: rgba(214, 212, 215, 0.25);
}

/* ══════════════════════════════════════════
   BOTTOM BAR
══════════════════════════════════════════ */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(57, 145, 56, 0.08);
}

.footer-bottom__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* SEO sentence */
.footer-seo {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.2);
  text-align: center;
  line-height: 1.6;
}

.footer-seo strong {
  font-weight: 400;
  color: rgba(214, 212, 215, 0.28);
}

/* Copyright bar */
.footer-bottom__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copyright {
  font-size: 12px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.25);
  letter-spacing: 0.02em;
}

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

.footer-legal-sep {
  color: rgba(57, 145, 56, 0.25);
  font-size: 12px;
}

.footer-legal-link {
  font-size: 12px;
  font-weight: 300;
  color: rgba(214, 212, 215, 0.25);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-legal-link:hover {
  color: rgba(214, 212, 215, 0.6);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col--brand {
    grid-column: 1 / -1; /* full width on tablet */
  }

  .footer-brand-desc {
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .footer-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .footer-cta-strip__btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 36px;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom__inner {
    padding: 16px 20px 20px;
  }

  .footer-bottom__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ============================================================
   WPFORMS #56 – CUSTOM STYLING
   Targetira stvarne klase iz WPForms HTML outputa.
   Dodaj ovo u: Appearance → Customize → Additional CSS
   ili u globalni stylesheet.
   ============================================================ */

/* ── Reset WPForms CSS varijabli ────────────────────────────── */
#wpforms-56 {
  --wpforms-field-size-font-size:    14px;
  --wpforms-field-size-line-height:  1.5;
  --wpforms-field-size-input-height: 48px;
  --wpforms-field-size-padding-h:    16px;
  --wpforms-label-size-font-size:    12px;
  --wpforms-button-size-font-size:   14px;
  --wpforms-button-size-height:      52px;
}

/* ── Container ───────────────────────────────────────────────── */
#wpforms-56 .wpforms-container {
  background: transparent !important;
}

#wpforms-56 .wpforms-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Field container spacing ─────────────────────────────────── */
#wpforms-56 .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#wpforms-56 .wpforms-field {
  padding: 0 0 14px 0 !important;
  margin: 0 !important;
}

/* ── Labels ──────────────────────────────────────────────────── */
#wpforms-56 .wpforms-field-label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  margin-bottom: 7px !important;
  display: block !important;
}

/* Sakrij required asterisk vizuelno (ostaje za screen readere) */
#wpforms-56 .wpforms-required-label {
  color: #399138 !important;
  font-size: 14px !important;
  vertical-align: middle !important;
}

/* ── Text, Number inputi ─────────────────────────────────────── */
#wpforms-56 input[type="text"],
#wpforms-56 input[type="number"],
#wpforms-56 input[type="email"],
#wpforms-56 input[type="tel"] {
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px !important;
  background: #faf9f7 !important;
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  border-radius: 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #222 !important;
  box-shadow: none !important;
  outline: none !important;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.2s ease !important;
  -moz-appearance: textfield !important; /* ukloni strelice za number */
}

/* Ukloni browser strelice za input[type=number] */
#wpforms-56 input[type="number"]::-webkit-outer-spin-button,
#wpforms-56 input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Placeholder */
#wpforms-56 input::placeholder {
  color: #bbb !important;
  font-weight: 300 !important;
  font-size: 13.5px !important;
}

/* Focus state */
#wpforms-56 input[type="text"]:focus,
#wpforms-56 input[type="number"]:focus,
#wpforms-56 input[type="email"]:focus,
#wpforms-56 input[type="tel"]:focus {
  border-color: rgba(57, 145, 56, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(57, 145, 56, 0.08) !important;
  background: #ffffff !important;
  outline: none !important;
}

/* ── Textarea ────────────────────────────────────────────────── */
#wpforms-56 textarea {
  width: 100% !important;
  min-height: 110px !important;
  padding: 13px 16px !important;
  background: #faf9f7 !important;
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  border-radius: 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #222 !important;
  line-height: 1.6 !important;
  resize: vertical !important;
  box-shadow: none !important;
  outline: none !important;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.2s ease !important;
}

#wpforms-56 textarea::placeholder {
  color: #bbb !important;
  font-weight: 300 !important;
  font-size: 13.5px !important;
}

#wpforms-56 textarea:focus {
  border-color: rgba(57, 145, 56, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(57, 145, 56, 0.08) !important;
  background: #ffffff !important;
  outline: none !important;
}

/* ── Radio buttons — "Koji tretman vas zanima?" ──────────────── */
#wpforms-56 .wpforms-field-radio fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#wpforms-56 .wpforms-field-radio legend.wpforms-field-label {
  width: 100% !important;
  margin-bottom: 12px !important;
}

/* Grid: 2 kolone */
#wpforms-56 .wpforms-field-radio ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Poslednja stavka (neparni broj) — puna širina */
#wpforms-56 .wpforms-field-radio ul li:last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;
}

/* Svaka radio opcija — kao kartica */
#wpforms-56 .wpforms-field-radio ul li {
  position: relative !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Sakrij native radio */
#wpforms-56 .wpforms-field-radio ul li input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

/* Label kao dugme-kartica */
#wpforms-56 .wpforms-field-radio ul li label.wpforms-field-label-inline {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  padding: 10px 12px !important;
  background: #f5f3f0 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 8px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 400 !important;
  color: #555 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease !important;
  min-height: 38px !important;
  line-height: 1.3 !important;
}

#wpforms-56 .wpforms-field-radio ul li label.wpforms-field-label-inline:hover {
  border-color: rgba(57, 145, 56, 0.35) !important;
  background: rgba(57, 145, 56, 0.05) !important;
  color: #333 !important;
}

/* Čekirano stanje */
#wpforms-56 .wpforms-field-radio ul li input[type="radio"]:checked + label.wpforms-field-label-inline {
  border-color: #399138 !important;
  background: rgba(57, 145, 56, 0.09) !important;
  color: #0d3d10 !important;
  font-weight: 500 !important;
  box-shadow: inset 0 0 0 1px rgba(57, 145, 56, 0.4) !important;
}

/* ── Validation error ────────────────────────────────────────── */
#wpforms-56 .wpforms-field input.wpforms-error,
#wpforms-56 .wpforms-field textarea.wpforms-error {
  border-color: #d94040 !important;
  box-shadow: 0 0 0 3px rgba(217, 64, 64, 0.08) !important;
}

#wpforms-56 .wpforms-error-container,
#wpforms-56 label.wpforms-error {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  color: #d94040 !important;
  margin-top: 5px !important;
  display: block !important;
}

/* ── Submit container ────────────────────────────────────────── */
#wpforms-56 .wpforms-submit-container {
  margin-top: 8px !important;
  padding: 0 !important;
}

/* ── Submit dugme ────────────────────────────────────────────── */
#wpforms-56 button.wpforms-submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 52px !important;
  padding: 0 32px !important;
  background: linear-gradient(135deg, #399138 0%, #096626 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  cursor: pointer !important;
  box-shadow: 0 4px 22px rgba(57, 145, 56, 0.38) !important;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Shimmer overlay na hover */
#wpforms-56 button.wpforms-submit::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
}

#wpforms-56 button.wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(57, 145, 56, 0.52) !important;
}

#wpforms-56 button.wpforms-submit:hover::before {
  opacity: 1 !important;
}

#wpforms-56 button.wpforms-submit:active {
  transform: translateY(0) !important;
}

/* Loading spinner */
#wpforms-56 .wpforms-submit-spinner {
  filter: brightness(0) invert(1) !important;
  opacity: 0.8 !important;
}

/* ── Honeypot polje — ostaje skriveno ───────────────────────── */
#wpforms-56-field_2-container,
#wpforms-56-field_5-container {
  display: none !important;
  visibility: hidden !important;
}

/* ── Success message ─────────────────────────────────────────── */
#wpforms-56 .wpforms-confirmation-container-full,
.wpforms-confirmation-container-full {
  padding: 28px 28px !important;
  background: rgba(57, 145, 56, 0.06) !important;
  border: 1px solid rgba(57, 145, 56, 0.2) !important;
  border-radius: 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #2a5c2a !important;
  line-height: 1.65 !important;
}

/* ============================================================
   PAGE HERO – CSS (Unutrašnje stranice)
   Jedna klasa .page-hero pokriva sve unutrašnje stranice.
   Svesno drugačije od homepage hero:
   — levo poravnato (profesionalnije za inner pages)
   — kompaktno (300–420px, ne fullscreen)
   — bez botanika i koncentričnih prstenova
   — editorial linija s desne strane kao jedini dekorativni element
   ============================================================ */

/* ── Section ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-color: #080f09;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  padding: 80px 0 64px;
}

/* Minimalna varijanta (pravne stranice) — niža */
.page-hero--minimal {
  min-height: 260px;
  padding: 64px 0 52px;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.ph-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%,   rgba(57, 145, 56, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 100%,  rgba(9, 102, 38, 0.08)  0%, transparent 55%),
    linear-gradient(160deg, #080f09 0%, #0b1a0c 60%, #060d07 100%);
  pointer-events: none;
}

.ph-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.35;
  pointer-events: none;
}

/* Vertikalna dekorativna linija desno — editorial signature */
.ph-accent {
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(57, 145, 56, 0.18) 20%,
    rgba(57, 145, 56, 0.18) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* Druga, tanja linija */
.ph-accent::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 40px;
  width: 1px;
  height: 60%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(57, 145, 56, 0.07),
    transparent
  );
}

/* Minimalna varijanta nema akcentne linije */
.page-hero--minimal .ph-accent {
  display: none;
}

/* ── Inner container ─────────────────────────────────────────── */
.ph-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */
.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: phFadeRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.ph-breadcrumb__link {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(57, 145, 56, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ph-breadcrumb__link:hover {
  color: #399138;
}

.ph-breadcrumb__sep {
  font-size: 10px;
  color: rgba(214, 212, 215, 0.2);
  user-select: none;
}

.ph-breadcrumb__current {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(214, 212, 215, 0.35);
}

/* ══════════════════════════════════════════
   CONTENT BLOCK
══════════════════════════════════════════ */
.ph-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

/* ── H1 Title ────────────────────────────────────────────────── */
.ph-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  opacity: 0;
  animation: phFadeRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
}

/* Minimalna varijanta — manji naslov */
.page-hero--minimal .ph-title {
  font-size: clamp(28px, 3.8vw, 46px);
}

.ph-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.ph-title__em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: phUnderline 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes phUnderline {
  to { transform: scaleX(1); }
}

/* ── Description ─────────────────────────────────────────────── */
.ph-desc {
  font-size: clamp(13.5px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(214, 212, 215, 0.58);
  max-width: 520px;
  opacity: 0;
  animation: phFadeRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

/* ── CTA dugme ───────────────────────────────────────────────── */
.ph-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 12px 26px 12px 28px;
  background: transparent;
  border: 1px solid rgba(57, 145, 56, 0.35);
  border-radius: 100px;
  color: rgba(214, 212, 215, 0.75);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  align-self: flex-start;
  opacity: 0;
  animation: phFadeRight 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ph-cta:hover {
  border-color: rgba(57, 145, 56, 0.7);
  background: rgba(57, 145, 56, 0.08);
  color: #ffffff;
  transform: translateX(4px);
}

.ph-cta svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ph-cta:hover svg {
  transform: translateX(4px);
}

/* ── Shared keyframe ─────────────────────────────────────────── */
@keyframes phFadeRight {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════
   VARIJANTA SA SLIKOM
══════════════════════════════════════════ */
.page-hero--with-image .ph-inner {
  gap: 0;
}

.ph-body {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.page-hero--with-image .ph-content {
  flex: 1 1 0;
  max-width: 580px;
}

/* ── Slika ───────────────────────────────────────────────────── */
.ph-image {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 3 / 4;
  position: relative;
  opacity: 0;
  animation: phFadeLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.ph-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  display: block;
}

/* Suptilni overlay koji stapa sliku sa pozadinom */
.ph-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(8, 15, 9, 0.35) 0%, transparent 30%),
    linear-gradient(to bottom, transparent 70%, rgba(8, 15, 9, 0.5) 100%);
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
}

/* Tanka zelena ivica — editorialni detalj */
.ph-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 1px solid rgba(57, 145, 56, 0.18);
  z-index: 2;
  pointer-events: none;
}

@keyframes phFadeLeft {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive sa slikom ────────────────────────────────────── */
@media (max-width: 900px) {
  .ph-body {
    gap: 32px;
  }

  .ph-image {
    width: clamp(200px, 28vw, 320px);
  }
}

@media (max-width: 768px) {
  .ph-body {
    margin: 40px 0px 0px 0px;
	flex-direction: column-reverse;
    gap: 28px;
  }

  .ph-image {
    width: 100%;
    max-width: 340px;
	height: 500px;
    aspect-ratio: 4 / 3;
    align-self: center;
  }

  .page-hero--with-image .ph-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ph-image {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
    padding: 72px 0 52px;
  }

  .page-hero--minimal {
    min-height: 220px;
    padding: 56px 0 44px;
  }

  .ph-accent {
    right: 5%;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .ph-inner {
    padding: 0 20px;
  }

  .ph-content {
    max-width: 100%;
  }

  .ph-cta {
    width: 100%;
    justify-content: center;
  }

  .ph-accent {
    display: none;
  }
}

/* ============================================================
   ABOUT PAGE — SEKCIJA 1: O SALONU
   Estetika: topla krem pozadina, editorijalni 2-column,
   tekst levo + asimetrična vizualna kompozicija desno
   ============================================================ */

.about-salon {
  position: relative;
  background-color: #f8f6f3;
  padding: 100px 0 108px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

.as-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 100% 0%,   rgba(57, 145, 56, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 0%   100%,  rgba(57, 145, 56, 0.05) 0%, transparent 55%),
    linear-gradient(170deg, #f8f6f3 0%, #f0ede8 100%);
  pointer-events: none;
}

.as-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.55;
  pointer-events: none;
}

/* ── 2-column grid ───────────────────────────────────────────── */
.as-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ══ TEXT (levo) ══════════════════════════════════════════════ */
.as-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  animation: asFadeRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.as-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #399138;
}

.as-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #399138;
  flex-shrink: 0;
}

.as-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111;
  margin-top: -8px;
}

.as-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.as-title__em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: asUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes asUnderline {
  to { transform: scaleX(1); }
}

.as-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.as-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: #5a5a5a;
}

.as-body p strong {
  font-weight: 500;
  color: #222;
}

/* Pillars */
.as-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  border-left: 2px solid rgba(57, 145, 56, 0.3);
  background: rgba(57, 145, 56, 0.04);
  border-radius: 0 10px 10px 0;
}

.as-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 300;
  color: #444;
  line-height: 1.4;
}

.as-pillar svg { flex-shrink: 0; }

/* CTA */
.as-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px 13px 34px;
  background: linear-gradient(135deg, #399138 0%, #096626 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(57, 145, 56, 0.3);
  align-self: flex-start;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.as-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.as-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(57, 145, 56, 0.45); }
.as-cta:hover::before { opacity: 1; }
.as-cta svg { transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.as-cta:hover svg { transform: translateX(4px); }

/* ══ VISUAL (desno) ═══════════════════════════════════════════ */
.as-visual {
  position: relative;
  /* extra padding-bottom za sekundarnu sliku koja viri dole */
  padding-bottom: 40px;
  padding-right: 20px;
  opacity: 0;
  animation: asFadeLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Glavna slika */
.as-visual__main {
  position: relative;
  border-radius: 18px;
  overflow: visible;
}

.as-visual__main > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.as-visual__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #e6e2db 0%, #dad5cc 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.as-visual__placeholder p {
  font-size: 11.5px;
  color: rgba(0,0,0,0.22);
  letter-spacing: 0.06em;
}

/* Sekundarna slika — preklapa se dole desno */
.as-visual__secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #f8f6f3;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.as-visual__secondary > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 11px;
}

.as-visual__placeholder--sm {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #dde8dd 0%, #d2e2d2 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dekorativni kvadrat iza slike */
.as-visual__deco {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
  border: 1.5px solid rgba(57, 145, 56, 0.18);
  border-radius: 6px;
  z-index: 0;
  pointer-events: none;
}

/* ── Floating stat badges ────────────────────────────────────── */
.as-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(57, 145, 56, 0.14);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 5;
}

/* Levi badge — gore levo od glavne slike */
.as-stat--tl {
  top: 28px;
  left: -22px;
}

/* Desni badge — dole levo od sekundarne slike */
.as-stat--br {
  bottom: 14px;
  left: 112px;
}

.as-stat__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #111;
  letter-spacing: -0.02em;
}

.as-stat__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes asFadeRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes asFadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .as-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* Slika ide gore na tabletu */
  .as-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .as-stat--tl { left: 0; }
  .as-stat--br { left: 0; }
}

@media (max-width: 560px) {
  .about-salon { padding: 72px 0 80px; }
  .as-inner { padding: 0 20px; gap: 44px; }

  .as-visual__secondary {
    right: -10px;
    bottom: 0;
  }

  .as-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ABOUT PAGE — SEKCIJA 2: NAŠ PRISTUP
   Estetika: tamna (kontrastira s light S1), editorijalna,
   tekst levo + 3 vertikalne kartice desno
   ============================================================ */

.about-approach {
  position: relative;
  background-color: #080f09;
  padding: 108px 0 108px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Backgrounds ─────────────────────────────────────────────── */
.ap-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 0%   50%, rgba(9,  102, 38, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(57, 145, 56, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(57, 145, 56, 0.07) 0%, transparent 55%),
    linear-gradient(160deg, #080f09 0%, #0b1a0c 55%, #070d08 100%);
  pointer-events: none;
}

.ap-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.35;
  pointer-events: none;
}

/* Dekorativna vertikalna linija s leve strane */
.ap-side-line {
  position: absolute;
  left: 6%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(57, 145, 56, 0.14) 20%,
    rgba(57, 145, 56, 0.14) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Inner ──────────────────────────────────────────────────── */
.ap-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ══ HEADER ══════════════════════════════════════════════════ */
.ap-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: apFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.ap-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(57, 145, 56, 0.75);
}

.ap-eyebrow__line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(57, 145, 56, 0.4);
}

.ap-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 620px;
}

.ap-title__em {
  font-style: italic;
  font-weight: 400;
  color: #399138;
  position: relative;
  display: inline-block;
}

.ap-title__em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #399138;
  transform: scaleX(0);
  transform-origin: left;
  animation: apUnderline 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

@keyframes apUnderline {
  to { transform: scaleX(1); }
}

/* ══ SPLIT: tekst + kartice ══════════════════════════════════ */
.ap-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── Tekst levo ──────────────────────────────────────────────── */
.ap-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  animation: apFadeRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.ap-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(214, 212, 215, 0.62);
}

.ap-text p strong {
  font-weight: 500;
  color: rgba(214, 212, 215, 0.9);
}

/* Quote */
.ap-quote {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 24px 20px 28px;
  background: rgba(57, 145, 56, 0.06);
  border-left: 2px solid #399138;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}

.ap-quote__mark {
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(57, 145, 56, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ap-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

/* ── Kartice desno ───────────────────────────────────────────── */
.ap-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: apFadeLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.ap-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 8px;
  padding: 24px 24px 24px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(57, 145, 56, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background   0.3s ease,
    transform    0.32s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.ap-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #399138, #096626);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ap-card:hover {
  border-color: rgba(57, 145, 56, 0.3);
  background: rgba(57, 145, 56, 0.05);
  transform: translateX(6px);
}

.ap-card:hover::after {
  transform: scaleX(1);
}

/* Step broj — gornji desni ugao */
.ap-card__step {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(57, 145, 56, 0.3);
}

/* Ikona — leva kolona, oba reda */
.ap-card__icon {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(57, 145, 56, 0.08);
  border: 1px solid rgba(57, 145, 56, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #399138;
  flex-shrink: 0;
  align-self: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.ap-card:hover .ap-card__icon {
  background: rgba(57, 145, 56, 0.14);
  border-color: rgba(57, 145, 56, 0.35);
}

/* Naslov */
.ap-card__title {
  grid-column: 2;
  grid-row: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.9);
  align-self: end;
}

/* Tekst */
.ap-card__text {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(214, 212, 215, 0.5);
  align-self: start;
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes apFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes apFadeRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes apFadeLeft {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ap-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ap-side-line { display: none; }
}

@media (max-width: 560px) {
  .about-approach { padding: 80px 0 88px; }
  .ap-inner { padding: 0 20px; gap: 48px; }

  .ap-card {
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
  }

  .ap-card__icon {
    width: 42px;
    height: 42px;
  }

  .ap-card:hover { transform: none; }
}

/* ============================================================
   POPUP
   ============================================================ */

/* ── Floating Side Buttons ── */
.side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.side-btn {
  display: flex;
  align-items: center;
  background: var(--c-white) !important;
  border: 1px solid var(--c-silver);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  text-decoration: none;
  padding: 0;
  overflow: hidden;
}

.side-btn:hover {
  background: var(--c-offwhite) !important;
}

.btn-icon {
  width: 44px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-promo .btn-icon { background: var(--c-green); }
.btn-hyper .btn-icon { background: var(--c-green-dark); }

.btn-label {
  padding: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  transition: max-width 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.side-btn:hover .btn-label,
.side-btn.show-label .btn-label {
  max-width: 180px;
  padding: 0 14px 0 8px;
  opacity: 1;
}

/* ── Popup ── */
.promo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 20, 5, 0.6);
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.promo-overlay.open { display: flex; }

.promo-popup {
  background: var(--c-white);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  padding: 32px 24px 24px;
  position: relative;
  margin: auto;
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--c-text-muted);
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 1;
}

.promo-close:hover { background: var(--c-offwhite); }

.promo-popup h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.25;
  margin-bottom: 10px;
}

.promo-popup p {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 6px;
}

.price-box {
  background: var(--c-offwhite);
  border-left: 3px solid var(--c-green);
  padding: 9px 12px;
  margin: 12px 0;
  border-radius: 0 8px 8px 0;
}

.price-box .old { font-size: 12px; color: var(--c-text-muted); text-decoration: line-through; }
.price-box .new { font-size: 20px; font-weight: 700; color: var(--c-green-dark); }
.price-box .sub { font-size: 12px; color: var(--c-text-muted); margin-left: 4px; }

.bonus-title { font-size: 13px; font-weight: 600; color: var(--c-text); margin: 12px 0 5px; }

.bonus-list { padding: 0; list-style: none; margin-bottom: 12px; }
.bonus-list li {
  font-size: 13px;
  color: var(--c-text);
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.5;
}
.bonus-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-green);
}
.bonus-list li::after {
  content: '✓';
  position: absolute;
  left: 1px; top: 4px;
  font-size: 7px;
  color: #fff;
  font-weight: 700;
}

.popup-note { font-size: 12px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 14px; }

.cta-main {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--c-green);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cta-main:hover { background: var(--c-green-dark); color: #fff; }

.cta-row { display: flex; gap: 7px; margin-bottom: 12px; }
.cta-sec {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid var(--c-green);
  color: var(--c-green-dark);
  background: #fff;
}
.cta-sec:hover { background: var(--c-offwhite); color: var(--c-green-dark); }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  padding-top: 10px;
  border-top: 1px solid var(--c-silver);
}
.trust-item { font-size: 11.5px; color: var(--c-text-muted); display: flex; align-items: center; gap: 4px; }
.trust-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: #fff; font-weight: 700; flex-shrink: 0;
}

/* ── Mobilni ── */
@media (max-width: 480px) {
  .btn-label { font-size: 10.5px; padding: 0 10px 0 6px; }
  .btn-icon { width: 40px; height: 48px; }
  .promo-popup { padding: 28px 16px 20px; }
  .promo-popup h2 { font-size: 19px; }
}
