/* VARIABLES */
:root {
  --bg: #080808; /* Nearly pure black */
  --surface: #121212; /* Dark grey for cards */
  --text-main: #e5e5e5; /* Off-white for readability */
  --text-muted: #888888; /* Muted grey */
  --gold: #c0a062; /* Antique Brass/Gold */
  --border: #222222; /* Subtle borders */

  --font-serif: "Playfair Display", serif;
  --font-sans: "Manrope", sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}

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

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

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
}

h1 {
  font-size: 4.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
h2 {
  font-size: 3.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 2.5rem;
}
h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
}

.italic {
  font-style: italic;
}
.gold-text {
  color: var(--gold);
}
.overline {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* BUTTONS */
.btn-gold {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.4s;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 25px 0;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon svg {
  width: 28px;
  height: 28px;
}
.logo-type {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.nav-desktop {
  display: flex;
  gap: 40px;
}
.nav-desktop a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.nav-desktop a:hover {
  color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.region-badge {
  font-size: 0.75rem;
  border: 1px solid var(--border);
  padding: 5px 10px;
  color: var(--text-muted);
}

.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
}
.burger span {
  width: 30px;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-sub {
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-visual img {
  opacity: 0.8;
  filter: grayscale(20%);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  transform: rotate(-90deg);
  transform-origin: left;
}
.scroll-indicator .line {
  width: 40px;
  height: 1px;
  background: var(--text-muted);
}

/* SECTIONS */
section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}

.sec-header {
  margin-bottom: 80px;
  border-top: 1px solid var(--gold);
  display: inline-block;
  padding-top: 20px;
}
.sec-idx {
  font-family: var(--font-serif);
  color: var(--gold);
  font-style: italic;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

/* TEXT SECTION */
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.lead-text {
  font-size: 1.25rem;
  color: #fff;
}

/* METHODOLOGY */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step-card {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  transition: 0.3s;
}
.step-card:hover {
  border-color: var(--gold);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--border);
  margin-bottom: 20px;
}
.step-card:hover .step-num {
  color: var(--gold);
}

/* STATS */
.section-stats {
  padding: 60px 0;
}
.stats-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.stat-item {
  text-align: center;
}
.stat-item .val {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 10px;
  display: block;
}
.divider {
  height: 60px;
  width: 1px;
  background: var(--border);
}

/* SERVICES */
.services-list {
  display: flex;
  flex-direction: column;
}
.srv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  transition: 0.3s;
}
.srv-row:hover {
  background: var(--surface);
  padding-left: 20px;
  padding-right: 20px;
}
.srv-name {
  max-width: 600px;
}
.srv-btn {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}
.srv-row:hover .srv-btn {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

/* FAQ */
.center-head {
  text-align: center;
  margin-bottom: 60px;
}
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-head {
  padding: 25px 0;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
  color: var(--text-muted);
}
.acc-item.active .acc-body {
  padding-bottom: 25px;
  max-height: 200px;
}
.acc-item.active .acc-head {
  color: var(--gold);
}

/* CONTACT FORM */
.section-contact {
  padding-bottom: 120px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.c-desc {
  margin: 30px 0 50px;
}
.c-meta p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #fff;
}
.c-meta strong {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.clean-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.input-group input,
.input-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  border-radius: 0;
  appearance: none;
}
.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.privacy-check {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
}
.privacy-check a {
  text-decoration: underline;
}

.submit-btn {
  margin-top: 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.submit-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* FOOTER */
.footer {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.f-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}
.f-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-col-links span {
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}
.f-col-links a {
  color: var(--text-muted);
}
.f-col-links a:hover {
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mm-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mm-nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 25px;
}
.mm-nav a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #fff;
}

/* COOKIE NOTICE */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 5000;
}
.btn-cookie {
  background: var(--text-main);
  color: var(--bg);
  border: none;
  padding: 8px 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .burger {
    display: flex;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .region-badge {
    display: none;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  } /* Hide visual on mobile for cleaner look or move it */
  .text-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .stats-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .divider {
    width: 50px;
    height: 1px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cookie-notice {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

.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;
  color: var(--accent);
}

@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;
  }
  .margin {
    font-size: 28px;
  }
}
