:root {
  --bg-primary: #050505;
  --bg-secondary: #11111a;
  --accent: #fff52e;
  --accent-2: #dfaf29;
  --text-muted: #a3a3b2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Arial', sans-serif;
  background: radial-gradient(circle at top, #1f1f2e, var(--bg-primary) 65%);
  color: #f5f5f5;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

.navbar {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
}

main {
  padding-top: 80px;
}

.hero {
  padding: 60px 0 80px;
}

.hero-logo {
  width: 100%;
  max-width: 600px;
}

svg text {
  fill: #ffffff;
  font-family: 'Inter', sans-serif;
}

#logoText {
  font-size: 60px;
  opacity: 0;
}

#infoText {
  font-size: 26px;
  opacity: 0;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta .btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  color: #000;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(223, 175, 41, 0.4);
}

.contact-card .btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  color: #000;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-modal .btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  color: #000;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(223, 175, 41, 0.4);
}

.contact-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(223, 175, 41, 0.4);
}

.btn-outline-light {
  border-width: 2px;
}

.hero-kpi .kpi-title {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-kpi .kpi-desc {
  color: var(--text-muted);
  margin: 0;
}

.section {
  padding: 100px 0;
}

.bg-dark-800 {
  background: var(--bg-secondary);
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1.5rem;
}

.feature-list,
.benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li,
.benefits li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.feature-list li::before,
.benefits li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  left: 0;
  top: 10px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 4px;
  color: #f5f5f5;
}

.feature-card .card-body {
  padding: 28px;
  color: #e4e4ec;
}

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

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.bg-gradient {
  background: linear-gradient(135deg, rgba(255, 245, 46, 0.12), rgba(223, 175, 41, 0.05));
  color: #f7f7f7;
}

.bg-gradient .card-title,
.bg-gradient .card-text,
.bg-gradient p,
.bg-gradient li {
  color: #f0f0fa;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card .form-control {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-card .form-label {
  color: #f0f0f0;
  font-weight: 500;
}

.contact-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.contact-card .form-control:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
  box-shadow: none;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
  margin-top: 40px;
  color: #fff;
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1040;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  padding: 20px;
}

.cookie-modal__content {
  background: #11111a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.cookie-modal__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.cookie-modal__text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero-logo {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .cookie-modal {
    align-items: flex-end;
    padding: 0;
  }

  .cookie-modal__content {
    border-radius: 24px 24px 0 0;
    max-width: 100%;
    width: 100%;
    padding: 20px;
    font-size: 0.9rem;
  }

  .cookie-modal__title {
    font-size: 1.1rem;
  }

  .cookie-modal__text {
    font-size: 0.9rem;
  }
}
