:root {
  --primary: #0F172A;
  --primary-light: #1E293B;
  --accent: #D97706;
  --accent-hover: #B45309;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --border-color: #E2E8F0;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.125rem;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

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

/* Header & Navigation */
header {
  background-color: var(--primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--accent);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 45px;
  height: 45px;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #E2E8F0;
  font-weight: 500;
  padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Section Hero */
.hero {
  padding: 80px 0;
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 100 C 20 80, 40 80, 50 100 C 60 80, 80 80, 100 100' fill='none' stroke='%23D97706' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
}

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

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn:focus-visible {
  outline: 3px solid white;
  outline-offset: 2px;
}

.hero-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  object-fit: cover;
  max-height: 450px;
}

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

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

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 600;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

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

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  position: relative;
}

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

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--border-color);
  font-weight: 700;
}

/* Features Block (Asymmetric) */
.features-asymm {
  padding: 80px 0;
  background-color: var(--bg-white);
}

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

.asymm-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  object-fit: cover;
}

.asymm-content ul {
  list-style: none;
  margin-top: 25px;
}

.asymm-content li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.asymm-content li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Services section in index */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.service-card:hover {
  transform: translateY(-5px);
}

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

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

.service-card-body h3 {
  margin-bottom: 15px;
}

/* Pricing Block */
.pricing {
  padding: 80px 0;
  background-color: var(--bg-white);
}

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

.price-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  background-color: var(--bg-white);
  border: 3px solid var(--accent);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: scale(1.03);
}

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

.price-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-value {
  font-size: 2.75rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 25px;
}

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

.price-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-muted);
}

.price-features li i {
  color: var(--accent);
  margin-right: 10px;
}

/* Lead Capture Form */
.form-section {
  padding: 80px 0;
  background-color: var(--primary);
  color: white;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--primary-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #475569;
  background-color: var(--primary);
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-control:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

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

.form-checkbox input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.95rem;
  color: #CBD5E1;
  cursor: pointer;
}

/* Accordion FAQ Teaser */
.faq-teaser {
  padding: 80px 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto 40px;
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-white);
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

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

.accordion-header i {
  transition: transform 0.3s ease;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-white);
}

.accordion-content-inner {
  padding: 0 20px 20px;
  color: var(--text-muted);
}

/* Trust Layer & Footer */
.trust-layer {
  background-color: #E2E8F0;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}

.trust-box {
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trust-box h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

footer {
  background-color: var(--primary);
  color: #94A3B8;
  padding: 50px 0 30px;
  border-top: 5px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  color: white;
  margin-bottom: 15px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 25px;
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 25px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--accent);
}

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

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

.cookie-btn-accept {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #94A3B8;
  border: 1px solid #475569;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

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

.cookie-btn-decline:hover {
  color: white;
  border-color: white;
}

/* Contact Details Page styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 3px;
}

/* Static page template header style */
.page-hero {
  background-color: var(--primary);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  font-size: 2.5rem;
}

.static-content {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.static-text {
  max-width: 800px;
  margin: 0 auto;
}

.static-text p {
  margin-bottom: 20px;
}

.static-text h2 {
  margin: 35px 0 15px;
}

.static-text ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.static-text li {
  margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-grid, .steps-grid, .services-grid, .pricing-grid, .footer-grid, .asymm-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .price-card.popular {
    transform: none;
  }
  
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 20px;
    border-bottom: 3px solid var(--accent);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .burger {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

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