:root {
  --primary-color: #0A192F;
  --secondary-color: #D4AF37;
  --bg-light: #F8FAFC;
  --bg-dark: #0F172A;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #FFFFFF;
  --border-color: #E2E8F0;
  --accent-glow: rgba(212, 175, 55, 0.15);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  z-index: 9999;
  transition: top 0.2s;
  font-weight: bold;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

header {
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

nav a:hover, nav a:focus {
  color: var(--secondary-color);
  outline: none;
}

.btn-cta {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-cta:hover, .btn-cta:focus {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  outline: none;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    gap: 15px;
  }
  nav ul.active {
    display: flex;
  }
  .burger-menu {
    display: block;
  }
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #112240 100%);
  color: var(--text-light);
  padding: 100px 20px 140px 20px;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.25rem;
  color: #a8b2d1;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--text-light);
  color: var(--primary-color);
  outline: none;
}

.custom-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: -50px auto 80px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: var(--text-light);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-bottom: 4px solid var(--secondary-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 15px auto 0 auto;
}

.grid-pattern {
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step-card {
  background: var(--text-light);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.step-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: var(--primary-color);
}

.principles-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.principles-section .section-title {
  color: var(--text-light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.principle-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.principle-card h3 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.service-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  flex-grow: 1;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
}

.feature-img-wrapper {
  flex: 1;
}

.feature-img-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 2.25rem;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  margin-top: 25px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-list i {
  color: var(--secondary-color);
  margin-top: 4px;
}

@media (max-width: 992px) {
  .feature-block {
    flex-direction: column;
    gap: 40px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card.popular {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.price-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 30px;
}

.price span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
}

.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

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

.price-list i {
  color: var(--secondary-color);
}

.form-section {
  background: linear-gradient(135deg, #0A192F 0%, #060D1A 100%);
  color: var(--text-light);
  padding: 80px 20px;
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 50px 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-light);
}

input, textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: #a8b2d1;
}

.checkbox-group a {
  color: var(--secondary-color);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

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

.accordion-item {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: bold;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding-bottom: 20px;
  color: var(--text-muted);
}

.trust-layer {
  background-color: #F1F5F9;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 20px;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-title {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
}

.trust-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-links a {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.trust-links a:hover {
  text-decoration: underline;
}

footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 50px 20px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

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

.footer-nav a {
  color: #a8b2d1;
  text-decoration: none;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: #a8b2d1;
}

.footer-bottom p {
  font-size: 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 450px;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  z-index: 10000;
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
}

.cookie-banner h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #a8b2d1;
}

.cookie-banner a {
  color: var(--secondary-color);
  text-decoration: none;
}

.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.cookie-btn-accept:hover {
  background-color: #bd9627;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
  background-color: rgba(255,255,255,0.05);
}

/* Accessibility settings for reduced motions */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}