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


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

:root {
  --navy: #1E1B4B;
  --navy-light: #2d2a6e;
  --navy-dark: #14123a;
  --gold: #22B8CF;
  --gold-light: #4dd0e1;
  --white: #ffffff;
  --gray: #F3F4FA;
  --gray-mid: #dfe1ef;
  --text: #1a1b2e;
  --text-muted: #565873;
  --shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
  --shadow-lg: 0 20px 50px rgba(30, 27, 75, 0.15);
  --radius: 14px;
  --transition: 0.3s ease;
  --maxw: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}


h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.bg-gray { background: var(--gray); }


.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(34, 184, 207, 0.35);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 53, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.98rem;
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu a.active {
  color: var(--gold);
}

.nav-cta {
  margin-left: 12px;
  padding: 9px 22px !important;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.hero {
  padding: 160px 0 110px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(34, 184, 207, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  max-width: 820px;
}

.hero .eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1 {
  color: var(--white);
  margin: 16px 0 20px;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 34px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 800;
}

.hero-stats .stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}


.lead-text {
  max-width: 820px;
  margin: 0 auto;
}

.lead-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.lead-text p:first-of-type::first-letter {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  float: left;
  line-height: 1;
  padding: 4px 12px 0 0;
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}


.analysis-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.analysis-block:last-child {
  margin-bottom: 0;
}

.analysis-block.reverse .analysis-media {
  order: -1;
}

.analysis-media {
  height: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.media-1 {
  background: linear-gradient(135deg, #14123a 0%, #2d2a6e 50%, #22B8CF 140%);
}

.media-2 {
  background: linear-gradient(135deg, #2d2a6e 0%, #14123a 60%, #1897ab 130%);
}

.analysis-media::after {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.analysis-media .media-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.analysis-text .eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.analysis-text h2 {
  margin: 12px 0 18px;
}

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

.analysis-text ul {
  list-style: none;
  margin-top: 18px;
}

.analysis-text li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.analysis-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 4px;
  opacity: 0.8;
}


.newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.newsletter .section-head h2 { color: var(--white); }
.newsletter .section-head p { color: rgba(255, 255, 255, 0.75); }

.newsletter-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 7px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-mid);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(34, 184, 207, 0.25);
}

.newsletter .btn-gold { width: 100%; margin-top: 8px; }

.newsletter .disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 18px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success.show { display: block; }

.form-success .check {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .check svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy);
}

.form-success h3 { color: var(--white); margin-bottom: 8px; }
.form-success p { color: rgba(255, 255, 255, 0.75); margin-bottom: 0; }


.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  text-align: center;
}

.footer-bottom .disclaimer {
  font-size: 0.85rem;
  max-width: 720px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.55);
}

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


.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.75); max-width: 640px; margin: 0 auto; }


.content-body {
  max-width: 820px;
  margin: 0 auto;
}

.content-body h2 { margin: 40px 0 14px; font-size: 1.5rem; }
.content-body h3 { margin: 28px 0 10px; }
.content-body p { color: var(--text-muted); }
.content-body ul { margin: 0 0 16px 22px; color: var(--text-muted); }
.content-body li { margin-bottom: 8px; }
.content-body a { color: var(--gold); font-weight: 500; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-mid);
  vertical-align: top;
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 200px;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 34px 24px;
  transition: var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 160%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 700;
}

.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 0; }


.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info .info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info .info-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info .info-item strong { color: var(--navy); display: block; }
.contact-info .info-item span { color: var(--text-muted); }

.map-placeholder {
  height: 280px;
  border-radius: var(--radius);
  margin-top: 20px;
  background: linear-gradient(135deg, #14123a 0%, #2d2a6e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder .media-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-placeholder .pin {
  position: relative;
  color: var(--gold);
  text-align: center;
  z-index: 1;
}

.map-placeholder .pin svg { width: 40px; height: 40px; stroke: var(--gold); margin: 0 auto 8px; }
.map-placeholder .pin span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.contact-form-card .form-group label { color: var(--navy); }

.contact-form-card .form-success h3 { color: var(--navy); }
.contact-form-card .form-success p { color: var(--text-muted); }
.contact-form-card .form-success .check { background: var(--navy); }
.contact-form-card .form-success .check svg { stroke: var(--gold); }


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }


@media (max-width: 1200px) {
  .container { max-width: 960px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 28px 40px;
    gap: 6px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }

  .nav-menu.open { right: 0; }

  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; width: 100%; padding: 14px 12px; }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .section { padding: 64px 0; }

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

  .analysis-block { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .analysis-block.reverse .analysis-media { order: 0; }
  .analysis-media { height: 240px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .kontakt-grid { grid-template-columns: 1fr; gap: 36px; }

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

  .hero-stats { gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }

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

  .hero { padding: 130px 0 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat strong { font-size: 1.7rem; }

  .newsletter-card { padding: 28px 20px; }
  .contact-form-card { padding: 24px 20px; }
  .info-table td:first-child { width: auto; }
  .info-table td { display: block; }
  .info-table td:first-child { padding-bottom: 2px; }
}



.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.site-header.scrolled .lang-switch { border-left-color: var(--gray-mid); }
.lang-switch button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
  padding: 4px 7px;
  border-radius: 6px;
  transition: var(--transition);
}
.lang-switch button:hover { opacity: 1; }
.lang-switch button.active {
  background: var(--gold);
  color: var(--navy);
  opacity: 1;
}
@media (max-width: 768px) {
  .lang-switch {
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-left: none;
    border-top: 1px solid var(--gray-mid);
    justify-content: center;
    width: 100%;
  }
  .lang-switch button { color: var(--navy); font-size: 0.9rem; padding: 8px 14px; }
}
