/* ============================================
   ROZUMNÁ VOĽBA - MAIN STYLESHEET
   Claymorphism Design System
   ============================================ */


:root {
  --primary: #5B4FCF;
  --primary-light: #7B6FE8;
  --primary-pale: #EAE8FA;
  --secondary: #FF8C69;
  --secondary-light: #FFB09A;
  --secondary-pale: #FFF0EB;
  --accent: #4ECDC4;
  --accent-pale: #E8FAF9;
  --warm: #FFD166;
  --warm-pale: #FFF8E6;
  --bg: #F0EEF8;
  --bg-alt: #E8E4F8;
  --surface-color: #FAFAFE;
  --text-dark: #1A1730;
  --text-mid: #4A4568;
  --text-soft: #8882A8;
  --nav-bg: #1A1730;

  --shadow-clay:
    6px 6px 16px rgba(91,79,207,0.18),
    -4px -4px 12px rgba(255,255,255,0.9),
    inset 2px 2px 6px rgba(255,255,255,0.65),
    inset -2px -2px 6px rgba(91,79,207,0.10);
  --shadow-clay-hover:
    8px 8px 22px rgba(91,79,207,0.24),
    -6px -6px 16px rgba(255,255,255,0.95),
    inset 3px 3px 8px rgba(255,255,255,0.7),
    inset -3px -3px 8px rgba(91,79,207,0.14);
  --shadow-card:
    8px 8px 24px rgba(91,79,207,0.14),
    -6px -6px 18px rgba(255,255,255,0.9);
  --shadow-nav: 0 2px 12px rgba(0,0,0,0.18);
  --shadow-nav-scrolled: 0 4px 24px rgba(0,0,0,0.28);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  --transition-fast: 0.2s ease;
  --transition-mid: 0.35s ease;
  --transition-slow: 0.5s ease;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}


.text-display {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.text-body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
}

.text-caption {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.5;
}


.surface {
  background: var(--surface-color);
  border-radius: var(--radius-xl);
}

.surface-raised {
  background: linear-gradient(145deg, #FFFFFF 0%, #F5F3FF 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-clay);
  transition: box-shadow var(--transition-mid), transform var(--transition-mid);
}

.surface-raised:hover {
  box-shadow: var(--shadow-clay-hover);
  transform: translateY(-3px);
}

.surface-inset {
  background: linear-gradient(145deg, #EAE8F5 0%, #F0EEF8 100%);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 4px 4px 12px rgba(91,79,207,0.12),
    inset -4px -4px 12px rgba(255,255,255,0.8);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

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

.space-card {
  padding: var(--space-lg);
}


nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  padding: 0 clamp(1rem, 4vw, 3rem);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.3s ease;
}

nav.site-nav.scrolled {
  box-shadow: var(--shadow-nav-scrolled);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

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

.nav-cta {
  background: var(--secondary) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255,140,105,0.45) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-menu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 68px;
  perspective: 1200px;
}

.mobile-menu-wrapper.is-open {
  display: block;
  height: auto;
  min-height: 100vh;
  background: rgba(26,23,48,0.6);
  backdrop-filter: blur(4px);
}

.mobile-menu-flipper {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 68px;
}

.mobile-menu-wrapper.is-open .mobile-menu-flipper {
  transform: rotateX(180deg);
}

.mobile-menu-front,
.mobile-menu-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mobile-menu-front {
  background: var(--nav-bg);
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 68px;
  display: flex;
  align-items: center;
}

.mobile-menu-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: rotateX(180deg);
  background: var(--nav-bg);
  padding: 2rem clamp(1rem, 4vw, 2rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
}

.mobile-nav-links li a {
  display: block;
  padding: 1rem 0;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-links li a:hover {
  color: var(--secondary);
  padding-left: 0.5rem;
}

.mobile-menu-close-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.875rem 2rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  width: fit-content;
  transition: background var(--transition-fast);
}

.mobile-menu-close-btn:hover {
  background: var(--secondary-light);
}


.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(91,79,207,0.35), 0 2px 8px rgba(91,79,207,0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}

.action-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(91,79,207,0.45), 0 4px 12px rgba(91,79,207,0.25);
}

.action-primary--light {
  background: linear-gradient(135deg, #fff 0%, #F5F3FF 100%);
  color: var(--primary) !important;
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}

.action-primary--light:hover {
  color: var(--primary) !important;
  box-shadow: 0 8px 28px rgba(255,255,255,0.4);
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: all var(--transition-fast);
}

.action-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.action-ghost--dark {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.action-ghost--dark:hover {
  background: var(--text-dark);
  color: #fff;
}


.section-label {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-label--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}


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

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: 1.1rem;
  margin-top: var(--space-sm);
}

.section-heading--light {
  color: #fff;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(1rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #F0EEF8 0%, #E8E4F8 40%, #F5F0FF 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.hero-blob-1 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, var(--primary-light), transparent);
  top: -10%;
  right: -5%;
  animation: float1 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(circle, var(--secondary), transparent);
  bottom: 5%;
  left: 5%;
  animation: float2 10s ease-in-out infinite;
}

.hero-blob-3 {
  width: clamp(150px, 20vw, 280px);
  height: clamp(150px, 20vw, 280px);
  background: radial-gradient(circle, var(--accent), transparent);
  top: 30%;
  left: 35%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.05); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(0.95); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 15px) scale(1.08); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-color);
  box-shadow: var(--shadow-clay);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  width: fit-content;
}

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

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}


.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
}

.hero-stack-card {
  position: absolute;
  border-radius: var(--radius-xl);
}

.hero-stack-card--back {
  inset: 0;
  background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale));
  transform: rotate(6deg) translateY(12px);
  box-shadow: 4px 4px 20px rgba(91,79,207,0.15);
}

.hero-stack-card--mid {
  inset: 0;
  background: linear-gradient(135deg, var(--secondary-pale), var(--warm-pale));
  transform: rotate(3deg) translateY(6px);
  box-shadow: 4px 4px 20px rgba(255,140,105,0.15);
}

.hero-stack-card--front {
  inset: 0;
  overflow: hidden;
  box-shadow: var(--shadow-clay);
}

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

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
  background: var(--bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.intro-text .section-heading {
  text-align: left;
  margin-bottom: 0;
}

.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.intro-card {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intro-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.intro-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.intro-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow:
    3px 3px 8px rgba(91,79,207,0.15),
    -2px -2px 6px rgba(255,255,255,0.9),
    inset 1px 1px 3px rgba(255,255,255,0.6);
}

.intro-card-icon--secondary {
  background: var(--secondary-pale);
  color: var(--secondary);
}

.intro-card-icon--accent {
  background: var(--accent-pale);
  color: var(--accent);
}

.intro-card-icon--warm {
  background: var(--warm-pale);
  color: #D4A017;
}

/* ============================================
   SERVICES PREVIEW SECTION
   ============================================ */

.services-preview-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 860px;
  margin: 0 auto;
}

.service-card-stacked {
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}

.service-card-stacked::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card-stacked:hover::before {
  opacity: 1;
}

.service-card-stacked__num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary-pale);
  text-shadow: 2px 2px 4px rgba(91,79,207,0.1);
  line-height: 1;
}

.service-card-stacked__content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card-stacked__content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-card-stacked__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-pale), #fff);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow:
    3px 3px 8px rgba(91,79,207,0.15),
    -2px -2px 6px rgba(255,255,255,0.9),
    inset 1px 1px 3px rgba(255,255,255,0.7);
  justify-self: end;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 300px;
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.gallery-item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(0deg, rgba(26,23,48,0.75) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--transition-mid);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #8A7FF0 100%);
  position: relative;
  overflow: hidden;
}

.pull-quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pull-quote-section--alt {
  background: linear-gradient(135deg, #1A1730 0%, var(--primary) 100%);
}

.pull-quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 1;
}

.pull-quote-block--alt .pull-quote-mark {
  color: var(--secondary);
}

.pull-quote-mark {
  font-size: clamp(5rem, 12vw, 10rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  line-height: 0.6;
  display: block;
  margin-bottom: 1rem;
}

.pull-quote-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #fff;
  line-height: 1.45;
  font-style: normal;
}

.pull-quote-source {
  margin-top: 1.5rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   HOW SECTION
   ============================================ */

.how-section {
  background: var(--bg-alt);
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-md);
  align-items: start;
  margin-top: var(--space-xl);
}

.how-step {
  padding: var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.how-step__number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(91,79,207,0.35);
}

.how-step__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.how-step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.how-step-arrow {
  color: var(--primary-light);
  font-size: 1.5rem;
  padding-top: 80px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================
   VALUES PREVIEW SECTION
   ============================================ */

.values-preview-section {
  background: linear-gradient(135deg, #2D2550 0%, var(--primary) 50%, #4A3FA8 100%);
  position: relative;
  overflow: hidden;
}

.values-preview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(78,205,196,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,140,105,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.values-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.values-preview-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.text-body--light {
  color: rgba(255,255,255,0.8);
}

.values-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    12px 12px 32px rgba(0,0,0,0.3),
    -4px -4px 16px rgba(255,255,255,0.08);
  aspect-ratio: 4/3;
}

.values-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */

.contact-cta-section {
  background: var(--bg);
}

.contact-cta-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.contact-cta-decoration {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.cta-blob {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pale), var(--secondary-pale));
  box-shadow: var(--shadow-clay);
}

.cta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: var(--primary);
  opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--nav-bg);
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(91,79,207,0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(78,205,196,0.1) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(255,140,105,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo span {
  color: #fff;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-address a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-address a:hover {
  color: var(--secondary);
}

.footer-address i {
  color: var(--primary-light);
  width: 16px;
}

.footer-nav-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  position: relative;
  width: fit-content;
}

.footer-nav-col ul a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-nav-col ul a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-nav-col ul a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ============================================
   PAGE HEROES (INNER PAGES)
   ============================================ */

.page-hero {
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero--values {
  background: linear-gradient(135deg, #2D2550 0%, var(--primary) 60%, #6B5FD8 100%);
}

.page-hero--services {
  background: linear-gradient(135deg, var(--primary) 0%, #4A3FA8 50%, #2D2550 100%);
}

.page-hero--partners {
  background: linear-gradient(135deg, #1A3A4A 0%, #1A4A5A 40%, #1A3A6A 100%);
}

.page-hero--contact {
  background: linear-gradient(135deg, #2D3550 0%, #1A3050 50%, var(--primary) 100%);
}

.page-hero--legal {
  background: linear-gradient(135deg, #1A1730 0%, #2D2550 60%, var(--primary) 100%);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(78,205,196,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.legal-date {
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}

/* ============================================
   VALUES PAGE
   ============================================ */

.values-main-section {
  background: var(--bg);
}

.values-hero-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.values-hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.values-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-clay);
}

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

.values-cards-section {
  background: var(--bg-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.value-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow:
    4px 4px 10px rgba(91,79,207,0.15),
    -3px -3px 8px rgba(255,255,255,0.9),
    inset 1px 1px 4px rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

.value-card__icon--secondary {
  background: var(--secondary-pale);
  color: var(--secondary);
}

.value-card__icon--accent {
  background: var(--accent-pale);
  color: var(--accent);
}

.value-card__icon--warm {
  background: var(--warm-pale);
  color: #D4A017;
}

.approach-section {
  background: var(--bg);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-xl);
  max-width: 900px;
  margin: var(--space-xl) auto 0;
}

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

.approach-item__marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 3
px 10px rgba(78,205,196,0.35);
}

.approach-item__content h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.approach-item__content p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.service-detail-section {
  background: var(--bg);
}

.service-detail-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(91,79,207,0.08);
}

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

.service-detail-block--reverse {
  grid-template-columns: 1fr 180px;
}

.service-detail-block--reverse .service-detail-visual {
  order: 2;
}

.service-detail-block--reverse .service-detail-content {
  order: 1;
}

.service-detail-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 100px;
}

.service-detail-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--primary-pale);
  line-height: 1;
}

.service-detail-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-pale), #fff);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-clay);
}

.service-detail-visual--secondary .service-detail-num { color: var(--secondary-pale); }
.service-detail-visual--secondary .service-detail-icon-wrap {
  background: linear-gradient(135deg, var(--secondary-pale), #fff);
  color: var(--secondary);
}

.service-detail-visual--accent .service-detail-num { color: var(--accent-pale); }
.service-detail-visual--accent .service-detail-icon-wrap {
  background: linear-gradient(135deg, var(--accent-pale), #fff);
  color: var(--accent);
}

.service-detail-visual--warm .service-detail-num { color: var(--warm-pale); }
.service-detail-visual--warm .service-detail-icon-wrap {
  background: linear-gradient(135deg, var(--warm-pale), #fff);
  color: #D4A017;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-detail-content .section-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-align: left;
  margin-bottom: 0;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.service-features li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.services-note-section {
  background: var(--bg-alt);
}

.services-note-card {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.services-note-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.services-note-text h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.services-note-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   PARTNERS PAGE
   ============================================ */

.partners-intro-section {
  background: var(--bg);
}

.partners-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.partners-intro-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.partners-visual-card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.partners-visual-card i {
  font-size: 3rem;
  color: var(--primary);
}

.partners-visual-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.partners-visual-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.partner-types-section {
  background: var(--bg-alt);
}

.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.partner-type-card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.partner-type-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.partner-type-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.partner-type-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow:
    4px 4px 10px rgba(91,79,207,0.15),
    -3px -3px 8px rgba(255,255,255,0.9),
    inset 1px 1px 4px rgba(255,255,255,0.7);
}

.partner-type-icon--secondary { background: var(--secondary-pale); color: var(--secondary); }
.partner-type-icon--accent { background: var(--accent-pale); color: var(--accent); }
.partner-type-icon--warm { background: var(--warm-pale); color: #D4A017; }

.partnership-principles-section {
  background: linear-gradient(135deg, #1A3A4A 0%, #1A4A5A 60%, #1A3A6A 100%);
}

.partnership-approach-section {
  background: var(--bg);
}

.partnership-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.partnership-approach-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.partnership-approach-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow:
    3px 3px 8px rgba(91,79,207,0.15),
    -2px -2px 6px rgba(255,255,255,0.9);
}

.partnership-approach-item__icon--secondary { background: var(--secondary-pale); color: var(--secondary); }
.partnership-approach-item__icon--accent { background: var(--accent-pale); color: var(--accent); }

.partnership-approach-item h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.partnership-approach-item p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.become-partner-section {
  background: var(--bg-alt);
}

.become-partner-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}

.become-partner-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.become-partner-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.become-partner-icon {
  font-size: 5rem;
  color: var(--primary-pale);
  line-height: 1;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-main-section {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contact-form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--bg);
  border: 2px solid rgba(91,79,207,0.12);
  border-radius: var(--radius-md);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: inset 2px 2px 6px rgba(91,79,207,0.06);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow:
    inset 2px 2px 6px rgba(91,79,207,0.08),
    0 0 0 3px rgba(91,79,207,0.12);
}

.form-input::placeholder {
  color: var(--text-soft);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238882A8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-privacy {
  margin-top: 0.5rem;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  border: 2px solid rgba(91,79,207,0.25);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: inset 2px 2px 4px rgba(91,79,207,0.08);
  margin-top: 1px;
}

.form-checkbox-label input:checked + .form-checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.form-checkbox-label input:checked + .form-checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.form-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: 88px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-hours-block {
  padding: var(--space-md) var(--space-lg);
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow:
    3px 3px 8px rgba(91,79,207,0.15),
    -2px -2px 6px rgba(255,255,255,0.9);
}

.contact-info-icon--secondary { background: var(--secondary-pale); color: var(--secondary); }
.contact-info-icon--accent { background: var(--accent-pale); color: var(--accent); }

.contact-info-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.93rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-item a:hover {
  color: var(--primary);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(91,79,207,0.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row--closed span:last-child {
  color: var(--secondary);
  font-weight: 600;
}


.service-area-section {
  background: var(--bg-alt);
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-area-card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-area-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.service-area-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.service-area-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow:
    3px 3px 8px rgba(91,79,207,0.15),
    -2px -2px 6px rgba(255,255,255,0.9);
}

.service-area-icon--secondary { background: var(--secondary-pale); color: var(--secondary); }
.service-area-icon--accent { background: var(--accent-pale); color: var(--accent); }
.service-area-icon--warm { background: var(--warm-pale); color: #D4A017; }


.map-section {
  background: var(--bg);
}

.map-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-clay);
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 68px - 280px);
  padding: 120px 1rem 4rem;
}

.thanks-section {
  width: 100%;
}

.thanks-card {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}


.envelope-animation {
  width: 120px;
  height: 90px;
  position: relative;
  margin: 0 auto;
}

.envelope {
  width: 120px;
  height: 90px;
  position: relative;
}

.envelope-body {
  width: 120px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-pale), #E0DCFF);
  border-radius: 8px;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-clay);
}

.envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  animation: openFlap 1.2s ease-out 0.4s forwards;
  border-radius: 8px 8px 0 0;
}

.envelope-letter {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  height: 70px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: slideUpLetter 0.8s ease-out 1.2s both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  gap: 5px;
}

.letter-lines::before,
.letter-lines::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary-pale);
  border-radius: 2px;
  margin-bottom: 5px;
}

.letter-lines::after {
  width: 60%;
}

@keyframes openFlap {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-180deg); }
}

@keyframes slideUpLetter {
  0% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(-50px); opacity: 1; }
}

.thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-top: 2rem;
}

.thanks-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.thanks-desc {
  font-size: 1.05rem;
  max-width: 480px;
  text-align: center;
}

.thanks-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-sm);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-section {
  background: var(--bg);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.legal-toc {
  padding: var(--space-lg);
  position: sticky;
  top: 88px;
}

.legal-toc h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc-counter;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-toc ol li {
  counter-increment: toc-counter;
}

.legal-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.4;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.legal-toc ol li a::before {
  content: counter(toc-counter) ".";
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.legal-toc ol li a:hover {
  color: var(--primary);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-content--single {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content--cookies {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.legal-block {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(91,79,207,0.07);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.legal-block h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.legal-block p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.legal-info-box {
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.legal-info-box p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.legal-faq-intro {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid rgba(91,79,207,0.1);
}

.legal-faq-intro p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.legal-faq-block {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(91,79,207,0.07);
}

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

.legal-faq-q {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.legal-faq-a p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-faq-a p:last-child {
  margin-bottom: 0;
}


.cookies-intro-box {
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.cookies-intro-box i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.cookies-intro-box p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.cookies-section-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookies-section-block h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-pale);
}

.cookies-section-block p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.cookie-type-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-type-header h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.cookie-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cookie-badge--required {
  background: var(--accent-pale);
  color: #2A9D8F;
}

.cookie-badge--analytics {
  background: var(--primary-pale);
  color: var(--primary);
}

.cookie-badge--functional {
  background: var(--secondary-pale);
  color: #C0522A;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.cookies-table th {
  background: var(--bg-alt);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 0.6rem 0.875rem;
  font-size: 0.8rem;
}

.cookies-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.cookies-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.cookies-table td {
  padding: 0.6rem 0.875rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(91,79,207,0.06);
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

.cookies-table tr:nth-child(even) td {
  background: rgba(91,79,207,0.02);
}

/* ============================================
   COOKIE CONSENT WIDGET
   ============================================ */

#rv-cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: 360px;
  max-width: calc(100vw - 3rem);
  background: var(--surface-color);
  border-radius: var(--radius-xl);
  box-shadow:
    12px 12px 32px rgba(26,23,48,0.22),
    -4px -4px 16px rgba(255,255,255,0.85),
    inset 1px 1px 4px rgba(255,255,255,0.6);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  animation: slideInConsent 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

#rv-cookie-consent.is-visible {
  display: flex;
}

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

.rv-consent-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rv-consent-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow:
    3px 3px 8px rgba(91,79,207,0.15),
    -2px -2px 6px rgba(255,255,255,0.9);
}

.rv-consent-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.rv-consent-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.rv-consent-text a {
  color: var(--primary);
  text-decoration: underline;
}

.rv-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rv-btn-accept {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 14px rgba(91,79,207,0.3);
}

.rv-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,79,207,0.4);
}

.rv-btn-reject {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid rgba(91,79,207,0.15);
  border-radius: 50px;
  padding: 0.65rem 1.25rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.rv-btn-reject:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.rv-btn-customize {
  background: none;
  border: none;
  color: var(--primary);
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  text-decoration: underline;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.rv-btn-customize:hover {
  color: var(--primary-light);
}

.rv-consent-customize {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(91,79,207,0.1);
}

.rv-consent-customize.is-open {
  display: flex;
}

.rv-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rv-toggle-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.rv-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.rv-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.rv-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(91,79,207,0.15);
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.rv-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.rv-toggle input:checked + .rv-toggle-slider {
  background: var(--primary);
}

.rv-toggle input:checked + .rv-toggle-slider::before {
  transform: translateX(20px);
}

.rv-toggle input:disabled + .rv-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.rv-btn-save {
  background: linear-gradient(135deg, var(--accent), #3BBCB4);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.25rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 3px 12px rgba(78,205,196,0.35);
  margin-top: 0.25rem;
}

.rv-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(78,205,196,0.45);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

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

  .intro-text .section-heading {
    text-align: center;
  }

  .values-hero-block {
    grid-template-columns: 1fr;
  }

  .values-preview-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how-step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-detail-block {
    grid-template-columns: 1fr;
  }

  .service-detail-block--reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-block--reverse .service-detail-visual,
  .service-detail-block--reverse .service-detail-content {
    order: unset;
  }

  .service-detail-visual {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

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

  .partnership-approach-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu-wrapper {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    height: 200px;
  }

  .services-stack {
    padding: 0;
  }

  .service-card-stacked {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card-stacked__icon {
    justify-self: start;
  }

  .service-card-stacked__num {
    font-size: 1.5rem;
  }

  .partner-types-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-cta-card {
    grid-template-columns: 1fr;
  }

  .contact-cta-decoration {
    display: none;
  }

  .become-partner-card {
    grid-template-columns: 1fr;
  }

  .become-partner-icon {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
  }

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

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

  .partnership-approach-grid {
    grid-template-columns: 1fr;
  }

  .partners-intro {
    grid-template-columns: 1fr;
  }

  .intro-cards {
    grid-template-columns: 1fr;
  }

  .services-note-card {
    flex-direction: column;
    padding: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .contact-cta-actions {
    flex-direction: column;
  }

  .cookies-table {
    font-size: 0.8rem;
  }

  .cookies-table th,
  .cookies-table td {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 220px;
  }

  .hero-card-stack {
    max-width: 320px;
  }

  .pull-quote-text {
    font-size: 1.15rem;
  }

  .legal-faq-q {
    font-size: 1rem;
  }

  #rv-cookie-consent {
    left: 1rem;
    right: 1rem;
    width: auto;
    bottom: 1rem;
  }

  .action-primary,
  .action-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.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;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  nav.site-nav,
  .site-footer,
  #rv-cookie-consent {
    display: none !important;
  }

  main {
    padding-top: 0;
  }
}