/* CSS Reset & Variables */
:root {
  --primary: #C2B0A2;
  --primary-hover: #B4A192;
  --background: #FFFFFF;
  --dark-bg: #2B2937;
  --dark-secondary: #1F1D27;
  --text: #2B2937;
  --text-muted: #6B6875;
  --white: #FFFFFF;
  --border: #E5E1DF;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

.small-container {
  max-width: 800px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-transform: capitalize;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.btn-secondary:hover {
  background-color: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary-invert {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-secondary-invert:hover {
  background-color: var(--white);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.full-width {
  width: 100%;
}

/* Grids & Layout structure */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.text-center {
  text-center: center;
  text-align: center;
}

.align-center {
  align-items: center;
}

/* Section Standard Styles */
.section-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.section-labelInverse {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 40px;
  color: var(--text);
  margin-bottom: 20px;
}

.section-titleInverse {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 30px;
}

.section-subtitleInverse {
  font-size: 16px;
  color: #B2AFBF;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.section-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 50px;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.burger-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s ease;
}

/* Hero section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  color: var(--white);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 41, 55, 0.75);
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-description {
  font-size: 16px;
  color: #DDDBC8;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 1s ease forwards;
}

/* About block */
.about-preview {
  padding: 100px 0;
  background-color: var(--background);
}

.about-preview-img-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-preview-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.about-preview-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Step-based sequence section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--dark-bg);
  color: var(--white);
}

.step-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-image-wrap {
  height: 150px;
  width: 100%;
  overflow: hidden;
}

.step-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-info {
  padding: 24px;
  color: var(--text);
  flex-grow: 1;
}

.step-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

/* Platform Highlights */
.highlights {
  padding: 100px 0;
  background-color: var(--background);
}

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

.highlight-list li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.highlight-list li strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.highlights-img-container {
  border-radius: 12px;
  overflow: hidden;
}

.highlights-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Segment listing styles */
.who-we-serve {
  padding: 80px 0;
  background-color: #FAFAF9;
}

.segment-cards {
  gap: 24px;
}

.segment-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 4px;
  border-left: 2px solid var(--primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.segment-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.segment-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
}

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

/* Pricing structures */
.pricing-section {
  padding: 100px 0;
  background-color: var(--dark-bg);
  color: var(--white);
}

.pricing-grids {
  align-items: stretch;
}

.pricing-card {
  background-color: var(--white);
  color: var(--text);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease;
}

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

.pricing-card.featured {
  background-color: #3F3C4F;
  color: var(--white);
  border: 1px solid var(--primary);
}

.price-block {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card.featured .price-block {
  color: #B2AFBF;
}

.price-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-sans);
}

.pricing-card.featured .price-num {
  color: var(--white);
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.plan-intro {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-card.featured .plan-intro {
  color: #D3D1DF;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 24px;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* CTA Banner */
.cta-banner {
  padding: 100px 0;
  background-color: #FAFAF9;
}

.cta-banner-top {
  max-width: 650px;
  margin-bottom: 48px;
}

.cta-images {
  gap: 24px;
}

.cta-images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
}

/* Testimonials styling */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--background);
}

.testimonial-card {
  background-color: #FAFAF9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-style: italic;
  font-serif: var(--font-serif);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.user-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ Accordeon CSS */
.faq-section {
  padding: 80px 0;
  background-color: #FAFAF9;
}

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

.faq-item {
  background-color: var(--white);
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-trigger span {
  font-size: 18px;
  color: var(--primary);
}

.faq-content {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  display: none;
}

/* Contact blocks & Form integration */
.contact-block {
  padding: 100px 0;
  background-color: var(--dark-bg);
  color: var(--white);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto 60px auto;
}

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

.white-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #B2AFBF;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #4D4A5E;
  background-color: #383547;
  color: var(--white);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #B2AFBF;
  margin-bottom: 24px;
}

.form-consent a {
  color: var(--primary);
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
}

.btn-submit {
  width: 100%;
  border-radius: 4px;
  padding: 16px;
}

.gis-map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 430px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background-color: #353344;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}

.info-icon {
  color: var(--primary);
  margin-bottom: 16px;
}

.info-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #B2AFBF;
  margin-bottom: 12px;
}

.info-value {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

a.info-value:hover {
  color: var(--primary);
}

/* Blog pages UI features */
.page-hero {
  padding: 80px 0;
  background-color: var(--dark-secondary);
  color: var(--white);
  text-align: center;
}

.page-hero-title {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 16px;
  color: #B2AFBF;
  max-width: 600px;
  margin: 0 auto;
}

.blog-posts-section {
  padding: 80px 0;
  background-color: var(--background);
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.blog-card-img-wrap {
  height: 200px;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.blog-card-meta h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-meta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Single article UI */
.article-container {
  padding: 100px 0;
  background-color: var(--background);
}

.article-meta-info {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.article-main-title {
  font-size: 44px;
  margin-bottom: 30px;
}

.article-hero-img-wrap {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.article-container p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-container h2 {
  font-size: 24px;
  margin: 36px 0 20px 0;
  color: var(--text);
}

.article-container blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  margin: 30px 0;
}

.article-container ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.article-container ul li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.article-cta-block {
  background-color: #FAFAF9;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 50px;
}

.article-cta-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.article-cta-block p {
  font-size: 14px;
  margin-bottom: 24px;
}

/* Legal structural pages */
.legal-content-section {
  padding: 80px 0;
  background-color: var(--background);
}

.legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-content-section h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.legal-content-section h2 {
  font-size: 20px;
  margin: 32px 0 16px 0;
  color: var(--text);
}

.legal-content-section p, .legal-content-section ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th, td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

th {
  background-color: #FAFAF9;
  font-weight: 700;
  color: var(--text);
}

/* Cookie notification strip rules */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001;
  max-width: 440px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  animation: fadeInUp 0.5s ease;
}

.cookie-banner-content h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.cookie-banner-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner-content p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-choices {
  margin-bottom: 16px;
  padding: 12px;
  background-color: #FAFAF9;
  border-radius: 6px;
}

.cookie-choice {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cookie-choice:last-child {
  margin-bottom: 0;
}

.cookie-choice label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; 
  justify-content: flex-end;
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.cookie-settings-btn:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Thank you view styling */
.thank-you-view {
  padding: 120px 0;
  background-color: #FAFAF9;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.success-check-icon {
  margin: 0 auto 24px auto;
}

.thank-you-view h1 {
  font-size: 38px;
  margin-bottom: 16px;
  color: var(--text);
}

.thank-you-view p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 24px auto;
}

/* Footer rules */
.footer {
  background-color: #1F1D27;
  color: var(--white);
  padding: 80px 0 0 0;
  border-top: 1px solid #2B2937;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  color: var(--white);
}

.footer-group-title {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #8C8A97;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  font-size: 13px;
  color: #B2AFBF;
}

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

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid #2B2937;
}

.copyright {
  font-size: 12px;
  color: #8C8A97;
}

/* Animations mechanics */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries Adaptive Settings */
@media (max-width: 991px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-preview-img {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 30px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 20px;
    align-items: flex-start;
  }
  
  .nav-btn {
    width: 100%;
  }
  
  .nav.open {
    display: flex;
  }
  
  .grid-2, .grid-3, .grid-4, .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: unset;
  }
  
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .article-main-title {
    font-size: 32px;
  }
}
