/* ============================================================
   INTEGRASI APPLICATION UI
   File: css/style.css

   Main interface system for:
   - base layout
   - navigation
   - hero
   - application dashboard
   - user paths
   - interactive guide
   - services
   - actual/news section
   - process
   - statistics
   - FAQ
   - contact
   - legal information
   - footer
   - search
   - chatbot
   - modal
   - toast messages
============================================================ */

/* ============================================================
   01. RESET
============================================================ */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-page);
}

body {
  min-height: 100vh;

  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);

  color: var(--text-primary);

  background:
    radial-gradient(
      circle at 7% 6%,
      rgba(223, 245, 232, 0.84),
      transparent 28%
    ),
    radial-gradient(
      circle at 94% 8%,
      rgba(255, 221, 234, 0.64),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 48%,
      rgba(255, 243, 189, 0.22),
      transparent 26%
    ),
    var(--gradient-page);

  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked {
  overflow: hidden;
}

img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style-position: inside;
}

table {
  width: 100%;
  border-collapse: collapse;
}

::selection {
  color: var(--text-primary);
  background: var(--pastel-yellow-300);
}

:focus-visible {
  outline:
    3px solid
    rgba(79, 143, 114, 0.3);

  outline-offset: 4px;
}


/* ============================================================
   02. GLOBAL LAYOUT
============================================================ */

.container {
  width:
    min(
      var(--container-main),
      calc(100% - 40px)
    );

  margin-inline: auto;
}

.container-wide {
  width:
    min(
      var(--container-2xl),
      calc(100% - 40px)
    );

  margin-inline: auto;
}

.container-narrow {
  width:
    min(
      var(--container-md),
      calc(100% - 40px)
    );

  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-padding-lg);
}

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

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

.section-dark {
  color: var(--text-inverse);
  background: var(--bg-dark);
}

.section-overflow-hidden {
  overflow: hidden;
}


/* ============================================================
   03. TYPOGRAPHY
============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size:
    clamp(
      3rem,
      6vw,
      5.8rem
    );

  line-height: 0.98;
  letter-spacing: var(--tracking-tightest);
}

h2 {
  font-size:
    clamp(
      2.2rem,
      4.5vw,
      4.25rem
    );

  letter-spacing: var(--tracking-tighter);
}

h3 {
  font-size: var(--font-2xl);
}

h4 {
  font-size: var(--font-xl);
}

p {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.text-green {
  color: var(--text-green);
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);

  margin-bottom: var(--space-4);

  color: var(--brand-green-700);

  font-size: var(--font-xs);
  font-weight: var(--weight-black);

  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: var(--radius-full);

  background: var(--brand-green-600);

  box-shadow:
    0 0 0 6px
    rgba(79, 143, 114, 0.11);
}

.pill,
.hero-label {
  display: inline-flex;
  align-items: center;

  min-height: 34px;

  padding:
    0
    14px;

  margin-bottom: 18px;

  border-radius: var(--radius-full);

  color: var(--brand-green-700);

  background:
    rgba(223, 245, 232, 0.78);

  border:
    1px solid
    rgba(79, 143, 114, 0.14);

  font-size: var(--font-xs);
  font-weight: var(--weight-black);

  backdrop-filter:
    blur(var(--blur-sm));
}

.section-title,
.section-heading {
  max-width: var(--section-heading-width);
  margin-bottom: 54px;
}

.section-title.center,
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-title.center .eyebrow,
.section-heading.center .eyebrow {
  justify-content: center;
}

.section-title p,
.section-heading p {
  max-width: 680px;
  margin-top: 18px;

  color: var(--text-secondary);
  font-size: var(--font-md);
}

.section-title.center p,
.section-heading.center p {
  margin-inline: auto;
}


/* ============================================================
   04. BUTTONS
============================================================ */

.btn,
.button {
  min-height: var(--button-height-lg);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);

  padding: var(--button-padding-lg);

  border-radius: var(--button-radius);

  font-size: var(--font-sm);
  font-weight: var(--weight-black);

  white-space: nowrap;
}

.btn-primary,
.btn-dark,
.primary {
  color: var(--text-inverse);

  background: var(--bg-dark);

  border:
    1px solid
    var(--bg-dark);

  box-shadow:
    0 16px 36px
    rgba(23, 36, 33, 0.18);
}

.btn-primary:hover,
.btn-dark:hover,
.primary:hover {
  background: var(--brand-green-700);
  border-color: var(--brand-green-700);
}

.btn-secondary,
.btn-light,
.secondary {
  color: var(--text-primary);

  background:
    rgba(255, 255, 255, 0.74);

  border:
    1px solid
    var(--border-default);

  backdrop-filter:
    blur(var(--blur-md));
}

.btn-secondary:hover,
.btn-light:hover,
.secondary:hover {
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}

.btn-green {
  color: var(--text-inverse);
  background: var(--brand-green-600);
}

.btn-small {
  min-height: var(--button-height-sm);
  padding: var(--button-padding-sm);
}

.btn-large {
  min-height: var(--button-height-xl);
  padding: var(--button-padding-xl);
}


/* ============================================================
   05. HEADER
============================================================ */

.site-header,
.app-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);

  min-height: var(--header-height);

  display: flex;
  align-items: center;

  background:
    rgba(255, 255, 255, 0.78);

  border-bottom:
    1px solid
    var(--header-border);

  backdrop-filter:
    blur(var(--header-blur));

  -webkit-backdrop-filter:
    blur(var(--header-blur));
}

.site-header.is-scrolled,
.app-header.is-scrolled {
  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 14px 34px
    rgba(33, 49, 47, 0.08);
}

.nav {
  min-height: var(--header-height);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: grid;
  gap: 5px;

  flex-shrink: 0;

  min-width: max-content;
}

.wordmark,
.logo strong {
  color: var(--text-primary);

  font-size: 1.68rem;
  font-weight: var(--weight-black);

  line-height: 0.9;
  letter-spacing: 0;
}

.wordmark span {
  color: var(--brand-green-700);
}

.logo small {
  color: var(--text-muted);

  font-size: 0.58rem;
  font-weight: var(--weight-extrabold);

  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;

  margin-left: auto;
}

.nav-links a {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding:
    0
    10px;

  border-radius: 12px;

  color: var(--text-secondary);

  font-size: 0.82rem;
  font-weight: var(--weight-extrabold);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(223, 245, 232, 0.74);
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--text-primary);
  background: rgba(255, 243, 189, 0.72);
}

.nav-links .nav-button,
.nav-links .nav-cta {
  min-height: 40px;

  padding:
    0
    18px;

  color: var(--text-inverse);
  background: var(--bg-dark);

  border-radius: var(--radius-full);

  box-shadow:
    0 12px 24px
    rgba(23, 36, 33, 0.14);
}

.nav-links .nav-button:hover,
.nav-links .nav-cta:hover {
  background: var(--brand-green-700);
}

.languages,
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;

  flex-shrink: 0;

  padding: 4px;

  border-radius: var(--radius-full);

  background:
    rgba(255, 255, 255, 0.72);

  border:
    1px solid
    var(--border-subtle);
}

.languages a,
.lang-switch a {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: var(--radius-full);

  color: var(--text-muted);

  font-size: 0.7rem;
  font-weight: var(--weight-black);
}

.languages a.active,
.lang-switch a.active {
  color: var(--text-inverse);
  background: var(--bg-dark);
}

.languages a:hover,
.lang-switch a:hover {
  color: var(--text-primary);
  background: var(--pastel-yellow-200);
}

.search-open {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: var(--radius-full);

  color: var(--text-primary);
  background:
    rgba(223, 245, 232, 0.74);

  border:
    1px solid
    rgba(79, 143, 114, 0.16);

  font-size: 1rem;
  font-weight: var(--weight-black);
}

.search-open:hover {
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}


/* ============================================================
   06. MOBILE MENU
============================================================ */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  place-items: center;

  border-radius: 14px;

  background: var(--bg-surface);

  border:
    1px solid
    var(--border-default);
}

.menu-toggle-inner {
  display: grid;
  gap: 4px;
}

.menu-toggle span {
  grid-area: 1 / 1;

  width: 19px;
  height: 2px;

  border-radius: var(--radius-full);

  background: var(--text-primary);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-menu {
  position: absolute;
  top:
    calc(
      100%
      +
      10px
    );

  left: 15px;
  right: 15px;

  z-index: var(--z-dropdown);

  display: none;
  gap: 6px;

  padding: 16px;

  border-radius: var(--radius-2xl);

  background:
    rgba(255, 255, 255, 0.95);

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-lg);

  backdrop-filter:
    blur(var(--blur-lg));
}

.mobile-menu a {
  display: flex;
  align-items: center;

  min-height: 46px;

  padding:
    0
    14px;

  border-radius: 14px;

  color: var(--text-primary);

  font-size: var(--font-sm);
  font-weight: var(--weight-extrabold);
}

.mobile-menu a:hover {
  background: var(--pastel-green-100);
}


/* ============================================================
   07. HERO
============================================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 78px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -170px;
  left: -180px;
  background: rgba(181, 229, 202, 0.28);
}

.hero::after {
  width: 460px;
  height: 460px;
  right: -210px;
  bottom: -190px;
  background: rgba(255, 197, 218, 0.24);
}

.hero-grid {
  position: relative;
  z-index: var(--z-base);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 46px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.7rem, 5.4vw, 5.25rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero h1 span,
.gradient-text {
  color: transparent;
  background: linear-gradient(120deg, var(--brand-green-700), var(--pastel-pink-600));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text,
.hero-content > p {
  max-width: 610px;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 54px;
  padding: 0 23px;
}

.hero-actions .primary {
  background: linear-gradient(135deg, var(--bg-dark), var(--brand-green-700));
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(23, 36, 33, 0.18);
}

.hero-actions .secondary {
  background: rgba(255, 255, 255, 0.86);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-default);
  font-size: 0.76rem;
  font-weight: var(--weight-extrabold);
  backdrop-filter: blur(var(--blur-sm));
}

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: -26px;
  padding-bottom: 28px;
}

.hero-stats .container {
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 248, 0.78));
  border: 1px solid var(--border-default);
  box-shadow: 0 18px 46px rgba(33, 49, 47, 0.09);
  backdrop-filter: blur(var(--blur-md));
}

.hero-stats-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.hero-stats-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: var(--radius-full);
  color: var(--brand-green-700);
  background: var(--pastel-green-100);
  border: 1px solid rgba(79, 143, 114, 0.14);
  font-size: 0.68rem;
  font-weight: var(--weight-black);
  white-space: nowrap;
}

.hero-stats-head h2 {
  max-width: 440px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: var(--weight-extrabold);
  line-height: 1.3;
  text-align: right;
  letter-spacing: 0;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-stat-card {
  position: relative;
  min-width: 0;
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 28px rgba(33, 49, 47, 0.06);
  overflow: hidden;
}

.hero-stat-card::before {
  content: "";
  position: absolute;
  right: -32px;
  top: -42px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(223, 245, 232, 0.74);
  pointer-events: none;
}

.hero-stat-card.tone-yellow::before { background: rgba(255, 243, 189, 0.8); }
.hero-stat-card.tone-pink::before { background: rgba(255, 221, 234, 0.74); }
.hero-stat-card.tone-blue::before { background: rgba(208, 234, 255, 0.76); }

.hero-stat-card strong,
.hero-stat-card span {
  position: relative;
  z-index: 2;
}

.hero-stat-card strong {
  color: var(--text-primary);
  font-size: clamp(1.62rem, 2.5vw, 2.25rem);
  font-weight: var(--weight-black);
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-stat-card span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: var(--weight-extrabold);
  line-height: 1.28;
}

/* ============================================================
   08. INTEGRASI NAVIGATOR
============================================================ */

.app-card,
.app-preview {
  position: relative;
  width: 100%;
  max-width: 640px;
  justify-self: end;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(238, 248, 243, 0.9)),
    radial-gradient(circle at 18% 16%, rgba(181, 229, 202, 0.44), transparent 33%),
    radial-gradient(circle at 88% 14%, rgba(255, 221, 234, 0.42), transparent 30%);
  border: 1px solid rgba(79, 143, 114, 0.16);
  box-shadow: 0 34px 80px rgba(33, 49, 47, 0.16);
  overflow: hidden;
  backdrop-filter: blur(var(--blur-xl));
}

.app-card::before,
.app-preview::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.hero-map-card {
  min-height: auto;
}

.navigator-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.navigator-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px 9px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 28px rgba(33, 49, 47, 0.06);
  backdrop-filter: blur(var(--blur-md));
}

.navigator-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navigator-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--text-inverse);
  background: linear-gradient(145deg, var(--bg-dark), var(--brand-green-700));
  box-shadow: 0 10px 22px rgba(23, 36, 33, 0.16);
  font-size: 0.72rem;
  font-weight: var(--weight-black);
  letter-spacing: 0.04em;
}

.navigator-brand div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.navigator-brand strong {
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: var(--weight-black);
}

.navigator-brand small {
  color: var(--text-muted);
  font-size: 0.64rem;
  font-weight: var(--weight-bold);
}

.navigator-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: var(--radius-full);
  color: var(--brand-green-700);
  background: var(--pastel-green-100);
  border: 1px solid rgba(79, 143, 114, 0.14);
  font-size: 0.66rem;
  font-weight: var(--weight-black);
  white-space: nowrap;
}

.navigator-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green-600);
}

.navigator-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.92fr);
  gap: 18px;
  align-items: end;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 248, 241, 0.78));
  border: 1px solid var(--border-subtle);
}

.navigator-intro small {
  color: var(--brand-green-700);
  font-size: 0.66rem;
  font-weight: var(--weight-black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navigator-intro h2 {
  max-width: 390px;
  margin-top: 6px;
  font-size: clamp(1.45rem, 2.15vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.navigator-intro p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

.navigator-segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.navigator-segment {
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 15px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-default), box-shadow var(--transition-default), border-color var(--transition-default), background var(--transition-default);
}

.navigator-segment span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--pastel-green-200);
  font-size: 0.58rem;
  font-weight: var(--weight-black);
}

.segment-study span { background: var(--pastel-yellow-200); }
.segment-arrival span { background: var(--pastel-blue-200); }

.navigator-segment strong {
  overflow: hidden;
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: var(--weight-black);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navigator-segment:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 143, 114, 0.24);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(33, 49, 47, 0.08);
}

.navigator-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.7fr);
  gap: 12px;
  align-items: stretch;
}

.slovenia-map-wrap {
  position: relative;
  min-height: 360px;
  aspect-ratio: 1.48 / 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 243, 189, 0.5), transparent 34%),
    radial-gradient(circle at 76% 14%, rgba(220, 239, 255, 0.54), transparent 30%),
    linear-gradient(145deg, rgba(248, 252, 250, 0.98), rgba(219, 241, 231, 0.94));
  border: 1px solid rgba(79, 143, 114, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -28px 64px rgba(79, 143, 114, 0.08),
    0 18px 40px rgba(33, 49, 47, 0.1);
  isolation: isolate;
  overflow: hidden;
}

.slovenia-map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(79, 143, 114, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 143, 114, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 52% 48%, black 12%, transparent 76%);
  pointer-events: none;
}

.slovenia-map-wrap::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 54% 47%, rgba(79, 143, 114, 0.09), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 46%);
  pointer-events: none;
}

.slovenia-map {
  position: absolute;
  left: 3%;
  top: 7%;
  z-index: 2;
  width: 94%;
  height: 78%;
  overflow: visible;
}

.map-shape {
  stroke: rgba(45, 104, 79, 0.7);
  stroke-width: 3;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.map-contours path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.map-contours path {
  stroke: rgba(48, 104, 82, 0.18);
  stroke-width: 1.55;
}

.map-highlight {
  fill: none;
  stroke: rgba(255, 255, 255, 0.76);
  stroke-width: 4.2;
  stroke-linecap: round;
  opacity: 0.78;
  vector-effect: non-scaling-stroke;
}

.map-caption {
  position: absolute;
  left: 50%;
  top: 14px;
  bottom: auto;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(var(--blur-md));
}

.map-caption strong {
  color: var(--text-primary);
  font-size: 0.72rem;
}

.map-caption span {
  color: var(--text-muted);
  font-size: 0.66rem;
}

.map-floating-stats {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.map-stat-card {
  position: absolute;
  width: min(154px, calc(50% - 22px));
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(79, 143, 114, 0.14);
  box-shadow: 0 14px 30px rgba(33, 49, 47, 0.1);
  backdrop-filter: blur(var(--blur-md));
  overflow: hidden;
  animation: gentleFloat 5.8s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.map-stat-card::before {
  content: "";
  position: absolute;
  right: -26px;
  top: -28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(223, 245, 232, 0.78);
}

.map-stat-card.tone-yellow::before { background: rgba(255, 243, 189, 0.88); }
.map-stat-card.tone-pink::before { background: rgba(255, 221, 234, 0.82); }
.map-stat-card.tone-blue::before { background: rgba(208, 234, 255, 0.84); }

.map-stat-card strong,
.map-stat-card span {
  position: relative;
  z-index: 2;
}

.map-stat-card strong {
  color: var(--text-primary);
  font-size: 1.22rem;
  font-weight: var(--weight-black);
  line-height: 0.95;
  white-space: nowrap;
}

.map-stat-card span {
  color: var(--text-secondary);
  font-size: 0.67rem;
  font-weight: var(--weight-extrabold);
  line-height: 1.28;
}

.map-stat-card.corner-top-left { top: 16px; left: 16px; }
.map-stat-card.corner-top-right { top: 16px; right: 16px; }
.map-stat-card.corner-bottom-left { bottom: 18px; left: 16px; }
.map-stat-card.corner-bottom-right { bottom: 18px; right: 16px; }

@keyframes gentleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
}

.navigator-smart-grid {

  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.navigator-smart-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 28px rgba(33, 49, 47, 0.07);
  overflow: hidden;
  transition: transform var(--transition-default), box-shadow var(--transition-default), border-color var(--transition-default);
}

.navigator-smart-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  right: -36px;
  top: -40px;
  border-radius: 50%;
  background: rgba(223, 245, 232, 0.72);
  pointer-events: none;
}

.navigator-smart-card.tone-yellow::after { background: rgba(255, 243, 189, 0.78); }
.navigator-smart-card.tone-blue::after { background: rgba(220, 239, 255, 0.78); }
.navigator-smart-card.tone-pink::after { background: rgba(255, 221, 234, 0.76); }

.navigator-smart-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 143, 114, 0.22);
  box-shadow: 0 18px 34px rgba(33, 49, 47, 0.11);
}

.navigator-card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.navigator-card-topline small {
  color: var(--brand-green-700);
  font-size: 0.6rem;
  font-weight: var(--weight-black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navigator-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green-600);
}

.tone-yellow .navigator-card-dot { background: var(--pastel-yellow-600); }
.tone-blue .navigator-card-dot { background: var(--blue-600); }
.tone-pink .navigator-card-dot { background: var(--pastel-pink-600); }

.navigator-smart-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  font-size: 0.94rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.navigator-card-value {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 9px;
  color: var(--text-primary);
  font-size: 1.12rem;
  line-height: 1;
}

.navigator-card-note {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-top: 7px;
  padding: 5px 7px;
  border-radius: 9px;
  color: var(--text-secondary);
  background: rgba(255, 243, 189, 0.62);
  font-size: 0.64rem;
  font-weight: var(--weight-extrabold);
}

.navigator-smart-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  margin-top: 8px;
  list-style: none;
}

.navigator-smart-card li,
.navigator-card-footnote {
  color: var(--text-secondary);
  font-size: 0.7rem;
  line-height: 1.35;
}

.navigator-checklist li {
  position: relative;
  padding-left: 13px;
}

.navigator-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-green-600);
}

.navigator-card-action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-top: auto;
  padding-top: 8px;
  color: var(--text-primary);
  font-size: 0.68rem;
  font-weight: var(--weight-black);
}

.navigator-card-action span {
  transition: transform var(--transition-default);
}

.navigator-card-action:hover span {
  transform: translateX(3px);
}

.navigator-shell-simple {
  gap: 14px;
}

.navigator-shell-simple .navigator-intro {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding: 17px 18px;
}

.navigator-shell-simple .navigator-intro h2 {
  max-width: 520px;
}

.navigator-shell-simple .navigator-intro p {
  max-width: 520px;
}

.navigator-shell-simple .slovenia-map-wrap {
  min-height: 360px;
  aspect-ratio: 1.62 / 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 243, 189, 0.38), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(208, 234, 255, 0.34), transparent 30%),
    linear-gradient(145deg, rgba(250, 253, 251, 0.98), rgba(231, 245, 238, 0.94));
}

.navigator-shell-simple .slovenia-map-wrap::before {
  background-image:
    linear-gradient(rgba(79, 143, 114, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 143, 114, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: none;
}

.navigator-shell-simple .slovenia-map-wrap::after {
  display: none;
}

.navigator-shell-simple .slovenia-map {
  position: absolute;
  inset: 4% 3% 8%;
  width: 94%;
  height: 88%;
}

.map-background {
  fill: rgba(255, 255, 255, 0.46);
  stroke: rgba(79, 143, 114, 0.09);
  stroke-width: 1.2;
}

.map-city {
  cursor: default;
}

.map-city-halo {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(33, 49, 47, 0.14);
  stroke-width: 1.4;
  filter: drop-shadow(0 5px 8px rgba(33, 49, 47, 0.16));
}

.map-city-dot {
  fill: var(--bg-dark);
  stroke: #ffffff;
  stroke-width: 2.4;
}

.map-city.is-active .map-city-dot {
  fill: var(--brand-green-600);
}

.map-city-label {
  fill: var(--text-primary);
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 5px;
  stroke-linejoin: round;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: var(--weight-black);
  letter-spacing: 0;
}

.navigator-simple-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-subtle);
}

.navigator-simple-footer .navigator-segments {
  margin: 0;
}

.navigator-simple-footer .journey-action {
  min-height: 44px;
  align-self: stretch;
  color: var(--text-inverse);
  background: var(--bg-dark);
}

.navigator-journey {
  display: grid;
  grid-template-columns: 0.76fr minmax(0, 1.65fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: var(--bg-dark);
  box-shadow: 0 16px 34px rgba(23, 36, 33, 0.16);
}

.journey-copy {
  display: grid;
  gap: 2px;
}

.journey-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.6rem;
  font-weight: var(--weight-black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-copy strong {
  color: var(--text-inverse);
  font-size: 0.76rem;
  line-height: 1.25;
}

.navigator-journey ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  list-style: none;
}

.navigator-journey ol::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.navigator-journey li {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.navigator-journey li span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--text-primary);
  background: var(--pastel-green-200);
  border: 2px solid rgba(23, 36, 33, 0.92);
  font-size: 0.54rem;
  font-weight: var(--weight-black);
}

.navigator-journey li:nth-child(2) span { background: var(--pastel-yellow-200); }
.navigator-journey li:nth-child(3) span { background: var(--pastel-pink-200); }
.navigator-journey li:nth-child(4) span { background: var(--pastel-blue-200); }

.navigator-journey li strong {
  max-width: 78px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
  line-height: 1.2;
}

.journey-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 13px;
  color: var(--text-primary);
  background: var(--text-inverse);
  font-size: 0.65rem;
  font-weight: var(--weight-black);
  white-space: nowrap;
}

.journey-action span {
  transition: transform var(--transition-default);
}

.journey-action:hover span {
  transform: translateX(3px);
}

/* ============================================================
   09. FLOATING APPLICATION CARDS
============================================================ */

.floating-card,
.app-status-card {
  position: absolute;
  z-index: 4;

  width: 205px;

  padding: 16px;

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.84);

  border:
    1px solid
    var(--border-default);

  box-shadow:
    0 16px 34px
    rgba(33, 49, 47, 0.11);

  backdrop-filter:
    blur(var(--blur-lg));
}

.floating-card small,
.app-status-card small {
  display: block;

  color: var(--text-muted);

  font-size: 0.72rem;
  font-weight: var(--weight-extrabold);
}

.floating-card strong,
.app-status-card strong {
  display: block;

  margin-top: 4px;

  color: var(--text-primary);

  font-size: 0.9rem;
  font-weight: var(--weight-black);

  line-height: var(--leading-snug);
}

/* ============================================================
   10. USER PATHS
============================================================ */

.paths {
  background: var(--bg-surface);
}

.path-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.path-card {
  position: relative;

  min-height: 330px;

  display: flex;
  flex-direction: column;

  padding: 28px;

  border-radius: var(--card-radius);

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #fffdfa
    );

  border:
    1px solid
    var(--card-border);

  box-shadow: var(--card-shadow);

  overflow: hidden;
}

.path-card::after {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  right: -80px;
  bottom: -80px;

  border-radius: 50%;

  background:
    rgba(223, 245, 232, 0.5);

  pointer-events: none;
}

.path-card:nth-child(2)::after {
  background:
    rgba(255, 221, 234, 0.55);
}

.path-card:nth-child(3)::after {
  background:
    rgba(255, 243, 189, 0.65);
}

.path-card:nth-child(4)::after {
  background:
    rgba(220, 239, 255, 0.65);
}

.icon-box,
.icon-tile {
  position: relative;
  z-index: 2;

  width: var(--icon-tile-lg);
  height: var(--icon-tile-lg);

  display: grid;
  place-items: center;

  margin-bottom: 28px;

  border-radius: 20px;

  background: var(--pastel-green-200);

  box-shadow: var(--shadow-xs);
}

.icon-box.green,
.icon-tile.green {
  background: var(--pastel-green-200);
}

.icon-box.pink,
.icon-tile.pink {
  background: var(--pastel-pink-200);
}

.icon-box.yellow,
.icon-tile.yellow {
  background: var(--pastel-yellow-200);
}

.icon-box.blue,
.icon-tile.blue {
  background: var(--pastel-blue-200);
}

.icon-box.purple,
.icon-tile.purple {
  background: var(--pastel-purple-200);
}

.icon-box svg,
.icon-tile svg {
  width: 30px;
  height: 30px;

  fill: none;

  stroke: var(--text-primary);
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box img,
.icon-tile img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.path-card small {
  position: relative;
  z-index: 2;

  color: var(--brand-green-700);

  font-size: 0.7rem;
  font-weight: var(--weight-black);

  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.path-card h3 {
  position: relative;
  z-index: 2;

  margin-top: 8px;

  font-size: 1.5rem;
}

.path-card p {
  position: relative;
  z-index: 2;

  margin-top: 14px;

  color: var(--text-secondary);
}

.path-card a {
  position: relative;
  z-index: 2;

  display: inline-flex;

  margin-top: auto;
  padding-top: 26px;

  color: var(--text-primary);

  font-size: var(--font-sm);
  font-weight: var(--weight-black);
}


/* ============================================================
   11. INTERACTIVE GUIDE
============================================================ */

.guide {
  position: relative;
  overflow: hidden;
  color: #f6fbf5;
  background:
    linear-gradient(rgba(210, 239, 222, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 239, 222, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, rgba(181, 229, 202, 0.16), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(255, 243, 189, 0.08), transparent 30%),
    linear-gradient(145deg, #163126 0%, #20352f 48%, #263632 100%);
  background-size:
    44px 44px,
    44px 44px,
    auto,
    auto,
    auto;
}

.guide::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(223, 245, 232, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.guide-grid,
.guide-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "intro board"
    "menu board";
  gap: 18px 28px;
  align-items: stretch;
}

.guide-intro {
  grid-area: intro;
  padding: 8px 4px 16px;
}

.guide-intro .eyebrow {
  color: #dff5e8;
  background: rgba(223, 245, 232, 0.1);
  border-color: rgba(223, 245, 232, 0.16);
}

.guide-intro h2,
.guide-intro h1 {
  margin-top: 16px;
  color: #fffaf0;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  letter-spacing: 0;
  line-height: 0.98;
}

.guide-intro p {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(246, 251, 245, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.7;
}

.guide-helper {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(223, 245, 232, 0.13);
  border-radius: 22px;
  background: rgba(12, 32, 25, 0.36);
}

.guide-helper strong {
  color: #fff8df;
  font-size: 0.96rem;
}

.guide-helper span {
  color: rgba(246, 251, 245, 0.72);
  line-height: 1.55;
}

.guide-menu,
.guide-list {
  grid-area: menu;
  display: grid;
  gap: 12px;
}

.guide-btn,
.guide-step {
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(223, 245, 232, 0.13);
  border-radius: 22px;
  color: #f6fbf5;
  background: rgba(12, 32, 25, 0.42);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform var(--transition-default),
    border-color var(--transition-default),
    background var(--transition-default),
    box-shadow var(--transition-default);
}

.guide-btn:hover,
.guide-step:hover {
  transform: translateY(-3px);
  border-color: rgba(181, 229, 202, 0.42);
  background: rgba(18, 48, 37, 0.72);
  box-shadow: 0 18px 38px rgba(5, 18, 14, 0.18);
}

.guide-btn:focus-visible,
.guide-step:focus-visible,
.guide-board-cta:focus-visible {
  outline: 3px solid rgba(255, 243, 189, 0.72);
  outline-offset: 4px;
}

.guide-btn span,
.guide-step span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #173126;
  background: #dff5e8;
  font-size: 0.78rem;
  font-weight: var(--weight-black);
}

.guide-btn:nth-child(2) span,
.guide-step:nth-child(2) span {
  background: var(--pastel-yellow-200);
}

.guide-btn:nth-child(3) span,
.guide-step:nth-child(3) span {
  background: var(--pastel-blue-200);
}

.guide-btn:nth-child(4) span,
.guide-step:nth-child(4) span {
  background: var(--pastel-pink-200);
}

.guide-btn strong,
.guide-step strong {
  display: block;
  color: #fffdf5;
  font-size: 1.02rem;
  font-weight: var(--weight-black);
}

.guide-btn small,
.guide-step small {
  display: block;
  margin-top: 5px;
  color: rgba(246, 251, 245, 0.66);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.guide-btn.active,
.guide-btn.is-active,
.guide-step.active,
.guide-step.is-active {
  border-color: rgba(181, 229, 202, 0.66);
  background:
    linear-gradient(135deg, rgba(223, 245, 232, 0.2), rgba(255, 243, 189, 0.08)),
    rgba(16, 44, 34, 0.86);
  box-shadow:
    0 20px 48px rgba(5, 18, 14, 0.24),
    inset 4px 0 0 rgba(181, 229, 202, 0.9);
}

.guide-panel {
  grid-area: board;
  min-height: 100%;
  padding: clamp(26px, 3.2vw, 44px);
  border: 1px solid rgba(223, 245, 232, 0.16);
  border-radius: 34px;
  color: #f6fbf5;
  background:
    radial-gradient(circle at 12% 8%, rgba(181, 229, 202, 0.12), transparent 34%),
    linear-gradient(160deg, rgba(247, 252, 249, 0.11), rgba(11, 31, 25, 0.48));
  box-shadow:
    0 30px 80px rgba(5, 18, 14, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--blur-lg));
}

.guide-board-head {
  max-width: 760px;
}

.guide-label,
.panel-label,
.guide-panel-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-full);
  color: #fff8df;
  background: rgba(255, 243, 189, 0.11);
  border: 1px solid rgba(255, 243, 189, 0.18);
  font-size: 0.7rem;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.guide-panel h3 {
  margin-top: 18px;
  color: #fffdf5;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
  line-height: 1.02;
}

.guide-panel p,
.guide-panel > p {
  margin-top: 14px;
  color: rgba(246, 251, 245, 0.76);
  line-height: 1.7;
}

.guide-progress-line {
  position: relative;
  height: 2px;
  margin: 30px 0 24px;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: rgba(223, 245, 232, 0.12);
}

.guide-progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pastel-green-200), var(--pastel-yellow-200));
  transform-origin: left;
}

.mini-steps,
.guide-journey-steps {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.mini-steps article,
.guide-result-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(223, 245, 232, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
}

.guide-result-number,
.mini-steps article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 14px;
  color: #173126;
  background: #dff5e8;
  font-size: 0.76rem;
  font-weight: var(--weight-black);
}

.guide-result-content strong,
.mini-steps article strong {
  display: block;
  color: #fffdf5;
  font-size: 1rem;
}

.guide-result-content p,
.mini-steps article p {
  margin-top: 5px;
  color: rgba(246, 251, 245, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.guide-board-cta {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  color: #173126;
  background: linear-gradient(135deg, var(--pastel-green-200), var(--pastel-yellow-200));
  font-size: 0.94rem;
  font-weight: var(--weight-black);
  box-shadow: 0 18px 34px rgba(5, 18, 14, 0.22);
}

.guide-board-cta span {
  transition: transform var(--transition-default);
}

.guide-board-cta:hover span {
  transform: translateX(3px);
}


/* ============================================================
   12. SERVICES
============================================================ */

.services {
  background: var(--bg-surface);
}

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.service-card {
  min-height: 330px;

  padding: 28px;

  border-radius: var(--card-radius);

  background: var(--card-bg);

  border:
    1px solid
    var(--card-border);

  box-shadow: var(--card-shadow);
}

.service-card:nth-child(1) {
  background:
    linear-gradient(
      160deg,
      #ffffff 48%,
      var(--pastel-green-100)
    );
}

.service-card:nth-child(2) {
  background:
    linear-gradient(
      160deg,
      #ffffff 48%,
      var(--pastel-pink-100)
    );
}

.service-card:nth-child(3) {
  background:
    linear-gradient(
      160deg,
      #ffffff 48%,
      var(--pastel-yellow-100)
    );
}

.service-card:nth-child(4) {
  background:
    linear-gradient(
      160deg,
      #ffffff 48%,
      var(--pastel-blue-100)
    );
}

.service-card > span {
  color: var(--brand-green-700);

  font-size: 0.7rem;
  font-weight: var(--weight-black);

  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 9px;

  font-size: 1.55rem;
}

.service-card ul {
  display: grid;
  gap: 10px;

  margin-top: 22px;

  list-style: none;
}

.service-card li {
  position: relative;

  padding-left: 22px;

  color: var(--text-secondary);

  font-size: 0.92rem;
  font-weight: var(--weight-semibold);
}

.service-card li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0.62em;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--brand-green-500);
}


/* ============================================================
   13. ACTUAL / LIVE SECTION
============================================================ */

.live {
  isolation: isolate;

  background:
    radial-gradient(
      circle at 11% 14%,
      rgba(223, 245, 232, 0.64),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 243, 189, 0.42),
      transparent 24%
    ),
    radial-gradient(
      circle at 76% 92%,
      rgba(255, 221, 234, 0.42),
      transparent 28%
    ),
    var(--bg-page);
}

.live-grid {
  display: grid;

  grid-template-columns:
    minmax(270px, 0.72fr)
    minmax(0, 1.28fr);

  gap: 34px;

  align-items: start;
}

.live-ticker {
  grid-column: 1 / -1;

  min-width: 0;

  padding: 9px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.78);

  border:
    1px solid
    rgba(79, 143, 114, 0.18);

  box-shadow:
    0 14px 34px
    rgba(33, 49, 47, 0.07);

  backdrop-filter:
    blur(var(--blur-md));

  overflow: hidden;
}

.live-ticker-viewport {
  overflow: hidden;
}

.live-ticker-track {
  width: max-content;

  display: flex;
  align-items: center;
  gap: 10px;

  animation:
    liveTickerScroll
    42s
    linear
    infinite;
}

.live-ticker:hover
.live-ticker-track,
.live-ticker:focus-within
.live-ticker-track {
  animation-play-state: paused;
}

.live-ticker-list {
  display: flex;
  align-items: center;
  gap: 10px;

  list-style: none;
}

.live-ticker-item {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding:
    0
    13px;

  border-radius: var(--radius-full);

  color: var(--text-secondary);

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    var(--border-subtle);

  font-size: 0.78rem;
  font-weight: var(--weight-bold);

  white-space: nowrap;
}

.live-ticker-item strong {
  color: var(--text-primary);
  font-weight: var(--weight-black);
}

.live .section-title {
  max-width: none;
  margin-bottom: 0;
}

.live-copy {
  position: sticky;
  top:
    calc(
      var(--header-height)
      +
      24px
    );

  padding: 34px;

  border-radius: var(--radius-3xl);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(242, 250, 246, 0.82)
    );

  border:
    1px solid
    var(--border-default);

  box-shadow:
    0 20px 56px
    rgba(33, 49, 47, 0.08);

  backdrop-filter:
    blur(var(--blur-lg));
}

.live-copy h2 {
  max-width: 560px;

  font-size:
    clamp(
      2rem,
      3.2vw,
      3.35rem
    );

  letter-spacing: 0;
}

.live-copy p {
  max-width: 560px;

  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 26px;
}

.live-tabs {
  align-items: center;
}

.tab,
.tab-btn {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding:
    0
    15px;

  border-radius: var(--radius-full);

  color: var(--text-primary);

  background: var(--bg-surface);

  border:
    1px solid
    var(--border-default);

  font-size: 0.8rem;
  font-weight: var(--weight-black);

  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.tab:hover,
.tab-btn:hover {
  transform:
    translateY(-1px);

  background: var(--pastel-green-100);
  border-color: var(--border-green);
}

.tab.active,
.tab-btn.active {
  color: var(--text-inverse);
  background: var(--bg-dark);
  border-color: var(--bg-dark);

  box-shadow:
    0 12px 24px
    rgba(23, 36, 33, 0.12);
}

.news-list,
.news-grid {
  display: grid;
  gap: var(--news-card-gap);
}

.live-card-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.news-card {
  position: relative;

  min-height: 336px;

  display: flex;
  flex-direction: column;

  padding: 25px;

  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(249, 252, 250, 0.86)
    );

  border:
    1px solid
    var(--border-default);

  box-shadow:
    0 16px 42px
    rgba(33, 49, 47, 0.07);

  overflow: hidden;

  transition:
    transform var(--transition-default),
    border-color var(--transition-default),
    box-shadow var(--transition-default);
}

.news-card:hover {
  transform:
    translateY(-3px);

  border-color:
    rgba(79, 143, 114, 0.2);

  box-shadow:
    0 22px 52px
    rgba(33, 49, 47, 0.11);
}

.news-card::before {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  right: -64px;
  top: -68px;

  border-radius: 50%;

  background:
    rgba(223, 245, 232, 0.66);

  pointer-events: none;
}

.news-card[data-category="work"]::before {
  background:
    rgba(255, 243, 189, 0.72);
}

.news-card[data-category="study"]::before {
  background:
    rgba(255, 221, 234, 0.7);
}

.news-card[data-category="life"]::before {
  background:
    rgba(208, 234, 255, 0.68);
}

.news-card[data-category="documents"]::before {
  background:
    rgba(232, 221, 255, 0.66);
}

.news-card.is-featured {
  min-height: 330px;

  grid-column: 1 / -1;

  padding: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(232, 247, 239, 0.9)
    ),
    radial-gradient(
      circle at 86% 22%,
      rgba(255, 243, 189, 0.66),
      transparent 30%
    );

  border-color:
    rgba(79, 143, 114, 0.22);
}

.info-card-top {
  position: relative;
  z-index: 2;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  margin-bottom: 15px;
}

.info-category,
.info-featured {
  display: inline-flex;
  align-items: center;

  min-height: 28px;

  padding:
    0
    10px;

  border-radius: var(--news-label-radius);

  color: var(--brand-green-700);

  background: var(--pastel-green-100);

  font-size: 0.65rem;
  font-weight: var(--weight-black);

  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.info-featured {
  color: var(--text-primary);
  background: var(--pastel-yellow-200);
}

.news-card h3 {
  position: relative;
  z-index: 2;

  margin-top: 0;

  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.news-card.is-featured h3 {
  max-width: 720px;

  font-size:
    clamp(
      1.9rem,
      3vw,
      2.6rem
    );
}

.news-card .info-summary {
  position: relative;
  z-index: 2;

  margin-top: 10px;

  max-width: 620px;

  color: var(--text-secondary);

  line-height: 1.62;
}

.news-card.is-featured .info-summary {
  max-width: 760px;

  font-size: 1rem;
}

.info-why {
  position: relative;
  z-index: 2;

  margin-top: 18px;
  padding: 15px;

  border-radius: 17px;

  background:
    rgba(255, 255, 255, 0.72);

  border:
    1px solid
    var(--border-subtle);
}

.info-why strong {
  display: block;

  color: var(--text-primary);

  font-size: var(--font-xs);
  font-weight: var(--weight-black);

  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.info-why p {
  margin-top: 6px;

  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: var(--leading-relaxed);
}

.info-card-footer {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 15px;

  margin-top: auto;
  padding-top: 22px;
}

.news-card.is-featured .info-card-footer {
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: end;
}

.info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-meta span {
  min-height: 34px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding:
    0
    10px;

  border-radius: var(--radius-full);

  color: var(--text-secondary);

  background:
    rgba(255, 255, 255, 0.74);

  border:
    1px solid
    var(--border-subtle);

  font-size: 0.72rem;
  font-weight: var(--weight-bold);
}

.info-meta strong {
  color: var(--text-primary);
  font-weight: var(--weight-black);
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.info-action {
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding:
    0
    14px;

  border-radius: var(--radius-full);

  color: var(--text-primary);

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    var(--border-default);

  font-size: var(--font-xs);
  font-weight: var(--weight-black);

  cursor: pointer;
}

.info-action:hover {
  background: var(--pastel-green-100);
  border-color: var(--border-green);
}

.info-action-read {
  color: var(--text-inverse);
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.info-action-read:hover {
  color: var(--text-inverse);
  background: var(--brand-green-700);
  border-color: var(--brand-green-700);
}

.info-action-source:hover,
.info-action-guide:hover {
  background: var(--pastel-green-100);
  border-color: var(--border-green);
}

.news-card.hidden,
.news-card.is-hidden {
  display: none;
}

.news-modal-card {
  width:
    min(
      860px,
      100%
    );

  padding: 0;

  overflow-x: hidden;
  overflow-y: auto;
}

.news-modal-header,
.news-modal-card > h2,
.news-modal-summary,
.news-modal-why,
.news-modal-body,
.news-modal-footer {
  padding-inline: 32px;
}

.news-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding-top: 28px;
}

.news-modal-close {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: var(--radius-full);

  color: var(--text-primary);

  background: var(--bg-page-soft);

  border:
    1px solid
    var(--border-subtle);

  font-size: 1.35rem;
  line-height: 1;
}

.news-modal-card > h2 {
  margin-top: 24px;

  max-width: 720px;

  font-size:
    clamp(
      2rem,
      4vw,
      3.15rem
    );

  line-height: 1.04;
}

.news-modal-summary {
  margin-top: 16px;

  max-width: 720px;

  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: var(--leading-relaxed);
}

.news-modal-why {
  margin:
    24px
    32px
    0;

  padding: 17px;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(223, 245, 232, 0.78),
      rgba(255, 243, 189, 0.38)
    );

  border:
    1px solid
    rgba(79, 143, 114, 0.16);
}

.news-modal-why strong,
.news-modal-section h3 {
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.news-modal-why p {
  margin-top: 7px;

  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.news-modal-body {
  display: grid;
  gap: 16px;

  padding-top: 24px;
}

.news-modal-section {
  padding: 18px;

  border-radius: 20px;

  background: rgba(248, 252, 250, 0.78);

  border:
    1px solid
    var(--border-subtle);
}

.news-modal-section p {
  margin-top: 9px;

  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.news-modal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;

  margin-top: 28px;
  padding-top: 22px;
  padding-bottom: 30px;

  background:
    linear-gradient(
      180deg,
      rgba(248, 252, 250, 0),
      rgba(248, 252, 250, 0.92)
    );

  border-top:
    1px solid
    var(--border-subtle);
}


/* ============================================================
   14. PROCESS
============================================================ */

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

.process-line {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 14px;
}

.process-line::before {
  content: "";

  position: absolute;

  top: 42px;
  left: 5%;
  right: 5%;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--pastel-green-300),
      var(--pastel-yellow-300),
      var(--pastel-pink-300),
      var(--pastel-blue-300)
    );
}

.process-line article {
  position: relative;
  z-index: 2;

  padding: 20px;

  border-radius: 24px;

  background: var(--bg-surface);

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-sm);
}

.process-line article > span {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin-bottom: 20px;

  border-radius: 14px;

  background: var(--pastel-green-200);

  font-size: 0.72rem;
  font-weight: var(--weight-black);
}

.process-line article:nth-child(2) > span {
  background: var(--pastel-yellow-200);
}

.process-line article:nth-child(3) > span {
  background: var(--pastel-pink-200);
}

.process-line article:nth-child(4) > span {
  background: var(--pastel-blue-200);
}

.process-line article:nth-child(5) > span {
  background: var(--pastel-purple-200);
}

.process-line article:nth-child(6) > span {
  background: var(--pastel-green-300);
}

.process-line h3 {
  font-size: 1rem;
}

.process-line p {
  margin-top: 7px;

  color: var(--text-muted);

  font-size: 0.82rem;
}


/* ============================================================
   15. STATISTICS
============================================================ */

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

.stats-section h2,
.stats-section h3 {
  color: var(--text-inverse);
}

.stats-section p {
  color: var(--text-inverse-soft);
}

.stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.counter-card,
.stat-card {
  padding: 28px;

  border-radius: var(--radius-2xl);

  background:
    rgba(255, 255, 255, 0.07);

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  backdrop-filter:
    blur(var(--blur-md));
}

.counter-number,
.stat-card strong {
  display: block;

  color: var(--text-inverse);

  font-size:
    clamp(
      2.4rem,
      4vw,
      4rem
    );

  font-weight: var(--weight-black);

  line-height: 1;

  letter-spacing: var(--tracking-tighter);
}

.counter-card span,
.stat-card span {
  display: block;

  margin-top: 10px;

  color: var(--text-inverse-soft);

  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
}


/* ============================================================
   16. FAQ
============================================================ */

.faq-section {
  background: var(--bg-page-soft);
}

.faq-grid {
  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    var(--border-default);

  overflow: hidden;
}

.faq-list summary {
  position: relative;

  min-height: 64px;

  display: flex;
  align-items: center;

  padding:
    0
    52px
    0
    18px;

  color: var(--text-primary);

  font-size: 0.92rem;
  font-weight: var(--weight-black);

  cursor: pointer;

  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";

  position: absolute;

  right: 17px;
  top: 50%;

  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  transform:
    translateY(-50%);

  border-radius: 50%;

  background: var(--pastel-yellow-200);

  font-size: 1rem;
  font-weight: var(--weight-black);
}

.faq-list details[open] summary::after {
  content: "–";

  background: var(--pastel-green-200);
}

.faq-list details p {
  padding:
    0
    18px
    18px;

  color: var(--text-secondary);

  font-size: 0.9rem;
}


/* ============================================================
   17. CONTACT
============================================================ */

.contact {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(223, 245, 232, 0.58),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 221, 234, 0.48),
      transparent 29%
    ),
    var(--bg-page-soft);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    0.82fr
    1.18fr;

  gap: 28px;

  align-items: start;
}

.contact-info,
.contact-card,
.contact-form {
  padding: 32px;

  border-radius: var(--radius-3xl);

  background:
    rgba(255, 255, 255, 0.78);

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-sm);

  backdrop-filter:
    blur(var(--blur-lg));
}

.contact-info h2,
.contact-card h2 {
  font-size:
    clamp(
      2.1rem,
      3.6vw,
      3.5rem
    );
}

.contact-info p,
.contact-card p {
  margin-top: 16px;

  color: var(--text-secondary);

  line-height: var(--leading-relaxed);
}

.contact-points {
  display: grid;
  gap: 9px;

  margin-top: 28px;
}

.contact-points span,
.contact-points a {
  min-height: 46px;

  display: flex;
  align-items: center;

  padding:
    0
    15px;

  border-radius: 15px;

  color: var(--text-secondary);

  background: var(--bg-surface);

  border:
    1px solid
    var(--border-default);

  font-size: 0.86rem;
  font-weight: var(--weight-bold);
}

.contact-form {
  display: grid;
  gap: 13px;
}

.form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  min-height: var(--input-height);

  padding:
    0
    16px;

  border-radius: var(--input-radius);

  color: var(--text-primary);

  background: var(--input-bg);

  border:
    1px solid
    var(--input-border);

  outline: none;
}

.contact-form textarea {
  min-height: var(--textarea-min-height);

  padding-top: 15px;

  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--input-border-focus);

  box-shadow:
    0 0 0 5px
    var(--input-ring);
}

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

.contact-form button {
  min-height: var(--button-height-lg);

  border-radius: var(--radius-full);

  color: var(--text-inverse);

  background: var(--bg-dark);

  font-size: var(--font-sm);
  font-weight: var(--weight-black);
}

.contact-form small {
  color: var(--text-muted);

  font-size: 0.75rem;
}


/* ============================================================
   18. ABOUT PAGE
============================================================ */

.about-hero {
  background:
    radial-gradient(
      circle at 10% 14%,
      rgba(223, 245, 232, 0.68),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(255, 221, 234, 0.46),
      transparent 26%
    ),
    var(--bg-page);
}

.about-hero-grid {
  min-height: 420px;

  display: grid;
  align-items: center;
}

.about-hero .section-heading {
  max-width: 920px;
}

.about-hero h1 {
  max-width: 980px;

  font-size:
    clamp(
      2.6rem,
      5.4vw,
      5.4rem
    );
}

.about-hero p {
  max-width: 790px;

  font-size: 1.08rem;
  line-height: var(--leading-relaxed);
}

.about-founder-section {
  background: var(--bg-surface);
}

.about-founder {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.86fr)
    minmax(0, 1.14fr);
  gap: 34px;

  align-items: center;
}

.about-portrait {
  position: relative;

  aspect-ratio: 4 / 5;

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(223, 245, 232, 0.88),
      rgba(255, 243, 189, 0.62)
    );

  border:
    1px solid
    var(--border-default);

  box-shadow:
    0 24px 60px
    rgba(33, 49, 47, 0.13);

  overflow: hidden;
}

.about-portrait::after {
  content: "";

  position: absolute;
  inset: 12px;

  border-radius: 24px;

  border:
    1px solid
    rgba(255, 255, 255, 0.42);

  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.about-founder-copy {
  padding: 34px;

  border-radius: var(--radius-3xl);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(242, 250, 246, 0.78)
    );

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-sm);
}

.about-founder-copy h2 {
  font-size:
    clamp(
      2rem,
      3.4vw,
      3.2rem
    );
}

.about-founder-copy strong {
  display: block;

  margin-top: 8px;

  color: var(--brand-green-700);

  font-size: var(--font-sm);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.about-founder-copy p {
  margin-top: 22px;

  color: var(--text-secondary);

  font-size: 1rem;
  line-height: var(--leading-relaxed);
}

.about-team-section {
  background:
    radial-gradient(
      circle at 14% 24%,
      rgba(223, 245, 232, 0.54),
      transparent 28%
    ),
    var(--bg-page-soft);
}

.about-team-panel {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding: 42px;
  border-radius: var(--radius-3xl);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(246, 251, 248, 0.82)
    );
  border: 1px solid var(--border-default);
  box-shadow: 0 18px 46px rgba(33, 49, 47, 0.08);
}

.about-team-panel h2 {
  font-size:
    clamp(
      2rem,
      4vw,
      3.7rem
    );
}

.about-team-copy {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.about-team-copy p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: var(--leading-relaxed);
}

.about-mission-section {
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(255, 243, 189, 0.42),
      transparent 25%
    ),
    var(--bg-page-soft);
}

.about-card-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-card,
.about-value {
  position: relative;

  padding: 24px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-sm);

  overflow: hidden;
}

.about-card::before {
  content: "";

  position: absolute;
  right: -42px;
  top: -48px;

  width: 118px;
  height: 118px;

  border-radius: 50%;

  background:
    rgba(223, 245, 232, 0.72);
}

.about-card:nth-child(2)::before {
  background:
    rgba(255, 243, 189, 0.76);
}

.about-card:nth-child(3)::before {
  background:
    rgba(255, 221, 234, 0.7);
}

.about-card:nth-child(4)::before {
  background:
    rgba(208, 234, 255, 0.72);
}

.about-card span {
  position: relative;
  z-index: 2;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 14px;

  color: var(--text-primary);
  background: var(--pastel-green-100);

  font-size: var(--font-xs);
  font-weight: var(--weight-black);
}

.about-card h3,
.about-value h3 {
  position: relative;
  z-index: 2;

  font-size: 1.1rem;
}

.about-card p,
.about-value p {
  position: relative;
  z-index: 2;

  margin-top: 10px;

  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: var(--leading-relaxed);
}

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

.about-values-grid {
  display: grid;
  grid-template-columns:
    0.82fr
    1.18fr;
  gap: 34px;

  align-items: start;
}

.about-values-list {
  display: grid;
  gap: 12px;
}

.about-value {
  display: grid;
  grid-template-columns:
    minmax(150px, 0.42fr)
    minmax(0, 1fr);
  gap: 18px;

  align-items: start;
}

.about-value p {
  margin-top: 0;
}

.about-cta-section {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(223, 245, 232, 0.62),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 72%,
      rgba(255, 221, 234, 0.42),
      transparent 28%
    ),
    var(--bg-page);
}

.about-cta {
  display: grid;
  justify-items: center;
  gap: 24px;

  padding: 46px;

  border-radius: var(--radius-3xl);

  text-align: center;

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    var(--border-default);

  box-shadow:
    0 22px 58px
    rgba(33, 49, 47, 0.1);
}

.about-cta h2 {
  max-width: 760px;

  font-size:
    clamp(
      2.1rem,
      4.2vw,
      4rem
    );
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}


/* ============================================================
   19. LEGAL INFORMATION
============================================================ */

.legal-note,
.legal-strip {
  padding-block: 36px;

  background: var(--bg-surface);

  border-top:
    1px solid
    var(--border-subtle);
}

.legal-note p {
  max-width: 980px;

  color: var(--text-muted);

  font-size: 0.82rem;
  line-height: var(--leading-relaxed);
}

.legal-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 16px;
}

.legal-grid article {
  padding: 20px;

  border-radius: 18px;

  background: var(--bg-surface-soft);

  border:
    1px solid
    var(--border-subtle);
}

.legal-grid h3 {
  font-size: 0.95rem;
}

.legal-grid p {
  margin-top: 8px;

  color: var(--text-muted);

  font-size: 0.8rem;
}

.legal-content {
  display: grid;
  gap: 18px;

  max-width: 880px;
}

.legal-content article {
  padding: 26px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.8);

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 1.3rem;
}

.legal-content p {
  margin-top: 10px;

  color: var(--text-secondary);

  line-height: var(--leading-relaxed);
}


/* ============================================================
   19. FOOTER
============================================================ */

.footer {
  padding:
    64px
    0
    28px;

  color: var(--footer-text);

  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(181, 229, 202, 0.12),
      transparent 25%
    ),
    var(--footer-bg);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.25fr
    repeat(3, 1fr);

  gap: 30px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer strong {
  display: block;

  margin-bottom: 8px;

  color: var(--footer-title);

  font-size: 0.92rem;
}

.footer a,
.footer p,
.footer span {
  color: var(--footer-text);

  font-size: 0.84rem;
}

.footer a:hover {
  color: var(--text-inverse);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-top: 46px;
  padding-top: 20px;

  border-top:
    1px solid
    var(--footer-border);
}

.footer-bottom p {
  color:
    rgba(255, 255, 255, 0.52);

  font-size: 0.76rem;
}


/* ============================================================
   20. WHATSAPP
============================================================ */

.whatsapp,
.floating-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: var(--z-toast);

  min-height: 50px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding:
    0
    18px;

  border-radius: var(--radius-full);

  color: #ffffff;

  background: var(--whatsapp);

  box-shadow: var(--whatsapp-shadow);

  font-size: 0.82rem;
  font-weight: var(--weight-black);
}

.whatsapp::before,
.floating-whatsapp::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ffffff;
}


/* ============================================================
   21. SEARCH INTERFACE
============================================================ */

.search-overlay {
  position: fixed;
  inset: 0;

  z-index: var(--z-overlay);

  display: grid;
  place-items: start center;

  padding:
    100px
    20px
    30px;

  background:
    rgba(16, 25, 22, 0.56);

  backdrop-filter:
    blur(var(--blur-md));
}

.search-panel {
  width:
    min(
      720px,
      100%
    );

  padding: 20px;

  border-radius: var(--radius-3xl);

  background: var(--bg-surface);

  box-shadow: var(--shadow-xl);
}

.search-input-wrap {
  position: relative;
}

.search-close {
  position: absolute;
  top: 9px;
  right: 9px;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);

  font-size: 1.25rem;
  font-weight: var(--weight-black);
}

.search-input {
  width: 100%;
  min-height: 58px;

  padding:
    0
    58px
    0
    18px;

  border-radius: 18px;

  border:
    1px solid
    var(--border-default);

  background: var(--bg-surface-soft);

  outline: none;
}

.search-results {
  display: grid;
  gap: 8px;

  margin-top: 14px;
}

.search-result {
  display: grid;
  gap: 4px;

  padding: 14px;

  border-radius: 14px;

  background: var(--bg-page-soft);

  border:
    1px solid
    var(--border-subtle);
}

.search-result strong {
  color: var(--text-primary);
}

.search-result small {
  color: var(--brand-green-700);
  font-size: var(--font-xs);
  font-weight: var(--weight-black);
  text-transform: uppercase;
}

.search-result p {
  font-size: var(--font-sm);
}


/* ============================================================
   22. CHATBOT
============================================================ */

.chatbot-button {
  position: fixed;

  right: 22px;
  bottom: 86px;

  z-index: var(--z-toast);

  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--text-primary);

  background: var(--pastel-pink-200);

  box-shadow: var(--shadow-md);
}

.chatbot-panel {
  position: fixed;

  right: 22px;
  bottom: 150px;

  z-index: var(--z-modal);

  width:
    min(
      360px,
      calc(100vw - 30px)
    );

  border-radius: var(--radius-3xl);

  background: var(--bg-surface);

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-xl);

  overflow: hidden;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 16px;

  background: var(--gradient-brand);
}

.chatbot-header strong {
  color: var(--text-primary);
  font-size: var(--font-sm);
  font-weight: var(--weight-black);
}

.chatbot-close {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.66);

  font-size: 1.1rem;
  font-weight: var(--weight-black);
}

.chatbot-messages {
  max-height: 360px;

  display: grid;
  gap: 10px;

  padding: 16px;

  overflow-y: auto;
}

.chat-message {
  max-width: 86%;

  padding:
    11px
    13px;

  border-radius: 15px;

  background: var(--bg-page-soft);

  font-size: 0.84rem;
}

.chat-message.user {
  margin-left: auto;

  color: var(--text-inverse);

  background: var(--brand-green-700);
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  padding:
    0
    16px
    14px;
}

.chatbot-quick-actions button {
  min-height: 34px;
  padding: 0 12px;

  border-radius: var(--radius-full);
  background: var(--pastel-green-100);
  border: 1px solid var(--border-default);

  color: var(--text-primary);
  font-size: var(--font-xs);
  font-weight: var(--weight-black);
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;

  padding: 14px;
  border-top: 1px solid var(--border-subtle);
}

.chatbot-input {
  min-width: 0;
  min-height: 42px;
  padding: 0 13px;

  border-radius: 14px;
  border: 1px solid var(--border-default);
  outline: none;
}

.chatbot-form button {
  min-height: 42px;
  padding: 0 14px;

  border-radius: 14px;
  color: var(--text-inverse);
  background: var(--bg-dark);

  font-size: var(--font-xs);
  font-weight: var(--weight-black);
}

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toast button {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: var(--radius-full);
  background: var(--bg-page-soft);
  border: 1px solid var(--border-subtle);
}


/* ============================================================
   23. MODAL
============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;

  z-index: var(--z-overlay);

  display: grid;
  place-items: center;

  padding: 20px;

  background:
    rgba(16, 25, 22, 0.6);

  backdrop-filter:
    blur(var(--blur-md));
}

.modal-card {
  width:
    min(
      680px,
      100%
    );

  max-height:
    calc(
      100vh -
      40px
    );

  overflow-y: auto;

  padding: 28px;

  border-radius: var(--radius-3xl);

  background: var(--bg-surface);

  box-shadow: var(--shadow-xl);
}


/* ============================================================
   24. TOAST
============================================================ */

.toast-container {
  position: fixed;

  right: 22px;
  top:
    calc(
      var(--header-height)
      +
      18px
    );

  z-index: var(--z-toast);

  display: grid;
  gap: 10px;
}

.toast {
  min-width: 280px;
  max-width: 380px;

  padding: 14px 16px;

  border-radius: 16px;

  background: var(--bg-surface);

  border:
    1px solid
    var(--border-default);

  box-shadow: var(--shadow-md);
}

.toast.success {
  border-color: var(--border-green);
}

.toast.error {
  border-color: var(--border-pink);
}


/* ============================================================
   25. TOOLTIP
============================================================ */

.has-tooltip {
  position: relative;
}

.tooltip {
  position: absolute;

  left: 50%;
  bottom:
    calc(
      100%
      +
      8px
    );

  transform:
    translateX(-50%);

  min-width: max-content;

  padding:
    7px
    10px;

  border-radius: 9px;

  color: var(--text-inverse);

  background: var(--bg-dark);

  font-size: 0.7rem;
  font-weight: var(--weight-bold);

  box-shadow: var(--shadow-sm);
}


/* ============================================================
   26. LOADING
============================================================ */

.loading-state {
  min-height: 180px;

  display: grid;
  place-items: center;
}

.loading-content {
  display: grid;
  justify-items: center;
  gap: 12px;
}


/* ============================================================
   27. EMPTY STATES
============================================================ */

.empty-state {
  padding: 38px 24px;

  text-align: center;

  border-radius: var(--radius-2xl);

  background: var(--bg-page-soft);

  border:
    1px dashed
    var(--border-medium);
}

.empty-state h3 {
  font-size: 1.25rem;
}

.empty-state p {
  max-width: 520px;

  margin:
    10px
    auto
    0;

  color: var(--text-muted);
}


/* ============================================================
   28. ACCESSIBILITY HELPERS
============================================================ */

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip:
    rect(
      0,
      0,
      0,
      0
    );

  white-space: nowrap;

  border: 0;
}

.skip-link {
  position: fixed;

  left: 14px;
  top: 14px;

  z-index: 9999;

  padding:
    10px
    14px;

  border-radius: 10px;

  color: var(--text-inverse);

  background: var(--bg-dark);

  transform:
    translateY(-150%);
}

.skip-link:focus {
  transform:
    translateY(0);
}


/* ============================================================
   29. UTILITY CLASSES
============================================================ */

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.w-full {
  width: 100%;
}

.max-text {
  max-width: 680px;
}


/* ============================================================
   30. END OF STYLE.CSS
============================================================ */

/* ============================================================
   SERVICES EDITORIAL REDESIGN
============================================================ */

.services-bridge {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #12271f 0%, #1a3429 58%, #f7f5ef 100%);
  color: #f7f4ec;
  padding: 58px 0 92px;
}

.services-bridge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1240px, 96vw);
  height: 70px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #f7f5ef;
}

.services-bridge-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.services-bridge-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #bfe7d1;
  font-size: 0.72rem;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.services-bridge h2 {
  max-width: 900px;
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fffdf7;
}

.services-bridge p {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 253, 247, 0.74);
  font-size: 1.04rem;
  line-height: 1.75;
}

.services-bridge-arrow {
  position: absolute;
  right: 0;
  top: 18px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 1;
  color: rgba(191, 231, 209, 0.45);
}

.services-editorial {
  position: relative;
  background:
    radial-gradient(circle at 8% 14%, rgba(223, 245, 232, 0.52), transparent 25%),
    radial-gradient(circle at 90% 22%, rgba(255, 232, 190, 0.42), transparent 24%),
    #f7f5ef;
  padding-top: 76px;
}

.services-editorial-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.services-editorial-header h2 {
  max-width: 780px;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-feature-card,
.services-final-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(29, 59, 47, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(27, 54, 43, 0.08);
}

.service-feature-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -48px;
  top: -56px;
  border-radius: 50%;
  opacity: 0.78;
}

.service-feature-work {
  grid-column: span 7;
  min-height: 390px;
  background: linear-gradient(145deg, #ffffff 30%, #e7f5ec 100%);
}

.service-feature-work::after { background: #ccebd9; }

.service-feature-study {
  grid-column: span 5;
  min-height: 390px;
  background: linear-gradient(145deg, #ffffff 28%, #fff4cd 100%);
}

.service-feature-study::after { background: #ffe8a2; }

.service-feature-docs {
  grid-column: span 4;
  min-height: 330px;
  background: linear-gradient(145deg, #ffffff 32%, #f6e8f2 100%);
}

.service-feature-docs::after { background: #efd0e6; }

.service-feature-arrival {
  grid-column: span 8;
  min-height: 330px;
  background: linear-gradient(145deg, #ffffff 30%, #e7f1fb 100%);
}

.service-feature-arrival::after { background: #cadff2; }

.service-feature-company {
  grid-column: span 8;
  min-height: 340px;
  background: linear-gradient(145deg, #ffffff 32%, #e9efe9 100%);
}

.service-feature-company::after { background: #d5e2d5; }

.services-final-cta {
  grid-column: span 4;
  justify-content: center;
  background: #173126;
  color: #f8f6ef;
  border-color: rgba(255, 255, 255, 0.08);
}

.services-final-cta .eyebrow {
  color: #bde5cf;
}

.services-final-cta h3 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.05;
  color: #fffdf8;
}

.services-final-cta p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.services-final-cta .btn {
  align-self: flex-start;
}

.service-feature-number {
  position: absolute;
  right: 22px;
  bottom: -22px;
  font-size: clamp(5.5rem, 10vw, 9.5rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(30, 70, 54, 0.07);
  pointer-events: none;
  user-select: none;
}

.service-feature-category {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(33, 74, 57, 0.1);
  color: var(--brand-green-700);
  font-size: 0.69rem;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.service-feature-card h3 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.service-feature-docs h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.service-feature-card > p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.service-tags span {
  padding: 7px 11px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(30, 68, 52, 0.1);
  color: #385247;
  font-size: 0.76rem;
  font-weight: var(--weight-bold);
}

.service-feature-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 26px;
  color: #173126;
  font-weight: var(--weight-black);
  text-decoration: none;
}

.service-feature-link span {
  transition: transform var(--transition-default);
}

.service-feature-link:hover span,
.service-feature-link:focus-visible span {
  transform: translateX(4px);
}

.service-feature-card,
.services-final-cta {
  transition:
    transform var(--duration-medium) var(--ease-emphasized),
    box-shadow var(--duration-medium) var(--ease-emphasized),
    border-color var(--duration-normal) var(--ease-standard);
}

.service-feature-card:hover,
.services-final-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(27, 54, 43, 0.12);
  border-color: rgba(44, 93, 72, 0.19);
}

/* ============================================================
   49. MAP REFINEMENT — SIMPLE SLOVENIA OVERVIEW
============================================================ */

.navigator-shell-simple .slovenia-map-wrap {
  min-height: 348px;
  aspect-ratio: 1.62 / 1;
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 18%, rgba(220, 239, 255, 0.34), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 243, 189, 0.24), transparent 30%),
    linear-gradient(155deg, #fbfdfc 0%, #f2f8f5 54%, #e8f3ed 100%);
  border: 1px solid rgba(79, 143, 114, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 38px rgba(33, 49, 47, 0.08);
}

.navigator-shell-simple .slovenia-map-wrap::before {
  background:
    radial-gradient(circle at 50% 45%, rgba(79, 143, 114, 0.055), transparent 54%),
    linear-gradient(rgba(79, 143, 114, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 143, 114, 0.026) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.8;
}

.navigator-shell-simple .slovenia-map {
  inset: 3% 2.5% 8%;
  width: 95%;
  height: 89%;
}

.navigator-shell-simple .map-background {
  fill: rgba(255, 255, 255, 0.28);
  stroke: rgba(79, 143, 114, 0.055);
}

.navigator-shell-simple .map-shape {
  stroke: rgba(48, 104, 82, 0.58);
  stroke-width: 2.5;
}

.navigator-shell-simple .map-contours path {
  stroke: rgba(48, 104, 82, 0.13);
  stroke-width: 1.35;
}

.navigator-shell-simple .map-highlight {
  stroke: rgba(255, 255, 255, 0.66);
  stroke-width: 3;
  opacity: 0.72;
}

.navigator-shell-simple .map-city-halo {
  fill: rgba(255, 255, 255, 0.98);
  stroke: rgba(33, 49, 47, 0.12);
  stroke-width: 1.2;
}

.navigator-shell-simple .map-city-dot {
  fill: #263a35;
  stroke: #ffffff;
  stroke-width: 2.2;
}

.navigator-shell-simple .map-city.is-active .map-city-dot {
  fill: var(--brand-green-600);
}

.navigator-shell-simple .map-city.is-active .map-city-halo {
  stroke: rgba(79, 143, 114, 0.32);
}

.navigator-shell-simple .map-city-label {
  fill: #21312f;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 5px;
  font-size: 17px;
  font-weight: var(--weight-black);
}

.navigator-shell-simple .map-caption {
  left: 18px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(33, 49, 47, 0.06);
}

/* ============================================================
   24. WHATSAPP FLOATING CONTACT APP
   Added 2026-07: app-like contact button for desktop and mobile.
============================================================ */

.contact-apps {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: var(--z-toast, 1000);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.contact-app {
  position: relative;
  isolation: isolate;
  min-width: 148px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  padding: 0 18px 0 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.22);
  -webkit-tap-highlight-color: transparent;
}

.contact-app::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  border: 2px solid currentColor;
  opacity: 0;
  pointer-events: none;
}

.contact-app img {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: block;
  filter: brightness(0) invert(1);
}

.contact-app--whatsapp {
  background: #25d366;
}


.contact-app span {
  color: inherit;
  white-space: nowrap;
}

.contact-app:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* Keep the desktop helper above both contact buttons. */
.chatbot-button {
  bottom: 158px;
}

.chatbot-panel {
  bottom: 224px;
}


/* MODERN CONTACT FORM - 2026 */
.contact-modern {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 10%, rgba(223, 245, 232, 0.82), transparent 31%),
    radial-gradient(circle at 94% 88%, rgba(255, 221, 234, 0.7), transparent 30%),
    linear-gradient(180deg, #fbfcfb 0%, #f4f8f6 100%);
}

.contact-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(30, 48, 41, 0.08) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 72%);
}

.contact-modern > .container {
  position: relative;
  z-index: 1;
}

.contact-modern-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.contact-modern-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-modern-heading p {
  max-width: 650px;
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.contact-info-modern {
  position: sticky;
  top: 106px;
  overflow: hidden;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(34, 63, 53, 0.1);
}

.contact-info-modern::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(223, 245, 232, 0.7);
  pointer-events: none;
}

.contact-info-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #fff;
  background: var(--bg-dark);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-info-modern h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.contact-request {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 70px rgba(34, 63, 53, 0.12);
  backdrop-filter: blur(18px);
}

.contact-request > summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 30px;
  cursor: pointer;
  list-style: none;
  color: var(--text-primary);
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
  font-weight: var(--weight-black);
  letter-spacing: -0.02em;
  transition: background 180ms ease;
}

.contact-request > summary::-webkit-details-marker {
  display: none;
}

.contact-request > summary:hover {
  background: rgba(223, 245, 232, 0.4);
}

.contact-request > summary:focus-visible {
  outline: 3px solid var(--input-ring);
  outline-offset: -3px;
}

.contact-request-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--bg-dark);
  font-size: 2rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 220ms ease, background 180ms ease;
}

.contact-request[open] .contact-request-arrow {
  transform: rotate(90deg);
}

.contact-request-content {
  border-top: 1px solid var(--border-default);
}

.contact-request-intro {
  padding: 27px 30px 4px;
}

.contact-request-lead {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: var(--weight-bold);
  line-height: 1.6;
}

.contact-guidance {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-guidance p {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-secondary);
  background: var(--bg-page-soft);
  border: 1px solid var(--border-default);
  line-height: 1.58;
  font-size: 0.9rem;
}

.contact-guidance strong {
  color: var(--text-primary);
}

.contact-form-modern {
  padding: 24px 30px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: var(--weight-black);
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
  background: rgba(255, 255, 255, 0.96);
}

.contact-form-modern textarea {
  min-height: 180px;
  line-height: 1.6;
}

.contact-form-modern button {
  margin-top: 3px;
  box-shadow: 0 14px 30px rgba(23, 39, 34, 0.18);
}

.contact-privacy-note {
  color: var(--text-muted);
  font-size: 0.77rem;
  line-height: 1.62;
}

.contact-privacy-note a,
.privacy-checkbox a {
  color: var(--text-primary);
  font-weight: var(--weight-bold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(223, 245, 232, 0.5);
  border: 1px solid rgba(99, 143, 124, 0.25);
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.5;
}

.privacy-checkbox input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 6px;
  accent-color: #1d4c3b;
}

.contact-form.form-error .privacy-checkbox,
.contact-form.form-error input:invalid,
.contact-form.form-error select:invalid,
.contact-form.form-error textarea:invalid {
  border-color: rgba(187, 54, 54, 0.65);
}

@media (max-width: 900px) {
  .contact-modern-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-info-modern {
    position: relative;
    top: auto;
  }
}

@media (max-width: 600px) {
  .contact-modern-heading {
    margin-bottom: 22px;
  }

  .contact-info-modern {
    padding: 22px;
  }

  .contact-request {
    border-radius: 24px;
  }

  .contact-request > summary {
    min-height: 76px;
    padding: 0 20px;
  }

  .contact-request-arrow {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .contact-request-intro {
    padding: 22px 20px 2px;
  }

  .contact-form-modern {
    padding: 20px;
  }

  .contact-guidance p {
    padding: 13px 14px;
  }
}


/* ============================================================
   50. FINAL HERO NAVIGATOR FIX — SALARY CARDS IN MAP CORNERS
============================================================ */
.navigator-shell-simple .slovenia-map-wrap {
  min-height: 360px;
  aspect-ratio: 1.62 / 1;
  overflow: hidden;
}

.navigator-shell-simple .slovenia-map {
  left: 14%;
  top: 18%;
  right: auto;
  bottom: auto;
  width: 72%;
  height: 64%;
}

.navigator-shell-simple .map-caption {
  display: none;
}

.navigator-shell-simple .map-floating-stats {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.navigator-shell-simple .map-stat-card {
  width: clamp(118px, 27%, 148px);
  min-height: 72px;
  padding: 11px 12px;
  gap: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(79, 143, 114, 0.16);
  box-shadow: 0 12px 26px rgba(33, 49, 47, 0.11);
}

.navigator-shell-simple .map-stat-card strong {
  font-size: clamp(0.94rem, 1.7vw, 1.14rem);
  line-height: 1;
}

.navigator-shell-simple .map-stat-card span {
  font-size: clamp(0.56rem, 0.82vw, 0.65rem);
  line-height: 1.2;
}

.navigator-shell-simple .map-stat-card.corner-top-left {
  top: 14px;
  left: 14px;
}

.navigator-shell-simple .map-stat-card.corner-top-right {
  top: 14px;
  right: 14px;
}

.navigator-shell-simple .map-stat-card.corner-bottom-left {
  bottom: 14px;
  left: 14px;
}

.navigator-shell-simple .map-stat-card.corner-bottom-right {
  right: 14px;
  bottom: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .navigator-shell-simple .map-stat-card {
    animation: none;
  }
}


.contact-points-modern {
  gap: 12px;
}

.contact-points-modern a,
.contact-points-modern span {
  justify-content: flex-start;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(79, 143, 114, 0.16);
  box-shadow: 0 10px 24px rgba(33, 49, 47, 0.06);
}

.contact-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.contact-social-btn {
  min-height: 92px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 14px 10px;
  border-radius: 18px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(79, 143, 114, 0.16);
  box-shadow: 0 14px 28px rgba(33, 49, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-social-btn:hover,
.contact-social-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(33, 49, 47, 0.12);
  border-color: rgba(79, 143, 114, 0.28);
}

.contact-social-btn span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--bg-dark), var(--brand-green-700));
  font-size: 0.84rem;
  font-weight: var(--weight-black);
  letter-spacing: 0.02em;
}

.contact-social-btn span img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-social-btn small {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: var(--weight-extrabold);
}

.contact-form-simple {
  gap: 18px;
}

.contact-form-simple .form-field-message {
  gap: 10px;
}

.contact-form-simple .form-field-message > span {
  font-size: 0.8rem;
}

.contact-form-simple textarea {
  min-height: 220px;
}

.contact-form-simple button {
  width: 100%;
}

@media (max-width: 600px) {
  .contact-socials {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-social-btn {
    min-height: 76px;
    grid-template-columns: 42px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 12px;
  }

  .contact-social-btn small {
    font-size: 0.82rem;
  }
}


/* ============================================================
   SERVICE PACKAGE DIALOGS
============================================================ */
.package-dialog {
  width: min(1180px, calc(100% - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 30px;
  color: var(--text-primary);
  background: transparent;
  box-shadow: 0 36px 110px rgba(20, 35, 31, 0.32);
  overflow: hidden;
}

.package-dialog::backdrop {
  background: rgba(18, 30, 27, 0.68);
  backdrop-filter: blur(8px);
}

.package-dialog[open] {
  animation: packageDialogIn 220ms ease-out both;
}

.package-dialog-shell {
  max-height: min(900px, calc(100dvh - 32px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background:
    radial-gradient(circle at 6% 8%, rgba(223, 245, 232, 0.92), transparent 30%),
    radial-gradient(circle at 94% 18%, rgba(255, 221, 234, 0.68), transparent 26%),
    #f8fbf9;
}

.package-dialog-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 34px 26px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(79, 143, 114, 0.14);
  backdrop-filter: blur(18px);
}

.package-dialog-header > div {
  max-width: 850px;
}

.package-dialog-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand-green-700);
  background: var(--pastel-green-100);
  font-size: 0.7rem;
  font-weight: var(--weight-black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-dialog-header h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.package-dialog-header p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.package-dialog-close {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--bg-dark);
  box-shadow: 0 12px 24px rgba(23, 36, 33, 0.18);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.package-dialog-body {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 28px 34px 34px;
}

.package-dialog-intro,
.package-important {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 143, 114, 0.14);
  box-shadow: 0 12px 30px rgba(33, 49, 47, 0.06);
}

.package-dialog-intro {
  margin-bottom: 22px;
}

.package-dialog-intro p,
.package-important p {
  color: var(--text-secondary);
  line-height: 1.68;
}

.package-grid {
  display: grid;
  gap: 22px;
}

.package-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(79, 143, 114, 0.15);
  box-shadow: 0 20px 54px rgba(33, 49, 47, 0.09);
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: -66px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(223, 245, 232, 0.7);
  pointer-events: none;
}

.package-card-complete::before {
  background: rgba(255, 243, 189, 0.72);
}

.package-card-language::before {
  background: rgba(255, 221, 234, 0.7);
}

.package-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-default);
}

.package-card-head span {
  display: block;
  color: var(--brand-green-700);
  font-size: 0.72rem;
  font-weight: var(--weight-black);
  letter-spacing: 0.08em;
}

.package-card-head h3 {
  margin-top: 5px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.package-card-head > strong {
  max-width: 260px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-primary);
  background: var(--bg-page-soft);
  border: 1px solid var(--border-default);
  font-size: 0.82rem;
  line-height: 1.25;
  text-align: center;
}

.package-card-for {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.package-card h4 {
  margin-top: 24px;
  font-size: 1.08rem;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 27px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02em;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-green-700);
  font-size: 0.68rem;
  font-weight: var(--weight-black);
}

.package-includes,
.package-card > p:not(.package-card-for) {
  margin-top: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.package-course-callout,
.package-goal {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-page-soft);
  border: 1px solid var(--border-default);
}

.package-course-callout strong {
  display: block;
  font-size: 1.05rem;
}

.package-course-callout p,
.package-goal p {
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.62;
}

.package-goal h4 {
  margin-top: 0;
}

.package-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-dark), var(--brand-green-700));
  color: #fff;
}

.package-payment span {
  font-size: 0.75rem;
  font-weight: var(--weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.package-payment strong {
  font-size: 0.95rem;
  text-align: right;
}

.package-important {
  margin-top: 22px;
  border-color: rgba(166, 116, 41, 0.22);
  background: rgba(255, 247, 215, 0.78);
}

.package-important h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-important p {
  margin-top: 9px;
}

.package-dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
}

.package-dialog-footer .btn {
  min-height: 50px;
}

.package-dialog-open {
  overflow: hidden;
}

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

@media (max-width: 700px) {
  .package-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
  }

  .package-dialog-shell {
    max-height: calc(100dvh - 16px);
  }

  .package-dialog-header {
    padding: 22px 20px 19px;
    gap: 14px;
  }

  .package-dialog-header h2 {
    font-size: 1.85rem;
  }

  .package-dialog-header p {
    font-size: 0.9rem;
  }

  .package-dialog-close {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
  }

  .package-dialog-body {
    padding: 18px 16px 22px;
  }

  .package-card {
    padding: 21px 18px;
    border-radius: 22px;
  }

  .package-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .package-card-head > strong {
    max-width: 100%;
    text-align: left;
  }

  .package-card li {
    font-size: 0.9rem;
  }

  .package-payment {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .package-payment strong {
    text-align: left;
  }

  .package-dialog-footer {
    flex-direction: column;
  }

  .package-dialog-footer .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-dialog[open] {
    animation: none;
  }
}

/* ABOUT PAGE — MARKETINŠKI ESEJ */
.about-values-grid--essay {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 48px;
}

.about-values-grid--essay > .section-heading {
  position: sticky;
  top: 112px;
}

.about-essay {
  display: grid;
  gap: 26px;
}

.about-essay-copy {
  display: grid;
  gap: 18px;
}

.about-essay-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.82;
}

.about-essay-audience {
  padding-top: 18px;
  border-top: 1px solid var(--border-default);
}

.about-essay-audience strong {
  color: var(--text-primary);
  font-weight: var(--weight-black);
}

.about-language-promo {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 221, 234, 0.86), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(223, 245, 232, 0.96), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(246, 251, 248, 0.92));
  border: 1px solid rgba(79, 143, 114, 0.18);
  box-shadow: 0 24px 58px rgba(33, 49, 47, 0.11);
}

.about-language-promo::after {
  content: "40";
  position: absolute;
  right: -10px;
  bottom: -44px;
  color: rgba(79, 143, 114, 0.08);
  font-size: clamp(8rem, 18vw, 13rem);
  font-weight: var(--weight-black);
  line-height: 1;
  pointer-events: none;
}

.about-language-promo > * {
  position: relative;
  z-index: 1;
}

.about-language-promo h3 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about-language-promo p {
  max-width: 780px;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-language-highlight {
  max-width: 760px;
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--brand-green-800, var(--text-primary));
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(79, 143, 114, 0.17);
  font-size: 1.02rem;
  line-height: 1.55;
}

.about-essay-note {
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--text-muted);
  background: var(--bg-page-soft);
  border: 1px solid var(--border-default);
  font-size: 0.86rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-values-grid--essay {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .about-values-grid--essay > .section-heading {
    position: static;
  }
}

@media (max-width: 600px) {
  .about-essay-copy p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .about-language-promo {
    border-radius: 24px;
  }
}


