:root {
  --primary: #0F172A;
  --primary-light: #1E293B;
  --accent: #D97706;
  --accent-hover: #B45309;
  --teal: #0F766E;
  --teal-light: #CCFBF1;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-white: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--primary);
  font-weight: 700;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--text-white);
  padding: 10px 20px;
  z-index: 9999;
  text-decoration: none;
  font-weight: bold;
  transition: top 0.2s ease;
}

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

/* Header & Nav */
header {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

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

.logo-text {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-white);
}

.nav-cta {
  background-color: var(--accent);
  color: var(--text-white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background-color 0.3s ease !important;
}

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

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 100px 20px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  color: var(--text-white);
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid #475569;
}

.btn-secondary:hover {
  border-color: var(--text-white);
}

.hero-image-container {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 450px;
}

/* Unique Graphic Accent Grid overlay */
.dot-grid-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(var(--accent) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: -1;
  opacity: 0.6;
}

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

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-item h3 {
  font-size: 38px;
  color: var(--teal);
  margin-bottom: 5px;
}

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

/* Social Proof & Partners */
.social-proof {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

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

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

.section-title-center h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section-title-center p {
  color: var(--text-muted);
}

.partner-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  opacity: 0.65;
}

.partner-item {
  font-size: 28px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.testimonial-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-meta {
  font-size: 13px;
  color: var(--accent);
}

/* Common Section Grid */
.section {
  padding: 90px 20px;
  background-color: var(--bg-white);
}

.section-alt {
  padding: 90px 20px;
  background-color: var(--bg-light);
}

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

.asymmetric-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.asymmetric-image-wrapper {
  position: relative;
}

.asymmetric-img {
  width: 100%;
  border-radius: 12px;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* Services Page Content */
.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card-full {
  background-color: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

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

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

.service-card-content h3 {
  margin-bottom: 12px;
}

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

/* Pricing Section */
.pricing {
  padding: 90px 20px;
  background-color: var(--bg-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.recommended {
  background-color: var(--primary);
  color: var(--text-white);
  border: none;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card.recommended h3, .pricing-card.recommended .price {
  color: var(--text-white);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent);
  color: var(--text-white);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 44px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 25px;
}

.pricing-card.recommended .price {
  color: var(--accent);
}

.pricing-features {
  list-style: none;
  margin-bottom: 35px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  font-size: 14px;
}

.pricing-card button {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background-color: var(--primary);
  color: var(--text-white);
  transition: background-color 0.3s ease;
}

.pricing-card.recommended button {
  background-color: var(--accent);
}

.pricing-card.recommended button:hover {
  background-color: var(--accent-hover);
}

.pricing-card button:hover {
  background-color: #334155;
}

/* Lead Form Section */
.form-section {
  padding: 90px 20px;
  background-color: var(--bg-light);
}

.form-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.form-info {
  background-color: var(--teal);
  color: var(--text-white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-info h2 {
  color: var(--text-white);
  font-size: 28px;
  margin-bottom: 15px;
}

.form-info-list {
  list-style: none;
  margin-top: 30px;
}

.form-info-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.lead-form-wrapper {
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.form-control:focus {
  border-color: var(--teal);
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 13px;
  color: var(--text-muted);
}

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

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

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

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 16px;
  margin: 0;
}

.faq-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-content {
  padding: 0 25px 20px 25px;
  max-height: 500px;
}

/* Contact Details Page */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-details-box {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item-icon {
  font-size: 24px;
  color: var(--accent);
}

.contact-item-text h4 {
  margin-bottom: 5px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Legal Pages Styling */
.legal-container {
  max-width: 900px;
  margin: 60px auto;
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.legal-container h1 {
  font-size: 36px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 15px;
}

.legal-container h2 {
  font-size: 20px;
  margin: 30px 0 15px 0;
}

.legal-container p, .legal-container ul {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.legal-container ul {
  padding-left: 20px;
}

/* Trust Layer Plaque */
.trust-layer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 50px 20px;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid #1E293B;
}

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

.trust-container h3 {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 18px;
}

.trust-disclaimer {
  font-size: 13px;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 25px;
}

.trust-entities {
  font-size: 14px;
}

/* Footer */
footer {
  background-color: #0B0F19;
  color: #64748B;
  padding: 40px 20px;
  font-size: 14px;
}

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

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-white);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  border-top: 3px solid var(--accent);
  color: var(--text-white);
  padding: 20px;
  z-index: 9999;
  transition: bottom 0.5s ease;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.15);
}

.cookie-banner.visible {
  bottom: 0;
}

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

.cookie-text {
  font-size: 13px;
  line-height: 1.5;
  color: #94A3B8;
}

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

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

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

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

.btn-cookie-decline {
  background-color: transparent;
  color: #94A3B8;
  border: 1px solid #475569;
}

/* Thank You & 404 Pages styling */
.feedback-container {
  max-width: 600px;
  margin: 100px auto;
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.feedback-icon {
  font-size: 58px;
  color: var(--teal);
  margin-bottom: 25px;
}

.feedback-container h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.feedback-container p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Responsive Web Design Mobile-First */
@media (max-width: 991px) {
  .hero-container, .asymmetric-block, .contact-block, .form-grid, .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonial-grid, .services-showcase, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-card.recommended {
    transform: none;
  }
}

@media (max-width: 767px) {
  .burger-menu {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary);
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.3s ease;
    align-items: flex-start;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    font-size: 18px;
    padding: 10px 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-image-container {
    display: none; /* Hide hero on phone to prevent clutter */
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cookie-container {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}