/* ==========================================================================
   REVIGO - Premium Hotel Revenue Partner
   Editorial Design System - Multi-page
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --revigo-green: #59a52c;
  --revigo-green-light: #6fc23a;
  --revigo-green-dark: #478a22;
  --revigo-dark: #222831;
  --revigo-charcoal: #1a1f27;
  --revigo-slate: #393e46;
  
  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --cream: #f5f3ef;
  --light-gray: #e9ecef;
  --mid-gray: #6c757d;
  --text-gray: #495057;
  
  /* Typography */
  --font-heading: 'Manrope', 'Signika', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;
  
  /* Layout */
  --max-width: 1400px;
  --content-width: 900px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--revigo-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--revigo-dark);
}

.display-xl {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
}

.display-md {
  font-size: clamp(2rem, 4vw, 3rem);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--revigo-green);
}

.text-balance {
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--content-width);
}

.section {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.section--compact {
  padding: var(--space-2xl) 0;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION - FIXED
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--revigo-dark);
  transition: var(--transition-base);
}

.site-header.scrolled {
  background: var(--revigo-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Light header variant for inner pages */
.site-header--light {
  background: var(--white) !important;
  border-bottom: 1px solid var(--light-gray);
}

.site-header--light.scrolled {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  position: relative;
  z-index: 1;
}

/* Ensure header covers full width with solid background */
.site-header .container {
  position: relative;
}

.logo {
  height: 36px;
  width: auto;
}

.logo-dark {
  display: none;
}

.logo-light {
  display: block;
}

.site-header--light .logo-dark {
  display: block;
}

.site-header--light .logo-light {
  display: none;
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
}

.site-header--light .nav-link {
  color: var(--revigo-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--revigo-green);
  transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--revigo-green-light);
}

.site-header--light .nav-link:hover {
  color: var(--revigo-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: var(--transition-base);
}

.site-header--light .lang-toggle {
  color: var(--revigo-dark);
  border-color: var(--light-gray);
}

.lang-toggle:hover {
  border-color: var(--revigo-green);
  color: var(--revigo-green);
  background: rgba(89, 165, 44, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition-base);
}

.site-header--light .menu-toggle span {
  background: var(--revigo-dark);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--revigo-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
  z-index: 999;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  color: var(--white);
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-base);
}

.btn--primary {
  background: var(--revigo-green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--revigo-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(89, 165, 44, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--revigo-dark);
  border: 2px solid var(--revigo-dark);
}

.btn--outline:hover {
  background: var(--revigo-dark);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--revigo-dark);
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--revigo-green);
  padding: 0.5rem 0;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--transition-base);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   PAGE HERO - For inner pages
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: var(--header-height);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
}

.page-hero--how {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .page-hero--how,
  .page-hero--who {
    background: var(--white);
  }


  .page-hero--how .page-hero-content,
  .page-hero--who .page-hero-content {
    padding: 60px var(--space-md);
  }
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 400px;
}

@media (min-width: 1024px) {
  .page-hero-inner {
    flex-direction: row;
    min-height: 450px;
  }
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--revigo-dark);
}

@media (min-width: 1024px) {
  .page-hero-content {
    flex: 0 0 55%;
    padding: var(--space-2xl);
    padding-left: max(var(--space-md), calc((100vw - var(--max-width)) / 2 + var(--space-md)));
    padding-right: var(--space-2xl);
  }
}

.page-hero .overline {
  margin-bottom: var(--space-sm);
  color: var(--revigo-green);
}

.page-hero h1 {
  margin-bottom: var(--space-md);
  max-width: 600px;
  color: var(--white);
}

.page-hero .lead {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero-image {
  display: none;
  position: relative;
  background: var(--cream);
  flex: 0 0 45%;
}

@media (min-width: 1024px) {
  .page-hero-image {
    display: block;
  }
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   HERO SECTION - Homepage
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero-main {
    flex-direction: row;
  }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 80px) var(--space-md) 80px;
  background: var(--revigo-dark);
  position: relative;
}

@media (max-width: 767px) {
  .hero-content {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    flex: 0 0 55%;
    padding: calc(var(--header-height) + 80px) var(--space-2xl) 80px;
    padding-left: calc((100vw - var(--max-width)) / 2 + var(--space-md));
  }
}

.hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(89, 165, 44, 0.3), transparent);
}

@media (max-width: 767px) {
  .hero-content::after {
    display: none;
  }

  .problems.section {
    padding-top: 80px;
  }
}

.hero-text {
  max-width: 600px;
}

.hero-overline {
  margin-bottom: var(--space-md);
  color: var(--revigo-green);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero-title .highlight {
  color: var(--revigo-green);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-visual {
  display: none;
  position: relative;
  background: var(--cream);
}

@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
    flex: 0 0 45%;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
  }
}

.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image--overlay {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 200px;
  height: 260px;
  z-index: 2;
  border: 4px solid var(--white);
}

.hero-stat {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--revigo-green);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--mid-gray);
  margin-top: 0.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
  display: none;
}

.scroll-indicator span {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--revigo-green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   HOMEPAGE SECTIONS
   -------------------------------------------------------------------------- */

/* Problems Section */
.problems {
  background: var(--white);
  position: relative;
}

.problems::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--light-gray), transparent);
}

.problems-intro {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.problems-list {
  counter-reset: problem-counter;
}

.problem-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--light-gray);
  counter-increment: problem-counter;
}

@media (min-width: 768px) {
  .problem-item {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-xl);
  }
}

.problem-item::before {
  content: counter(problem-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: #ced6c3;
  line-height: 1;
  min-width: 80px;
}

.problem-content {
  flex: 1;
}

.problem-content p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--revigo-dark);
}

.problem-result {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--revigo-dark);
  border-radius: 4px;
}

.problem-result p {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
}

.problem-result .highlight {
  color: var(--revigo-green);
}

/* Solution Section */
.solution {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(89, 165, 44, 0.05) 100%);
  pointer-events: none;
}

.solution-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .solution-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
  }
}

.solution-content {
  order: 2;
}

@media (min-width: 1024px) {
  .solution-content {
    order: 1;
  }
}

.solution-title {
  margin-bottom: var(--space-lg);
}

.solution-lead {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: var(--space-xl);
}

.solution-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.pillar {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.pillar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--revigo-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
}

.pillar-text h3,
.pillar-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.pillar-text p {
  color: var(--mid-gray);
  font-size: 0.9375rem;
}

.solution-goal {
  margin-top: var(--space-xl);
  padding-left: var(--space-lg);
  border-left: 3px solid var(--revigo-green);
}

.solution-goal p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--revigo-dark);
}

.solution-visual {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .solution-visual {
    order: 2;
  }
}

.solution-image-frame {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--revigo-dark);
  border-radius: 4px;
  overflow: hidden;
}

.solution-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.solution-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--revigo-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* CTA Banner */
.cta-banner {
  background: var(--revigo-dark);
  padding: var(--space-2xl) 0;
}

.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .cta-banner .container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-banner .highlight {
  color: var(--revigo-green);
}

/* Services section spacing override */
.services-section {
  padding: 60px 0;
}

@media (max-width: 767px) {
  .services-section {
    padding-top: 60px;
  }
}

/* Audience section padding tweak (Za koga) */
.audience-section {
  padding-top: 80px;
  padding-bottom: 60px;
  background: var(--white);
}

/* Methodology section padding top tweak (Kako radimo) */
.methodology-section {
  padding-top: 80px;
}

@media (max-width: 767px) {
  .methodology-section {
    padding-top: 0px;
  }
}

/* Homepage preview cards */
.preview-section {
  background: var(--white);
}

.preview-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .preview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.preview-card {
  padding: var(--space-xl);
  background: var(--off-white);
  border-radius: 4px;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.preview-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.preview-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--revigo-green);
}

.preview-card-icon svg {
  width: 100%;
  height: 100%;
}

.preview-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.preview-card p {
  color: var(--mid-gray);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  flex: 1;
}

.preview-card .btn--ghost {
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   SERVICES PAGE
   -------------------------------------------------------------------------- */
.services-intro {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.service-block {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--light-gray);
}

@media (min-width: 768px) {
  .service-block {
    grid-template-columns: 300px 1fr;
    gap: var(--space-3xl);
  }
}

.service-block:last-child {
  border-bottom: none;
}

.service-block-header {
  position: relative;
}

.service-block-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 600;
  color: #ced6c3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.service-block-header h2 {
  font-size: 1.5rem;
}

.service-block-content p {
  font-size: 1.0625rem;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
}

.service-list-detailed {
  display: grid;
  gap: var(--space-sm);
}

.service-list-detailed li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.service-list-detailed li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--revigo-green);
  border-radius: 50%;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   METHODOLOGY PAGE
   -------------------------------------------------------------------------- */
.methodology-intro {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.methodology-acronym {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 767px) {
  .methodology-acronym {
    margin-bottom: 0;
  }
}

.acronym-letter {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  background: var(--revigo-dark);
  color: var(--white);
  border-radius: 4px;
}

.acronym-letter:nth-child(4) {
  background: var(--revigo-green);
}

.method-block {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--light-gray);
}

@media (min-width: 768px) {
  .method-block {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
  }
  
  .method-block:nth-child(even) .method-block-content {
    order: 2;
  }
  
  .method-block:nth-child(even) .method-block-visual {
    order: 1;
  }
}

.method-block:last-child {
  border-bottom: none;
}

.method-block-letter {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 600;
  color: var(--light-gray);
  line-height: 1;
}

.method-block-content h2 {
  margin-bottom: var(--space-sm);
}

.method-block-content h3 {
  color: var(--revigo-green);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.method-block-content > p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
}

.method-details {
  display: grid;
  gap: var(--space-xs);
}

.method-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text-gray);
}

.method-details li::before {
  content: '—';
  color: var(--revigo-green);
  font-weight: 600;
}

.method-block-visual {
  position: relative;
}

.method-block-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Promise block */
.promise-block {
  background: var(--revigo-dark);
  padding: var(--space-2xl);
  border-radius: 4px;
  margin-top: var(--space-2xl);
}

.promise-block p {
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.promise-block .highlight {
  color: var(--revigo-green);
}

/* --------------------------------------------------------------------------
   AUDIENCE PAGE (Za koga)
   -------------------------------------------------------------------------- */
.audience-intro {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.audience-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-card {
  background: var(--off-white);
  padding: var(--space-xl);
  border-radius: 4px;
  border-left: 4px solid var(--revigo-green);
  transition: var(--transition-base);
}

.audience-card:hover {
  transform: translateX(4px);
  background: var(--cream);
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.audience-card p {
  color: var(--text-gray);
}

/* Recognition / Pain points */
.recognition-section {
  background: var(--cream);
  padding: 40px 0;
  margin-top: 0;
}

.recognition-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.recognition-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .recognition-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recognition-item {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: var(--transition-base);
}

.recognition-item:hover {
  border-left-color: var(--revigo-green);
  transform: translateX(4px);
}

.recognition-item p {
  font-size: 1.0625rem;
  color: var(--revigo-dark);
  font-style: italic;
}

.recognition-item p::before {
  content: '"';
  color: var(--revigo-green);
  font-size: 1.5rem;
  font-style: normal;
  margin-right: 0.25rem;
}

.recognition-footer {
  text-align: center;
  margin-top: var(--space-2xl);
}

.recognition-footer p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--revigo-dark);
  margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info .lead {
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-gray);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.0625rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--revigo-green);
  flex-shrink: 0;
}

.contact-form-wrapper {
  background: var(--off-white);
  padding: var(--space-xl);
  border-radius: 4px;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--revigo-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  background: var(--white);
  transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--revigo-green);
  box-shadow: 0 0 0 3px rgba(89, 165, 44, 0.1);
}

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

.form-submit {
  width: 100%;
  margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--revigo-dark);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-main {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr auto auto;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 36px;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: var(--space-2xl);
}

.footer-nav-group h4,
.footer-nav-title {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.footer-nav-group a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.footer-nav-group a:hover {
  color: var(--revigo-green);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-credit {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-credit {
    margin-left: auto;
  }
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}

.footer-credit a:hover {
  color: var(--white);
}

.footer-credit-logo {
  display: inline;
  height: 0.875em;
  width: auto;
  vertical-align: middle;
  margin-left: 0.25rem;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-green { color: var(--revigo-green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

