:root {
  --color-wine: #5e1914; /* Bordeaux */
  --color-gold: #c5a059; /* Champagne Gold */
  --color-pearl: #f4f4f0; /* Ivory / Pearl */
  --color-ink: #111111; /* Deep Black/Navy */
  --color-gray: #e5e5e5;
  --color-text: #333333;

  --font-heading: "Cinzel", serif;
  --font-body: "Inter", sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -1px;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}
.text-pearl {
  color: var(--color-pearl) !important;
}
.text-pearl p {
  color: rgba(244, 244, 240, 0.8);
}
.text-pearl h1,
.text-pearl h2,
.text-pearl h3,
.text-pearl h4 {
  color: var(--color-pearl);
}
.w-100 {
  width: 100%;
}
.gold {
  color: var(--color-gold);
}
.gold-text {
  color: var(--color-gold) !important;
}

/* Colors & Backgrounds */
.bg-pearl {
  background-color: var(--color-pearl);
}
.bg-ink {
  background-color: var(--color-ink);
}
.bg-wine {
  background-color: var(--color-wine);
}
.bg-light-gray {
  background-color: #fafafa;
}

.border-gold {
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}
.decorative-line {
  width: 60px;
  height: 2px;
  background-color: var(--color-wine);
  margin-bottom: 30px;
}
.decorative-line.gold {
  background-color: var(--color-gold);
}
.section-header .decorative-line {
  margin: 20px auto 40px;
}

.neo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.neo-section {
  padding: 120px 0;
  position: relative;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: var(--color-wine);
  color: var(--color-pearl);
  border: 1px solid var(--color-wine);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-wine);
}

.gold-btn {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ink);
}
.gold-btn:hover {
  background-color: transparent;
  color: var(--color-gold);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 5px;
}
.btn-text:hover {
  color: var(--color-wine);
  border-color: var(--color-wine);
  gap: 12px;
}

/* Header */
.neo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(244, 244, 240, 0.95);
  border-bottom: 1px solid var(--color-gray);
  z-index: 1000;
  transition: var(--transition);
}

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

.neo-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.neo-brand svg {
  width: 40px;
  height: 40px;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.home-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
}
.home-link:hover {
  color: var(--color-wine);
}

.neo-burger {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger-lines {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: var(--color-ink);
  transition: var(--transition);
}
.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-ink);
  transition: var(--transition);
}
.burger-lines::before {
  top: -8px;
}
.burger-lines::after {
  top: 8px;
  width: 20px;
  right: 0;
  left: auto;
}
.neo-burger:hover .burger-lines::after {
  width: 30px;
}

/* Side Navigation */
.neo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.neo-overlay.active {
  opacity: 1;
  visibility: visible;
}

.neo-sidenav {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background-color: var(--color-ink);
  border-left: 1px solid var(--color-gold);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.neo-sidenav.active {
  right: 0;
}

.sidenav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}
.sidenav-title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.4rem;
}
.neo-close {
  background: transparent;
  border: none;
  color: var(--color-pearl);
  cursor: pointer;
  transition: var(--transition);
}
.neo-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.sidenav-middle {
  padding: 40px;
  flex-grow: 1;
  overflow-y: auto;
}
.sidenav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: rgba(244, 244, 240, 0.7);
  display: block;
  transition: var(--transition);
}
.menu-item:hover {
  color: var(--color-gold);
  padding-left: 10px;
}

.sidenav-bottom {
  padding: 40px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.sidenav-mail {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-pearl);
}
.sidenav-mail:hover {
  color: var(--color-gold);
}

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

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
}
.hero-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-pearl) 0%,
    rgba(244, 244, 240, 0.9) 45%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-box {
  max-width: 650px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-wine);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Concept (Split Grid) */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse {
  direction: rtl;
}
.split-grid.reverse > * {
  direction: ltr;
}

.framed-image {
  position: relative;
  padding: 20px;
}
.framed-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
  left: 40px;
  border: 1px solid var(--color-wine);
  z-index: 0;
}
.framed-image img {
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.gold-frame::before {
  border-color: var(--color-gold);
  left: 0;
  right: 40px;
}

/* Geo */
.huge-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  margin-inline: auto;
}
.geo-text-box {
  max-width: 800px;
  margin: 0 auto;
}

/* Speed (Cards) */
.line-bg {
  background-image: linear-gradient(var(--color-gray) 1px, transparent 1px);
  background-size: 100% 40px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.neo-card {
  background-color: var(--color-pearl);
  border: 1px solid var(--color-gray);
  padding: 50px 40px;
  position: relative;
  transition: var(--transition);
}
.neo-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.card-top {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(197, 160, 89, 0.3);
  line-height: 1;
  margin-bottom: 20px;
}
.card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Analytics */
.analytics-layout {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
  padding: 80px 0;
}
.analytics-content {
  max-width: 700px;
  margin: 0 auto;
}

/* Quiz */
.quiz-box {
  border: 1px solid var(--color-gold);
  padding: 80px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.quiz-content p {
  color: rgba(244, 244, 240, 0.8);
}
.quiz-action {
  margin-top: 40px;
}

/* Access */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.status-card {
  background-color: var(--color-ink);
  color: var(--color-pearl);
  padding: 60px;
  text-align: center;
  border-radius: 4px;
  border-bottom: 4px solid var(--color-gold);
}
.status-card i {
  width: 60px;
  height: 60px;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.status-card h4 {
  color: var(--color-pearl);
  margin-bottom: 10px;
}
.status-card p {
  margin: 0;
  color: rgba(244, 244, 240, 0.7);
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-block {
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 10px;
}
.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}
.faq-head h3 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
}
.faq-head i {
  color: var(--color-wine);
  transition: var(--transition);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}
.faq-body p {
  color: #666;
  padding-bottom: 20px;
}
.faq-block.active .faq-body {
  max-height: 400px;
  opacity: 1;
}
.faq-block.active .faq-head i {
  transform: rotate(45deg);
  color: var(--color-gold);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-row i {
  color: var(--color-gold);
  width: 24px;
  height: 24px;
}

.contact-form-container {
  background-color: var(--color-pearl);
  padding: 50px;
  border: 1px solid var(--color-gold);
}
.form-heading {
  color: var(--color-ink);
  text-align: center;
  margin-bottom: 40px;
}
.form-group {
  margin-bottom: 25px;
}
.elegant-form input[type="text"],
.elegant-form input[type="tel"],
.elegant-form input[type="email"],
.elegant-form input[type="number"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  transition: var(--transition);
}
.elegant-form input:focus {
  outline: none;
  border-bottom-color: var(--color-wine);
}
.elegant-form input::placeholder {
  color: #888;
}

.captcha-group {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.captcha-question {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-wine);
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-wine);
  text-align: center;
}
.captcha-group input {
  flex: 1;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 40px;
}
.checkbox-group input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-wine);
}
.checkbox-group label {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-group a {
  color: var(--color-wine);
  text-decoration: underline;
}
.checkbox-group a:hover {
  color: var(--color-gold);
}

/* Footer */
.neo-footer {
  background-color: var(--color-ink);
  color: var(--color-pearl);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-desc {
  color: rgba(244, 244, 240, 0.6);
  max-width: 350px;
  margin: 20px 0;
  font-size: 0.9rem;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 5px;
}
.footer-contact-link:hover {
  color: var(--color-pearl);
  border-color: var(--color-pearl);
  gap: 15px;
}
.footer-title {
  color: var(--color-pearl);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.footer-nav-area a,
.footer-legal-area a {
  display: block;
  color: rgba(244, 244, 240, 0.6);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-nav-area a:hover,
.footer-legal-area a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(244, 244, 240, 0.1);
  font-size: 0.85rem;
  color: rgba(244, 244, 240, 0.4);
}

/* Cookie Modal */
.neo-cookie {
  position: fixed;
  bottom: -200%;
  left: 0;
  width: 100%;
  z-index: 3000;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
}
.neo-cookie.show {
  bottom: 40px;
}
.cookie-layout {
  background-color: var(--color-ink);
  border: 1px solid var(--color-gold);
  padding: 30px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.cookie-text p {
  margin: 0;
  color: rgba(244, 244, 240, 0.7);
  font-size: 0.9rem;
}
.cookie-btn-area {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .neo-sidenav {
    width: 100%;
    right: -100%;
  }
  .hero-curtain {
    background: rgba(244, 244, 240, 0.85);
  }
  .hero-box {
    margin: 0 auto;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 60px;
    direction: ltr;
    text-align: center;
  }
  .framed-image::before {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .gold-frame::before {
    left: 20px;
    right: 20px;
  }
  .card-grid-3,
  .access-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .access-text,
  .contact-info {
    text-align: center;
  }
  .detail-row {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-desc {
    margin: 20px auto;
  }
  .footer-contact-link {
    justify-content: center;
  }
  .cookie-layout {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .neo-section {
    padding: 80px 0;
  }
  .header-actions {
    gap: 20px;
  }
  .home-link {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .quiz-box {
    padding: 40px 20px;
  }
  .contact-form-container {
    padding: 40px 20px;
  }
  .captcha-group {
    flex-direction: column;
    align-items: stretch;
  }
}

.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 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    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;
  display: flex;
  justify-content: center;
}

.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;
  }
}
