/* Palette: NEON-CYBER */
:root {
  --primary-color: #1A0040;
  --secondary-color: #2E0060;
  --accent-color: #C9A227;
  --background-color: #F0EBFF;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.6);
  --radius-sm: 0px;
  --radius-md: 4px;
  --main-font: 'Playfair Display', Georgia, serif;
  --alt-font: 'Source Sans 3', sans-serif;
}

/* BASE STYLES - Mobile First */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #0A0A0F;
  color: #E0E0E0;
  font-family: var(--alt-font);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.85;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--main-font);
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
}

h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  border-left: 4px solid var(--accent-color);
  padding-left: 12px;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
}

h4 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--accent-color);
}

p {
  color: rgba(224, 224, 224, 0.78);
  margin-bottom: 1rem;
}

/* CONTAINER & SECTIONS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

section {
  padding: 56px 16px;
  margin: 0;
  background: #0A0A0F;
  position: relative;
}

section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
  section {
    padding: 64px 24px;
  }
}

.section-intro {
  max-width: 720px;
  font-size: clamp(15px, 1.8vw, 18px);
  margin-bottom: 2.5rem;
}

/* CARDS - NEON CYBER PRESET */
.card {
  background: #12121A;
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-md);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.25);
}

.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.12s; }
.card:nth-child(3) { animation-delay: 0.24s; }
.card:nth-child(4) { animation-delay: 0.36s; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-family: var(--alt-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}

.btn-primary {
  background: var(--accent-color);
  color: #0A0A0F;
  box-shadow: 0 0 20px var(--accent-color);
  border-radius: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-color);
}

/* HEADER & MOBILE NAV */
header {
  background: #0A0A0F;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 38px;
  width: auto;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transition: transform 0.3s, opacity 0.3s;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  padding: 24px 16px;
  border-bottom: 2px solid var(--accent-color);
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }

  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    padding: 0;
    border-bottom: none;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 28px;
  }

  .site-nav a {
    font-size: 1rem;
  }
}

/* HERO (editorial-bleed) */
.hero-editorial {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 64px 16px;
  background: #0A0A0F;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.95;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.accent-text {
  color: var(--accent-color);
}

.hero-divider {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 28px;
}

.hero-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .hero-columns {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.hero-p {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.8;
  color: #CCCCCC;
}

.hero-cta-wrapper {
  margin-top: 16px;
}

/* MIDDLE SECTION 1: Testimonial Wall */
.testimonial-wall {
  columns: 1;
  column-gap: 20px;
  min-height: 500px;
}

@media (min-width: 768px) {
  .testimonial-wall {
    columns: 2;
  }
}

.testimonial-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

.stars {
  color: var(--accent-color);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.quote-text {
  font-style: italic;
  font-size: 1rem;
  color: #E0E0E0;
  margin-bottom: 16px;
}

.author-info strong {
  display: block;
  color: #FFFFFF;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--accent-color);
}

/* MIDDLE SECTION 2: Stats Counter with CSS @property */
@property --count {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

.stats-section {
  min-height: 300px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
}

.stat-num {
  display: inline-block;
  font-family: var(--main-font);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  --target: 80;
  animation: count-up 2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
  counter-reset: n var(--count);
}

.stat-num::after {
  content: counter(n);
}

@keyframes count-up {
  from { --count: 0; }
  to { --count: var(--target); }
}

.stat-symbol {
  font-family: var(--main-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.95rem;
  margin-top: 12px;
  margin-bottom: 0;
}

/* MIDDLE SECTION 3: Expert Quote */
.quote-section {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 16px;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.88);
  z-index: 1;
  top: -1px;
}

.quote-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.quote-mark {
  font-family: var(--main-font);
  font-size: 6rem;
  color: var(--accent-color);
  line-height: 0.5;
  opacity: 0.4;
  margin-bottom: 12px;
}

.expert-quote {
  font-family: var(--main-font);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 24px;
}

.quote-author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.quote-author span {
  font-size: 0.9rem;
  color: #CCCCCC;
}

/* MIDDLE SECTION 4: Topic Overview Cards */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-height: 460px;
}

@media (min-width: 768px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topic-card {
  padding: 32px;
}

.topic-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.topic-list {
  list-style: none;
  margin-top: 16px;
}

.topic-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #DDDDDD;
}

.topic-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* MIDDLE SECTION 5: About/Values */
.values-section {
  min-height: 380px;
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .values-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.values-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-md);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.value-card {
  padding: 20px;
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* SECTION 7: Contact + FAQ */
.contact-faq-section {
  background: #08080C;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

@media (min-width: 1024px) {
  .contact-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item strong {
  display: block;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-item p {
  margin-bottom: 0;
  color: #FFFFFF;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #CCCCCC;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0A0A0F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--alt-font);
  font-size: 0.95rem;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.82rem;
  line-height: 1.4;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
}

/* FAQ OPEN ITEMS */
.faq-container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
}

.faq-container h3 {
  margin-bottom: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-card h4 {
  margin-bottom: 8px;
}

.faq-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* FOOTER */
footer {
  background: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 16px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  height: 36px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: rgba(224, 224, 224, 0.7);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.5);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* SCROLL REVEAL ANIMATION */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

.bg-gray-100,
.bg-white,
.bg-yellow-100,
.bg-blue-100,
.bg-red-100,
.bg-green-100,
.bg-gray-100 p,
.bg-white p,
.bg-yellow-100 p,
.bg-blue-100 p,
.bg-red-100 p,
.bg-green-100 p {
  color: #111A13;
}