/* --- Global Settings --- */
:root {
  --bg-dark: #0a0a0a;
  --text-light: #e0e0e0;
  --accent-silver: #c0c0c0;
  --accent-dim: #4a4a4a;
  --aurora-1: rgba(45, 52, 112, 0.3);
  --aurora-2: rgba(20, 20, 20, 0.8);
  --font-main: "Manrope", sans-serif;
  --font-accent: "Playfair Display", serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Aurora Overlay Effect */
.aurora-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, var(--aurora-1) 0%, transparent 40%),
    radial-gradient(
      circle at 80% 70%,
      rgba(192, 192, 192, 0.05) 0%,
      transparent 40%
    ),
    var(--bg-dark);
  filter: blur(80px);
}

/* --- Header Styles --- */
.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
}

.logo__text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav__link {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-silver);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--accent-silver);
  color: var(--bg-dark);
  padding: 10px 25px;
  border-radius: 50px 0 50px 0; /* Organic shape */
  font-weight: 500;
}

.nav__link--cta:hover {
  transform: scale(1.05);
  background: #fff;
}

.header__burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

/* --- Footer Styles --- */
.footer {
  padding: 100px 0 40px;
  background: linear-gradient(to bottom, transparent, #050505);
  border-top: 1px solid rgba(192, 192, 192, 0.05);
}

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

.footer__title {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--accent-silver);
}

.footer__description {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.6;
  transition: var(--transition);
}

.footer__list a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer__contacts {
  list-style: none;
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__icon {
  color: var(--accent-silver);
  width: 20px;
}

.footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(192, 192, 192, 0.05);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- Pages Styles (Stage 5 placeholder) --- */
.pages {
  padding: 150px 0 100px;
}
.pages h1 {
  font-family: var(--font-accent);
  font-size: 3rem;
  margin-bottom: 30px;
}
.pages h2 {
  font-family: var(--font-accent);
  margin: 40px 0 20px;
}
.pages p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
  .header__burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-dark);
    padding: 100px 40px;
    transition: 0.5s;
  }
  .nav--active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__blobs {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.blob {
  position: absolute;
  background: linear-gradient(
    45deg,
    rgba(192, 192, 192, 0.1),
    rgba(74, 74, 74, 0.2)
  );
  filter: blur(40px);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  transition: transform 0.2s ease-out;
}

.blob--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}
.blob--2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -100px;
  animation: morph 15s infinite alternate;
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.hero__subtitle {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-silver);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__title {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero__title--italic {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-silver);
}

.hero__description {
  max-width: 500px;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 18px 35px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn--primary {
  background: var(--accent-silver);
  color: var(--bg-dark);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn--outline {
  border-bottom: 1px solid var(--accent-silver);
  color: var(--accent-silver);
  margin-left: 20px;
}

.btn:hover {
  transform: translateY(-5px);
  filter: brightness(1.2);
}

/* --- Insights Section --- */
.insights {
  padding: 150px 0;
}

.section-header {
  margin-bottom: 80px;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.section-title {
  font-family: var(--font-accent);
  font-size: 4rem;
  line-height: 1;
}

.section-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(192, 192, 192, 0.2);
  margin-bottom: 15px;
}

/* Breaking the Grid Layout */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.insight-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  position: relative;
  border: 1px solid rgba(192, 192, 192, 0.05);
  transition: var(--transition);
  overflow: hidden;
}

.insight-card--large {
  grid-column: span 7;
  min-height: 400px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.insight-card--mini {
  grid-column: span 5;
  background: transparent;
  border: 1px solid var(--accent-dim);
}

.insight-card--wide {
  grid-column: span 12;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.insight-card__num {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--accent-silver);
  margin-bottom: 20px;
  opacity: 0.5;
}

.insight-card h3 {
  font-family: var(--font-accent);
  font-size: 2rem;
  margin-bottom: 20px;
}

.link-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-silver);
  text-decoration: none;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .insight-card--large,
  .insight-card--mini {
    grid-column: span 12;
  }
  .hero__title {
    font-size: 4rem;
  }
}

/* --- Strategies Section --- */
.strategies {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-dark), #0f0f0f);
}

.section-header--right {
  text-align: right;
  justify-content: flex-end;
}

.strategy-item {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 40px 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.1);
  align-items: center;
  transition: var(--transition);
}

.strategy-item:hover {
  background: rgba(192, 192, 192, 0.02);
  padding-left: 20px;
}

.strategy-item__meta {
  font-family: "monospace";
  font-size: 0.8rem;
  color: var(--accent-dim);
  text-transform: uppercase;
}

.strategy-item h3 {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.strategy-tag {
  font-size: 0.7rem;
  padding: 5px 12px;
  border: 1px solid var(--accent-silver);
  border-radius: 20px;
  opacity: 0.6;
}

.btn-circle {
  width: 50px;
  height: 50px;
  border: 1px solid var(--accent-silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-silver);
  text-decoration: none;
  transition: var(--transition);
}

.btn-circle:hover {
  background: var(--accent-silver);
  color: var(--bg-dark);
  transform: rotate(90deg);
}

/* --- Evolution Section --- */
.evolution {
  padding: 150px 0;
  position: relative;
}

.evolution__bg-shape {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(192, 192, 192, 0.05) 0%,
    transparent 70%
  );
  transform: translateY(-50%);
  z-index: -1;
}

.evolution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.evolution__image {
  position: relative;
}

.evolution__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  filter: grayscale(1) contrast(1.1);
}

.evolution__badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--accent-silver);
  color: var(--bg-dark);
  padding: 20px;
  font-family: var(--font-accent);
  font-weight: bold;
}

.evolution__features {
  list-style: none;
  margin: 30px 0;
}

.evolution__features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--accent-silver);
}

/* --- Mentorship Section --- */
.mentorship {
  padding-bottom: 150px;
}

.mentorship__wrapper {
  background: rgba(192, 192, 192, 0.03);
  padding: 80px;
  border: 1px solid rgba(192, 192, 192, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mentorship__card {
  background: #111;
  padding: 40px;
  border-left: 4px solid var(--accent-silver);
}

.mentorship__card h3 {
  font-family: var(--font-accent);
  margin-bottom: 15px;
}

.btn--silver-full {
  background: var(--accent-silver);
  color: var(--bg-dark);
  margin-top: 25px;
  text-align: center;
  width: 100%;
}

@media (max-width: 992px) {
  .strategy-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .evolution__grid,
  .mentorship__wrapper {
    grid-template-columns: 1fr;
  }
  .evolution__img {
    height: 300px;
  }
  .mentorship__wrapper {
    padding: 40px;
  }
}

/* --- Contact Section --- */
.contact {
  padding: 100px 0;
  background: radial-gradient(
    circle at bottom left,
    rgba(192, 192, 192, 0.03) 0%,
    transparent 50%
  );
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.contact__text {
  font-size: 1.1rem;
  margin: 30px 0;
  opacity: 0.8;
}

.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(192, 192, 192, 0.05);
  border-radius: 4px;
  color: var(--accent-silver);
  font-size: 0.9rem;
}

/* Form Styling */
.contact__form-wrapper {
  background: #111;
  padding: 50px;
  border: 1px solid rgba(192, 192, 192, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--accent-dim);
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(192, 192, 192, 0.3);
  padding: 12px 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-silver);
}

.form-error {
  color: #ff4d4d;
  font-size: 0.75rem;
  display: none;
  margin-top: 5px;
}

/* Captcha Styling */
.captcha {
  background: #f9f9f910;
  padding: 15px;
  border: 1px solid rgba(192, 192, 192, 0.1);
  margin-bottom: 20px;
  border-radius: 3px;
}

.captcha__label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.captcha__checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid #555;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  background: #fff;
}

.captcha__input {
  display: none;
}

.captcha__input:checked + .captcha__checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #222;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.captcha__text {
  font-size: 14px;
  color: #fff;
  flex-grow: 1;
}
.captcha__logo {
  text-align: center;
  color: #777;
}
.captcha__logo small {
  display: block;
  font-size: 8px;
}

/* Policy Checkbox */
.policy-check {
  margin-bottom: 30px;
}
.policy-check__label {
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.policy-check__text {
  font-size: 0.8rem;
  opacity: 0.6;
}
.policy-check__text a {
  color: var(--accent-silver);
}

.btn--full {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success__icon {
  color: var(--accent-silver);
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact__form-wrapper {
    padding: 30px;
  }
}

/* --- Cookie Pop-up --- */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 20px;
  right: 20px;
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(192, 192, 192, 0.2);
  backdrop-filter: blur(15px);
  padding: 25px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  max-width: 600px;
  margin: 0 auto;
  clip-path: polygon(0 0, 95% 0, 100% 20%, 100% 100%, 5% 100%, 0 80%);
}

.cookie-popup--active {
  bottom: 30px;
}

.cookie-popup__text {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
}
.cookie-popup__text a {
  color: var(--accent-silver);
}

.btn--cookie {
  padding: 10px 25px;
  font-size: 0.75rem;
  background: var(--accent-silver);
  color: var(--bg-dark);
  white-space: nowrap;
}

/* --- Styles for Policy Pages (privacy.php, etc.) --- */
.pages {
  padding: 150px 0 100px;
  min-height: 80vh;
}

.pages .container {
  max-width: 800px;
}

.pages h1 {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 40px;
  color: var(--accent-silver);
  line-height: 1.1;
}

.pages h2 {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  margin: 40px 0 20px;
  border-left: 3px solid var(--accent-silver);
  padding-left: 20px;
}

.pages p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  opacity: 0.8;
  color: #ccc;
}

.pages ul {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 0;
}

.pages li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.9;
}

.pages li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-silver);
}

.pages a {
  color: var(--accent-silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  transition: var(--transition);
}
.pages a:hover {
  border-bottom-color: var(--accent-silver);
}

/* --- Contact.php Page Specific --- */
.contact-page {
  padding: 200px 0;
  text-align: center;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.contact-card {
  padding: 40px;
  background: rgba(192, 192, 192, 0.03);
  border: 1px solid rgba(192, 192, 192, 0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
  background: rgba(192, 192, 192, 0.06);
}
.contact-card i {
  color: var(--accent-silver);
  margin-bottom: 20px;
}
.contact-card h3 {
  font-family: var(--font-accent);
  margin-bottom: 10px;
}
