/* Variables & Reset */
:root {
  --bg-dark: #0f1115;
  --bg-card: #181b21;
  --bg-light: #ffffff;
  --primary: #f97316; /* Orange Neon */
  --primary-hover: #ea580c;
  --secondary: #3b82f6; /* Blue Tech */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #1f2937;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 8px;
  --container: 1140px;
  --header-h: 70px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: var(--primary);
  color: #fff;
}
.btn--primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}
.btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--white {
  background: #fff;
  color: var(--bg-dark);
}
.btn--white:hover {
  background: #f3f4f6;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  background: var(--primary);
  color: #fff;
}

.full-width {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.logo__icon {
  color: var(--primary);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.nav__link:hover,
.nav__link.active {
  color: #fff;
}
.nav__link.cta-btn {
  padding: 8px 20px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
}
.nav__link.cta-btn:hover {
  background: var(--primary);
  color: #fff;
}

.burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-nav__link {
  font-size: 1.5rem;
  font-weight: 600;
}
.mobile-nav__link.highlight {
  color: var(--primary);
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 0%, #1e2530 0%, var(--bg-dark) 60%);
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.hero__card {
  position: relative;
  border: 1px solid var(--border);
  padding: 10px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.floating-badge i {
  color: var(--primary);
}

/* Sections */
.section {
  padding: 100px 0;
}
.section--dark {
  background-color: var(--bg-dark);
}
.section--light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section--light .subtitle {
  color: var(--primary-hover);
}

.section__header {
  margin-bottom: 60px;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.card__icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}
.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Content Row */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-row__text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.content-row__text p {
  margin-bottom: 20px;
  color: #4b5563;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #374151;
}
.check-list i {
  color: var(--primary);
  width: 20px;
}

/* Process Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding: 20px;
  border-top: 2px solid var(--border);
}
.step:hover {
  border-color: var(--primary);
}

.step__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 10px;
}
.step:hover .step__num {
  color: var(--primary);
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Banner */
.banner-section {
  padding: 60px 0;
}
.banner {
  background: linear-gradient(135deg, var(--secondary), #1d4ed8);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  color: #fff;
}
.banner__content {
  max-width: 600px;
  margin: 0 auto;
}
.banner h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.banner p {
  margin-bottom: 30px;
  opacity: 0.9;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 24px;
}
.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  transition: 0.3s;
  color: var(--primary);
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h2 {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 2.2rem;
}
.contact-info p {
  color: #4b5563;
  margin-bottom: 30px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: #1f2937;
  font-weight: 500;
}
.contact-list i {
  color: var(--primary);
}

.form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.form__group {
  margin-bottom: 20px;
}
.form__group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}
.form__group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s;
}
.form__group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.form__group input.error {
  border-color: #ef4444;
}
.error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  display: none;
  margin-top: 4px;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form__check input {
  margin-top: 5px;
}
.form__check--label {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
  white-space: nowrap;
}

.form__check--label a {
  color: var(--secondary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000;
  padding: 60px 0;
  border-top: 1px solid #333;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__brand p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  color: #888;
  font-size: 0.9rem;
}
.footer__links a:hover {
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bg-card);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 5000;
  max-width: 320px;
  border: 1px solid var(--border);
  display: none;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content h4 {
  margin-bottom: 8px;
  color: #fff;
}
.cookie-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__text {
    margin: 0 auto 40px;
  }
  .content-row {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .grid-3,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form__check label {
    white-space: normal;
  } /* Allow wrap on tablet/mobile */
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .grid-3,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .floating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 90%;
    justify-content: center;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: var(--bg-dark);
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--primary);
}

.text-wrapper a.email {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: var(--bg-dark);
}

.margin {
  margin: 120px 0 50px;
}
