@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #FF5A22;
  --primary-hover: #E04814;
  --background: #0B0E14;
  --surface: #141923;
  --surface-mute: #1A212E;
  --text: #F3F4F6;
  --text-muted: #9CA3AF;
  --accent: #00F0FF;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border: rgba(255, 255, 255, 0.08);
}

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

html, body {
  background-color: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, .btn {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background-color: rgba(255, 90, 34, 0.05);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 14, 20, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  color: var(--primary);
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/slide.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.8) 0%, rgba(11, 14, 20, 0.98) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.tagline {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.section {
  padding: 100px 0;
}

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

.section-header .tagline {
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

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

.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

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

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(95%);
  transition: var(--transition);
}

.card:hover .card-img img {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

.card-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.split-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.split-img img {
  width: 100%;
  display: block;
  filter: grayscale(30%) brightness(90%);
}

.split-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.dark-divider {
  background-color: var(--surface-mute);
  padding: 80px 0;
  text-align: center;
  border-y: 1px solid var(--border);
}

.dark-divider p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.35rem;
  color: var(--text);
  font-style: italic;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 50px;
}

.step-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  border-radius: 6px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 90, 34, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.quote-symbol {
  font-size: 4rem;
  color: var(--primary);
  line-height: 0.1;
  margin-top: 1.5rem;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-title::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-title::after {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-content {
  margin-top: 1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-row h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-row p, .contact-row a {
  color: var(--text-muted);
}

.contact-row a:hover {
  color: var(--text);
}

.form-block {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background-color: var(--background);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.map-wrapper {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(1.1);
}

footer {
  background-color: #06080C;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cookie-settings-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}

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

.consent-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 420px;
  max-width: calc(100vw - 4rem);
  background-color: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 2rem;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
}

.consent-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.consent-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.consent-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  display: none;
}

.consent-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.consent-cat-row input {
  accent-color: var(--primary);
}

.consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.consent-buttons-row {
  display: flex;
  gap: 0.5rem;
}

.consent-btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  width: 100%;
  border-radius: 4px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 60px;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.legal-text-block {
  margin-bottom: 2.5rem;
}

.legal-text-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-text-block p, .legal-text-block li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-text-block ul, .legal-text-block ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.legal-table th, .legal-table td {
  border: 1px solid var(--border);
  padding: 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.legal-table th {
  background-color: var(--surface);
  color: var(--text);
}

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

.tag-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag-label {
  background-color: rgba(255, 90, 34, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}

.thanks-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 80px auto;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 90, 34, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

@media (max-width: 1024px) {
  .grid-3, .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--background);
    flex-direction: column;
    padding: 3rem 1.5rem;
    align-items: center;
    transition: 0.4s ease;
    border-top: 1px solid var(--border);
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: flex;
  }
  .grid-3, .grid-2-col, .testimonials-carousel, .steps-grid, .contact-section {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}