:root {
  --navy: #102C47;
  --navy-dark: #0B2238;
  --gold: #B8954A;
  --gold-light: #D2B875;
  --warm: #FAF9F6;
  --cream: #F4F0E8;
  --ink: #252A2E;
  --ink-soft: #545E68;
  --line: #E5E1D8;
  --white: #ffffff;

  --accent-1: #102C47;
  --accent-2: #B8954A;
  --accent-3: #0B2238;

  --glass-bg: rgba(244, 240, 232, 0.9);
  --glass-strong: rgba(250, 249, 246, 0.97);
  --glass-border: rgba(184, 149, 74, 0.3);
  --glass-shadow: 0 10px 30px rgba(11, 34, 56, 0.1);
  --blur: blur(22px) saturate(160%);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1000px 700px at 85% -5%, rgba(184, 149, 74, 0.16), transparent 60%),
    radial-gradient(900px 650px at 5% 15%, rgba(16, 44, 71, 0.12), transparent 60%),
    radial-gradient(1000px 800px at 50% 110%, rgba(210, 184, 117, 0.14), transparent 60%),
    linear-gradient(180deg, var(--warm) 0%, var(--cream) 50%, var(--warm) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 44, 71, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 44, 71, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 75%);
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ---------------- Preloader ---------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--warm), var(--cream));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  width: min(520px, 86vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 16px 36px rgba(16, 44, 71, 0.18));
  animation: preloader-pop 0.7s var(--ease);
}
@keyframes preloader-pop {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------------- Icon sprite (SVG logo) ---------------- */
.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------------- Progress bar ---------------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  z-index: 950;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  box-shadow: 0 0 12px rgba(184, 149, 74, 0.45);
}

/* ---------------- Header / Nav ---------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 26px 0;
  transition: padding 0.4s var(--ease), background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  padding: 14px 0;
  background: var(--glass-strong);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(16, 44, 71, 0.3));
  transition: transform 0.4s var(--ease), filter 0.4s ease;
}
.brand:hover .brand-mark {
  transform: rotate(-5deg) scale(1.06);
  filter: drop-shadow(0 10px 22px rgba(184, 149, 74, 0.45));
}
.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.brand-text small {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1.2;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  position: relative;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 18px;
  border-radius: 999px;
  transition: color 0.3s, background 0.3s;
}
.nav-link:hover {
  color: var(--navy);
  background: rgba(250, 249, 246, 0.75);
}
.nav-link.active {
  color: var(--navy);
  background: rgba(250, 249, 246, 0.9);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.nav-cta {
  display: flex;
}
.nav-cta-mobile {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: 0 12px 26px rgba(16, 44, 71, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(16, 44, 71, 0.45);
}
.section-dark .btn-primary {
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 12px 26px rgba(11, 34, 56, 0.45);
}
.section-dark .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), #e3c984);
  box-shadow: 0 18px 34px rgba(184, 149, 74, 0.35);
}
.btn-outline {
  color: var(--navy);
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-color: rgba(184, 149, 74, 0.5);
  box-shadow: 0 8px 24px rgba(11, 34, 56, 0.1);
}
.btn-outline:hover {
  transform: translateY(-3px);
  background: var(--cream);
  border-color: rgba(184, 149, 74, 0.8);
}
.btn-sm {
  padding: 12px 24px;
  font-size: 0.92rem;
}
.btn-block {
  width: 100%;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.blob-1 {
  width: 420px;
  height: 420px;
  top: 8%;
  left: 6%;
  background: radial-gradient(circle at 30% 30%, #1b3a5c, #102C47);
}
.blob-2 {
  width: 360px;
  height: 360px;
  bottom: 6%;
  right: 4%;
  background: radial-gradient(circle at 60% 40%, #e0c98a, #b8954a);
  opacity: 0.4;
  animation-delay: -4s;
}
.blob-3 {
  width: 300px;
  height: 300px;
  top: 55%;
  left: 55%;
  background: radial-gradient(circle at 40% 50%, #2c4a66, #0B2238);
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -35px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.94); }
}
.particles {
  position: absolute;
  inset: 0;
}
.particles i {
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 44, 71, 0.85), rgba(184, 149, 74, 0.85));
  filter: blur(0.5px);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  100% { transform: translateY(-105vh) translateX(40px); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  margin-bottom: 26px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
}
.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  box-shadow: 0 0 0 4px rgba(184, 149, 74, 0.2);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--navy);
}
.accent-text {
  background: linear-gradient(120deg, var(--navy) 15%, var(--gold) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-dark .accent-text {
  background: linear-gradient(120deg, var(--gold-light) 10%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
#typewriter {
  display: block;
  white-space: nowrap;
  min-height: 1.2em;
}
#typewriter::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 4px;
  vertical-align: -0.12em;
  background: var(--gold);
  animation: blink 0.85s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
}
.hero-sub strong {
  color: var(--navy);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.stat {
  padding: 22px 16px;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.stat:hover {
  transform: translateY(-6px);
  background: var(--glass-strong);
}
.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--gold);
  display: block;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.8rem;
  z-index: 1;
}
.mouse {
  display: block;
  width: 26px;
  height: 42px;
  margin: 0 auto 8px;
  border: 2px solid var(--ink-soft);
  border-radius: 999px;
  position: relative;
}
.wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------------- Marquee ---------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  transform: rotate(-1.5deg) scale(1.02);
  margin: -6px 0 40px;
  box-shadow: 0 16px 40px rgba(11, 34, 56, 0.35);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: rgba(250, 249, 246, 0.92);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "✦";
  position: absolute;
  margin-left: 22px;
  font-size: 0.8rem;
  opacity: 0.85;
  color: rgba(210, 184, 117, 0.9);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------------- Sections ---------------- */
.section {
  padding: 96px 0;
  position: relative;
  scroll-margin-top: 80px;
}
.section-dark {
  background: linear-gradient(180deg, rgba(16, 44, 71, 0.96), rgba(11, 34, 56, 0.98), rgba(16, 44, 71, 0.96));
  z-index: 0;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 450px at 90% 10%, rgba(184, 149, 74, 0.18), transparent 60%),
    radial-gradient(650px 450px at 8% 85%, rgba(210, 184, 117, 0.1), transparent 60%);
}
.section-dark {
  color: #eef3f8;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(244, 240, 232, 0.85);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.section-dark .eyebrow {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(210, 184, 117, 0.3);
}
.eyebrow-gold {
  color: var(--gold);
  border-color: rgba(184, 149, 74, 0.4);
  background: rgba(255, 252, 245, 0.9);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--navy);
}
.section-dark .section-title {
  color: #eef3f8;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.section-dark .section-sub {
  color: #b9c6d4;
}

/* ---------------- Glass cards ---------------- */
.card,
.feature,
.about-card,
.callout {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.3s;
}
.card:hover,
.feature:hover,
.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 149, 74, 0.55);
  box-shadow: 0 20px 44px rgba(11, 34, 56, 0.16);
}
.section-dark .card,
.section-dark .callout {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.section-dark .card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(210, 184, 117, 0.4);
}

/* ---------------- About ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-card {
  padding: 34px 28px;
  text-align: center;
}
.about-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(16, 44, 71, 0.1), rgba(184, 149, 74, 0.18));
  border: 1px solid rgba(184, 149, 74, 0.4);
}
.about-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}
.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.about-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------------- Profile (O meni) ---------------- */
.profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1120px;
  margin: -14px auto 58px;
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}
.profile-photo {
  position: relative;
  border-radius: var(--radius-md);
  aspect-ratio: 2 / 3;
  border: 1px solid var(--glass-border);
  box-shadow: 0 14px 34px rgba(16, 44, 71, 0.2);
}
.profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(16, 44, 71, 0.16), transparent 45%),
    linear-gradient(20deg, transparent 60%, rgba(184, 149, 74, 0.18));
  pointer-events: none;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.profile-badge {
  position: absolute;
  right: -54px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  width: 108px;
  height: 108px;
  text-align: center;
  background: linear-gradient(145deg, #fdfbf6, #f5efe2);
  border: 1px solid rgba(184, 149, 74, 0.6);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(16, 44, 71, 0.22), inset 0 0 0 4px rgba(255, 255, 255, 0.6);
}
.profile-badge::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(184, 149, 74, 0.45);
  border-radius: 50%;
  pointer-events: none;
}
.profile-badge-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.profile-badge-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
  color: var(--gold);
}
.profile-badge-text {
  display: block;
  margin-top: 5px;
  padding: 0 12px;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}
.profile-values {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 149, 74, 0.35);
}
.profile-value {
  position: relative;
  flex: 1;
  text-align: center;
}
.profile-value + .profile-value::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 149, 74, 0.45), transparent);
}
.profile-value svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  color: var(--gold);
  display: block;
}
.profile-value span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.5;
}
.profile-value .profile-value-desc {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  line-height: 1.5;
}
.profile-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  margin-bottom: 26px;
  color: var(--navy);
}
.profile-role {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.profile-info p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.profile-info p:last-child {
  margin-bottom: 0;
}
.profile-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.profile-point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  padding: 8px;
  border-radius: 12px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(16, 44, 71, 0.08), rgba(184, 149, 74, 0.15));
  border: 1px solid rgba(184, 149, 74, 0.35);
}
.profile-point p {
  flex: 1;
  margin-bottom: 0;
}
.profile-info .profile-point:last-child {
  margin-bottom: 0;
}

/* ---------------- Tabs / Ponudba ---------------- */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.tab {
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #b9c6d4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.tab.active {
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: rgba(210, 184, 117, 0.6);
  box-shadow: 0 10px 26px rgba(184, 149, 74, 0.4);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: tab-in 0.55s cubic-bezier(0.22, 0.8, 0.36, 1);
}
@keyframes tab-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
.tab-panel.active .panel-head {
  animation: tab-head-in 0.5s 0.08s cubic-bezier(0.22, 0.8, 0.36, 1) backwards;
}
.tab-panel.active .card {
  animation: tab-card-in 0.5s cubic-bezier(0.22, 0.8, 0.36, 1) backwards;
}
.tab-panel.active .card:nth-child(2) { animation-delay: 0.07s; }
.tab-panel.active .card:nth-child(3) { animation-delay: 0.14s; }
.tab-panel.active .card:nth-child(4) { animation-delay: 0.21s; }
.tab-panel.active .card:nth-child(5) { animation-delay: 0.28s; }
.tab-panel.active .card:nth-child(6) { animation-delay: 0.35s; }
.tab-panel.active .card:nth-child(7) { animation-delay: 0.42s; }
.tab-panel.active .card:nth-child(8) { animation-delay: 0.49s; }
.tab-panel.active .callout,
.tab-panel.active .panel-feature {
  animation: tab-card-in 0.5s 0.3s cubic-bezier(0.22, 0.8, 0.36, 1) backwards;
}
@keyframes tab-head-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tab-card-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}
.panel-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  color: var(--gold);
  display: block;
}
.panel-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: #eef3f8;
}
.panel-head p {
  color: #b9c6d4;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.card {
  position: relative;
  padding: 26px 24px;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 62%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  opacity: 0.55;
}
.card h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.section-dark .card h4 {
  color: #fff;
}
.card p {
  font-size: 0.92rem;
  color: #b9c6d4;
  position: relative;
  z-index: 1;
}
.panel-feature {
  padding: 26px 24px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.panel-feature h4 {
  margin-bottom: 14px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-list li {
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #eef3f8;
  background: rgba(16, 44, 71, 0.28);
  border: 1px solid rgba(210, 184, 117, 0.4);
  border-radius: 999px;
}
.callout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  margin-top: 22px;
}
.callout-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 44, 71, 0.3), rgba(184, 149, 74, 0.3));
  border: 1px solid rgba(210, 184, 117, 0.45);
}
.callout-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.callout p {
  font-size: 0.95rem;
  color: #e2e9f1;
}
.callout a {
  color: var(--gold-light);
  font-weight: 700;
}
.callout a:hover {
  text-decoration: underline;
}

/* ---------------- Features ---------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  position: relative;
  padding: 34px 28px;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 62%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  opacity: 0.55;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color: var(--navy);
}
.feature p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--ink);
}
.section-dark .contact-info {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #eef3f8;
}
.contact-info .section-sub {
  color: var(--ink-soft);
}
.section-dark .contact-info .section-sub {
  color: #b9c6d4;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 44, 71, 0.12), rgba(184, 149, 74, 0.18));
  border: 1px solid rgba(184, 149, 74, 0.4);
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.section-dark .contact-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(210, 184, 117, 0.35);
}
.contact-list strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
}
.contact-list a,
.contact-list span {
  font-weight: 600;
}
.contact-list a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.contact-form {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(16, 44, 71, 0.5);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(210, 184, 117, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  scroll-margin-top: 96px;
}
.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  opacity: 0.85;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #f2f5f9;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa7b5;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8d1dc' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select option {
  color: var(--navy);
  background: var(--warm);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(210, 184, 117, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-optional {
  font-weight: 500;
  text-transform: lowercase;
  opacity: 0.6;
}
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.form-group input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.file-picker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}
.file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: filter 0.3s;
}
.file-button:hover {
  filter: brightness(1.08);
}
.file-button-icon {
  width: 16px;
  height: 16px;
}
.file-name {
  font-size: 0.82rem;
  color: #c8d1dc;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-success {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
}
.form-consent {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #b9c6d4;
  text-align: center;
  line-height: 1.5;
}
.form-consent a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.form-consent a:hover {
  color: var(--gold-light);
}

/* ---------------- Footer ---------------- */
.footer {
  padding: 60px 0 30px;
  background: var(--navy-dark);
  color: #a6b2c0;
}
.footer a {
  color: var(--gold-light);
}
.footer a:hover {
  color: #e3c984;
  text-decoration: underline;
}
.footer .brand-text {
  color: #ffffff;
}
.footer .brand-text small {
  color: #a6b2c0;
}
.brand-logo-lg {
  height: 58px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(11, 34, 56, 0.25));
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(210, 184, 117, 0.25);
}
.footer-top p {
  max-width: 460px;
  font-size: 0.92rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  flex-wrap: wrap;
}
.footer-links a {
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-note {
  opacity: 0.65;
}

/* ---------------- Back to top ---------------- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 800;
  width: 52px;
  height: 52px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--navy);
  background: var(--glass-strong);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease), background 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--cream);
}

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.section-head.reveal.in .eyebrow { transition-delay: 0.1s; }
.about-card:nth-child(2).reveal { transition-delay: 0.12s; }
.about-card:nth-child(3).reveal { transition-delay: 0.24s; }
.feature:nth-child(2).reveal { transition-delay: 0.1s; }
.feature:nth-child(3).reveal { transition-delay: 0.2s; }
.feature:nth-child(4).reveal { transition-delay: 0.3s; }
.feature:nth-child(5).reveal { transition-delay: 0.4s; }
.feature:nth-child(6).reveal { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------------- Responsive ---------------- */
@media (max-height: 820px) {
  .hero { padding: 105px 0 64px; }
  .hero-title { font-size: clamp(2.4rem, 6vw, 4rem); }
  .hero-sub { margin-bottom: 26px; }
  .hero-stats { gap: 12px; }
  .stat { padding: 18px 14px; }
  .scroll-hint { display: none; }
}

@media (max-width: 1280px) {
  .nav-cta { display: none; }
  .nav-link { font-size: 0.95rem; padding: 10px 12px; }
  .brand-mark { width: 50px; height: 50px; }
  .brand-text { font-size: 1.12rem; }
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 40px 26px;
    background: var(--glass-strong);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-left: 1px solid var(--glass-border);
    box-shadow: -20px 0 60px rgba(11, 34, 56, 0.25);
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 1.12rem;
    padding: 14px 18px;
  }
  .hamburger { display: flex; z-index: 2; }
  .nav-cta-mobile { display: block; margin-top: 14px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .header.scrolled {
    background: var(--warm);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hamburger {
    background: var(--warm);
    border-color: var(--line);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links {
    background: var(--warm);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .brand-text { font-size: 1.1rem; }
  .brand-text small { display: none; }
  .brand-logo-lg { height: 44px; }
  .hero { padding: 120px 0 100px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-grid,
  .features-grid { grid-template-columns: 1fr; }
  .profile {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
  }
  .profile-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .profile-values {
    flex-wrap: wrap;
    row-gap: 20px;
    text-align: left;
  }
  .profile-value {
    flex: 1 1 40%;
  }
  .profile-value + .profile-value::before {
    display: none;
  }
  .profile-role { margin-bottom: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info,
  .contact-form { padding: 28px 22px; }
  .marquee-track span { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .scroll-hint { display: none; }
  .hero-actions .btn { width: 100%; }
}
