:root {
  --primary: #d97706;
  --primary-hover: #b45309;
  --secondary: #0f172a;
  --bg-dark: #070c19;
  --bg-light: #f8fafc;
  --bg-section: #e2e8f0;
  --text-main: #334155;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --accent: #2e7d32;
  --card-bg: #ffffff;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-text: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, background 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 16px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

.logo svg {
  height: 32px;
  width: auto;
  fill: currentColor;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--text-white);
  font-weight: 500;
  font-size: 15px;
}

nav a:hover, nav a.active {
  color: var(--primary);
}

.btn-cta {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background-color: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  border: 1.5px solid var(--text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--secondary);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
}

.hero::before {
  content: '';
  position: absolute;
  left:0; top:0; right:0; bottom:0;
  background: linear-gradient(180deg, rgba(7, 12, 25, 0.85) 0%, rgba(7, 12, 25, 0.45) 50%, rgba(7, 12, 25, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero .tagline {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 14px;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-white);
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 600px;
}

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

.stats-row {
  background-color: var(--accent);
  color: var(--text-white);
  padding: 40px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card h3 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.section {
  padding: 80px 0;
}

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

.section-dark h2 {
  color: var(--text-white);
}

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

.section-header span {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

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

.card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.card p {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.text-link:hover {
  color: var(--primary-hover);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-content span {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

.split-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.split-content p {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.split-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.quote-section {
  background-color: var(--secondary);
  color: var(--text-white);
  padding: 100px 0;
  text-align: center;
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
}

.quote-box p {
  font-family: var(--font-title);
  font-size: 28px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  position: relative;
}

.quote-author {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.team-card {
  background: var(--card-bg);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px auto;
  border: 4px solid var(--accent);
}

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

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-card p {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.newsletter-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  padding: 56px 0;
}

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

.newsletter-text h2 {
  color: var(--text-white);
  font-size: 32px;
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 16px 20px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter-btn {
  background-color: var(--secondary);
  color: var(--text-white);
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--bg-dark);
}

footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 80px 0 24px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand h3 {
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 320px;
}

.footer-menu h4, .footer-contact h4 {
  font-family: var(--font-title);
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-menu ul li {
  margin-bottom: 12px;
}

.footer-menu ul li a {
  color: var(--text-light);
}

.footer-menu ul li a:hover {
  color: var(--primary);
}

.footer-contact p {
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p a {
  color: var(--text-light);
}

.footer-contact p a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1.5px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a, .cookie-manage-btn {
  color: var(--text-light);
  background: none;
  border: none;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}

.footer-legal-links a:hover, .cookie-manage-btn:hover {
  color: var(--primary);
}

.contact-container {
  display: grid;
  grid-template-columns: 1.10fr 0.90fr;
  gap: 56px;
}

.form-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--bg-section);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 3px;
}

.error-message {
  color: #dc2626;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 14px;
  color: var(--text-main);
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 480px;
  background: var(--secondary);
  color: var(--text-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none;
}

.cookie-banner h3 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cookie-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border-top: 1.5px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.cookie-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner-buttons button {
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-cookie-accept:hover {
  background-color: var(--primary-hover);
}

.btn-cookie-reject {
  background-color: rgba(255,255,255,0.1);
  color: var(--text-white);
}

.btn-cookie-reject:hover {
  background-color: rgba(255,255,255,0.2);
}

.btn-cookie-settings {
  background-color: transparent;
  color: var(--text-light);
  text-decoration: underline;
}

.btn-cookie-settings:hover {
  color: var(--text-white);
}

.legal-layout {
  padding: 80px 0;
  background: var(--bg-light);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.legal-container h1 {
  font-size: 36px;
  margin-bottom: 24px;
}

.legal-container h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 1.5px solid var(--bg-section);
  padding-bottom: 8px;
}

.legal-container p {
  margin-bottom: 16px;
}

.legal-container ul, .legal-container ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-container li {
  margin-bottom: 8px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.legal-table th, .legal-table td {
  border: 1.5px solid var(--bg-section);
  padding: 12px;
  text-align: left;
}

.legal-table th {
  background-color: var(--bg-light);
  font-weight: 600;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-trigger h3 {
  font-size: 18px;
  margin: 0;
}

.faq-trigger svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content p {
  padding: 0 24px 24px 24px;
}

.faq-item.active .faq-content {
  max-height: 200px;
}

.thank-you-box {
  text-align: center;
  padding: 100px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-box h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-box p {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--text-main);
}

@media (max-width: 991px) {
  .grid-3, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-section, .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background-color: var(--secondary);
    flex-direction: column;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    gap: 16px;
  }
  nav.active {
    display: flex;
  }
  .hero {
    height: 75vh;
  }
  .hero h1 {
    font-size: 38px;
  }
  .grid-3, .team-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-flex {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-container {
    padding: 24px;
  }
}