/* Variables */
:root {
  --bg-dark: #0a0f1c;
  --bg-card: #111827;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --primary: #a3e635; /* Lime */
  --primary-hover: #84cc16;
  --accent: #8b5cf6; /* Violet */
  --border: #1f2937;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --container-width: 1200px;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

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

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bg-dark {
  background-color: #05080f;
}

.bg-light-gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.bg-lime {
  background-color: var(--primary);
  color: var(--bg-dark);
}

.bg-lime p,
.bg-lime h2 {
  color: var(--bg-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--bg-dark);
  border: 1px solid var(--primary);
}

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

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn--outline:hover {
  background: rgba(163, 230, 53, 0.1);
}

.btn--text {
  background: transparent;
  color: #fff;
  padding: 16px 0;
}

.btn--text:hover {
  color: var(--primary);
  gap: 12px;
}

.btn--black {
  background-color: var(--bg-dark);
  color: #fff;
  border: 1px solid var(--bg-dark);
}

.btn--black:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: var(--primary);
  color: var(--bg-dark);
  border: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav__link {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.desktop-nav__link:hover,
.desktop-nav__link.active {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-nav__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.mobile-nav__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav__link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.mobile-nav__link:hover {
  color: var(--primary);
}

.mobile-nav__footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--text-muted);
}

/* Hero */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

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

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 230, 53, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(163, 230, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0);
  }
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.visual-card__header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.bg-red {
  background: #ef4444;
}
.bg-yellow {
  background: #eab308;
}
.bg-green {
  background: #22c55e;
}

.chat-message {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  max-width: 80%;
  font-size: 0.95rem;
}

.incoming {
  background: var(--border);
  color: var(--text-main);
}

.outgoing {
  background: rgba(139, 92, 246, 0.2);
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.4);
  margin-left: auto;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chat-status i {
  width: 16px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

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

.feature-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(163, 230, 53, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-list {
  margin-bottom: 32px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.benefits-list i {
  color: var(--primary);
}

/* Blog */
.grid-2-1 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--accent);
}

.large {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg-card), #1e1b4b);
}

.blog-date {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.read-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--primary);
}

.blog-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-card.small h3 {
  font-size: 1.25rem;
}

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

.process-step {
  position: relative;
}

.step-icon {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

/* Banner */
.banner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  color: var(--text-muted);
}

/* FAQ */
.narrow-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

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

.faq-content p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--text-muted);
}

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

/* Contact Form */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-links {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
}

.contact-row i {
  color: var(--primary);
}

.cyber-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

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

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.input-group input {
  width: 100%;
  padding: 14px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  transition: var(--transition);
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.checkbox-group label {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

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

/* Footer */
.footer {
  padding: 80px 0 20px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #fff;
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 0.9rem;
}

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  max-width: 350px;
  z-index: 5000;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-popup h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cookie-popup p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .desktop-nav,
  .header__actions > a {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero__grid,
  .split-layout,
  .grid-2-1,
  .form-wrapper,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    order: -1;
  }
  .grid-3,
  .process-steps,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .banner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .section {
    padding: 60px 0;
  }
  .grid-3,
  .process-steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.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: #000000;
  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(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
}

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

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
