@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary: #0B132B;
  --primary-light: #1C2541;
  --accent: #C5A880;
  --accent-hover: #B3956D;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --bg-light: #FAF9F6;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 10px 20px;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--primary);
}

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

/* HEADER */
header {
  background-color: var(--primary);
  color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid var(--accent);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-white);
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: #CBD5E1;
}

nav a:hover, nav a.active {
  color: var(--accent);
}

.cta-btn-header {
  background-color: var(--accent);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.cta-btn-header:hover {
  background-color: var(--accent-hover);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 28px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197,168,128,0.15) 0%, rgba(11,19,43,0) 70%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 48px;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: #E2E8F0;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
}

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

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
}

.btn-secondary:hover {
  background-color: rgba(197, 168, 128, 0.1);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--accent);
}

/* STATS */
.stats {
  background-color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-card h3 {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* SECTIONS COMMON */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

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

.step-card {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: 8px;
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  position: relative;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: rgba(197, 168, 128, 0.2);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
}

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

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  color: var(--primary);
}

/* ASYMMETRIC FEATURE */
.feature-asymmetric {
  background-color: var(--primary-light);
  color: var(--bg-white);
  border-radius: 12px;
  padding: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.feature-content h2 {
  color: var(--bg-white);
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-content p {
  color: #CBD5E1;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

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

.feature-list i {
  color: var(--accent);
}

.feature-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid var(--accent);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border: 3px solid var(--accent);
  transform: scale(1.03);
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--primary);
  padding: 4px 16px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 20px;
}

.price-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 48px;
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li i {
  color: var(--accent);
}

/* FORM CAPTURE */
.form-section {
  background-color: var(--primary);
  color: var(--bg-white);
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--primary-light);
  padding: 48px;
  border-radius: 8px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #CBD5E1;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 15px;
}

.form-control:focus {
  outline: 2px solid var(--accent);
  background: rgba(255,255,255,0.08);
}

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

.form-checkbox input {
  margin-top: 4px;
}

.form-checkbox label {
  font-size: 13px;
  color: #CBD5E1;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit-btn:hover {
  background: var(--accent-hover);
}

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h3 {
  font-size: 18px;
}

.faq-icon {
  font-size: 18px;
  color: var(--accent);
  transition: var(--transition);
}

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-muted);
  font-size: 15px;
}

.faq-item.active .faq-content {
  padding: 0 24px 24px 24px;
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* TRUST LAYER */
.trust-layer {
  background-color: var(--bg-white);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
}

.trust-layer h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.trust-layer p {
  color: var(--text-muted);
  font-size: 13px;
  max-width: 850px;
  margin: 0 auto 12px auto;
}

.trust-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

.trust-links a:hover {
  color: var(--accent);
}

/* FOOTER */
footer {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 40px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: #94A3B8;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-legal-text {
  width: 100%;
  text-align: center;
  color: #64748B;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 24px;
  padding-top: 24px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  border-top: 3px solid var(--accent);
  display: none;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-text h4 {
  color: var(--bg-white);
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-text p {
  color: #CBD5E1;
  font-size: 13px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

.btn-cookie-accept {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-cookie-reject {
  background-color: rgba(255,255,255,0.1);
  color: var(--bg-white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .feature-grid, .pricing-grid, .steps-grid, .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-grid {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .feature-asymmetric {
    padding: 32px 24px;
  }
  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    padding: 32px;
    border-bottom: 2px solid var(--accent);
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .cookie-container {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-buttons {
    justify-content: flex-end;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}