:root {
  --bg: #0F0B1E;
  --card: rgba(255,255,255,0.06);
  --primary: #00F5A0;
  --accent: #FFD166;
  --text: #E6ECF5;
  --graphite: #121417;
  --gradient: linear-gradient(140deg,#0F0B1E 0%,#1A1432 60%,#2B1F49 100%);
  --shadow-neon: 0 0 10px rgba(0, 245, 160, 0.3);
  --border-radius: 24px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--gradient);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-shadow: 0 0 8px var(--primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--graphite);
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: 0 0 20px var(--primary);
  transform: translateY(-3px);
  text-shadow: none;
}

.btn-accent {
  background: var(--accent);
}

.btn-accent:hover {
  box-shadow: 0 0 20px var(--accent);
}

.glass-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  box-shadow: var(--shadow-neon);
  border-color: var(--primary);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 11, 30, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: var(--text);
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--primary);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 2px;
  background-color: var(--text);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.nav-checkbox {
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 11, 30, 0.7);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Services Section */
.service-card {
  text-align: center;
  padding: 40px 30px;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Process Section */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--graphite);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Cases Section */
.case-card {
  overflow: hidden;
}

.case-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonial-card {
  position: relative;
  padding-top: 50px;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 30px;
  border: 3px solid var(--primary);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
}

/* Form Section */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 245, 160, 0.3);
}

.form-control::placeholder {
  color: rgba(230, 236, 245, 0.6);
}

select.form-control {
  appearance: none;
  padding-right: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
}

select.form-control option {
  background-color: white;
  color: var(--graphite);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.form-submit {
  margin-top: 30px;
  width: 100%;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  cursor: pointer;
  padding: 20px;
  position: relative;
  font-weight: 600;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-toggle {
  display: none;
}

.faq-toggle:checked + .faq-question + .faq-answer {
  display: block;
}

.faq-toggle:checked + .faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question::after {
  content: '-';
}

/* Footer Styles */
.footer {
  padding: 60px 0 30px;
  background: rgba(15, 11, 30, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-description {
  max-width: 400px;
  margin-bottom: 20px;
}

.footer-contact-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact-icon {
  margin-right: 10px;
  color: var(--primary);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--graphite);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  transition: bottom 0.5s ease;
  border-top: 1px solid var(--primary);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-text {
  margin-right: 20px;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Thank You Page */
.thank-you-container {
  max-width: 600px;
  margin: 8rem auto 5rem;
  text-align: center;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 40px;
}

/* Legal Pages */
.legal-container {
  max-width: 800px;
  margin: 120px auto 60px;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 40px;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.legal-container h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  text-align: left;
  margin-bottom: 20px;
}

.legal-container ul,
.legal-container ol {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-container li {
  margin-bottom: 10px;
}

/* Hide honeypot field */
.honeypot {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(15, 11, 30, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .burger {
    display: block;
  }
  
  .nav-checkbox:checked ~ .nav-menu {
    right: 0;
  }
  
  .nav-checkbox:checked ~ .burger div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .nav-checkbox:checked ~ .burger div:nth-child(2) {
    opacity: 0;
  }
  
  .nav-checkbox:checked ~ .burger div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .legal-container {
    padding: 20px;
    margin: 100px auto 40px;
  }
}
