/* styles.css */

html {
  scroll-behavior: smooth;
}

/* Accessibility and SEO improvements */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #6C00F0;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

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

:root {
  --primary-purple: #5003af;
  --button-bg: #f4f0ff;
  --bg-light: rgba(0, 0, 0, 0.05);
  --border-light: rgba(0, 0, 0, 0.04);
  --color-text: #504c54;
  --color-muted: #827f85;
  --color-button: #6c00f0;
  --color-button-text: #ffffff;
  --font-base: 'Roboto', sans-serif;
  --color-primary: #6C00F0;
}

.header1 {
  background: radial-gradient(74.72% 155.18% at 71.67% 50%, rgba(163, 115, 255, 0.82) 3.37%, rgba(48, 0, 119, 0.82) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, linear-gradient(269.74deg, rgba(0, 0, 0, 0) 47.67%, #000000 90.91%), linear-gradient(90.11deg, #300077 10.7%, #6C00F0 63.45%);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
}

.logo {
  width: 211px;
  height: 30px;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.2px;
  text-decoration: none;
  white-space: nowrap;
}

.primary-button {
  background-color: var(--button-bg);
  color: var(--primary-purple);
  border: none;
  border-radius: 100px;
  padding: 4px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.2px;
  text-decoration: none !important;
}

.primary-button:focus {
  outline: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5em;
}

.hamburger {
  display: block;
  position: relative;
  width: 2em;
  height: 3px;
  background: white;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.nav__item--mobile-only {
  display: none;
}

.primary-button--desktop-only {
  display: inline-flex;
}

@media (max-width: 768px) {
  .container {
    padding: 24px 0 0 10px;
    /* Remove horizontal padding for mobile */
  }

  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .nav__item--mobile-only {
    display: block;
  }

  .primary-button--desktop-only {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .nav__list {
    position: absolute;
    background: var(--primary-purple);
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    z-index: 1000;
    padding: 1em 0;
    box-sizing: border-box;
  }

  .nav__list.nav--visible {
    display: flex;
  }


  .nav__item {
    margin: 0.5em 0;
  }

  .nav__item--mobile-only .primary-button {
    width: 100%;
    text-align: center;
  }

  .primary-button {
    order: 1;
  }
}



/* 1. Base & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background: #fff;
  overflow-x: hidden;
}

/* 2. Hero wrapper with layered gradients & SVG */
.hero {
  position: relative;
  width: 100%;
  min-height: 654px;
  background: radial-gradient(74.72% 155.18% at 71.67% 50%, rgba(163, 115, 255, 0.82) 3.37%, rgba(48, 0, 119, 0.82) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, linear-gradient(269.74deg, rgba(0, 0, 0, 0) 47.67%, #000000 90.91%), linear-gradient(90.11deg, #300077 10.7%, #6C00F0 63.45%);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

.hero h2 {
  font-weight: 400;
}

/* 3. Inner flex container */
.hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
}

/* 4. Content block */
.hero__content {
  flex: 1;
  max-width: 45%;
}

.hero__title {
  font-size: 3.10rem;
  /* ~52px */
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  font-family: "Roboto" !important;
  font-size: 70!important;
  font-weight: bold!important;
}

.hero__description {
  font-weight: 300;
  font-size: 1.2rem;
  /* ~22px */
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: left;
}

.hero__buttons .button {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.button {
  display: inline-block;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.25rem;
  /* ~20px */
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  letter-spacing: -0.2px;
  text-decoration: none !important;
}

.button--primary {
  background-color: #f4f0ff;
  color: #5003af;
}

.button--secondary {
  background: transparent;
  border: 2px solid #f4f0ff;
  color: #f4f0ff;
}

/* 5. Visual (image + stats) */
.hero__visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  display: block;
  max-width: 150%;
  height: auto;
  margin-top: -50px;
}

/* 6. Stats cards */
.stats {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 1rem;
  transform: translateY(30%);
  margin-left: 65px;
  max-width: calc(100% - 65px);
  flex-wrap: wrap;
}

.stat-card {
  backdrop-filter: blur(6.7px);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.25),
    inset 0 -4px 4px rgba(183, 135, 182, 0.4),
    inset 0 4px 4px rgba(255, 255, 255, 0.18);
  padding: 0.625rem 1rem;
  text-align: center;
}

.stat-card__label {
  padding-top: 5px;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 0.25rem;
  letter-spacing: -0.22px;

  color: rgba(255, 255, 255, 0.7)
}

.stat-card__value {
  font-weight: 500;
  font-size: 26px;
  /* ~36px */
  line-height: 1.3;
  letter-spacing: -0.36px;
}

.stat-card__unit {
  font-weight: 400;
  font-size: 1.25rem;
  /* ~20px */
}

/* 7. Responsive HERO */
@media (max-width: 1200px) {
  .hero__inner {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__content,
  .hero__visual {
    max-width: 100%;
  }

  .hero__visual {
    flex-direction: column;
    /* Stack image and stats vertically */
    align-items: center;
    /* Center image horizontally */
    justify-content: center;
    /* Center content vertically if space allows */
  }

  .hero__buttons {
    align-items: center;
  }

  .stats {
    position: relative;
    /* Ensure it flows with the document */
    transform: none;
    /* Remove any absolute positioning transforms */
    margin-top: 1.5rem;
    /* Add space between image and stats */
    justify-content: center;
    /* Center stat cards */
    flex-wrap: wrap;
    /* Allow stat cards to wrap */
    margin-left: 0;
    /* Remove fixed margin */
  }

  .hero__image {
    max-width: 100%;
    margin-top: 0;
  }

  .hero {
    padding-bottom: 40px;
    /* Added padding-bottom for responsive view */
  }
}

/* MEDIA PLAN CREATION PANEL */
.media-plan-creator-panel {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  font-family: var(--font-base);
  box-shadow: 0 8px 16px -8px rgba(80, 3, 175, 0.12);
  z-index: 10;
}

.panel__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid #b4b2b6;
  pointer-events: none;
}

.panel__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}

/* Header (Title + Filters + Action) */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  flex-wrap: nowrap;
}

.header__title {
  flex-shrink: 0;
  margin: 0 50px;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

.header__titles h3 {
  font-size: 16px;
}

/* Filters */
.filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
  padding: 30px 0 30px 0;
}

.filter-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Input Group */
.input-group {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  height: 28px;
  background-color: var(--bg-light);
  border-radius: 10px;
}

.input-group__field {
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-light);
  border-radius: 11px;
  padding: 0 8px;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.25px;
  background: none;
}

.input-group__icon {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--color-muted);
}

/* Action Button */
.action {
  flex-shrink: 0;
}

.generate-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-button);
  color: var(--color-button-text);
  border: none;
  border-radius: 100px;
  height: 36px;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  margin-right: 15px;
  text-decoration: none;
}

.generate-button__icon {
  width: 15px;
  height: 15px;
  margin-right: 4px;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 1rem;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .input-group {
    max-width: none;
  }
}

/* Feature1 styles */
.feature1 {
  position: relative;
  width: 100%;
  background: #fff;

}

.feature1__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 2.5rem 4rem;
}

.feature1__image {
  flex: 0 0 auto;
  width: 480px;
  max-width: 100%;
  height: auto;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature1__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.feature1__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* Tailwind gap-12 = 48px */
  flex: 1 1 0%;
}

.feature1__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 3.25rem;
  /* 52px */
  line-height: 1.2;
  letter-spacing: -0.52px;
  margin: 0;
  color: #05000c;
}

.feature1__description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  /* 18px */
  line-height: 1.5;
  margin: 0;
  color: #05000c;
}

.feature1__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  /* py-3 = 12px, px-4 = 16px */
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  /* 20px */
  letter-spacing: 1.6px;
  color: #6c00f0;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 100px;
  align-self: flex-start;
}

.feature1__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #6c00f0;
  border-radius: 100px;
  pointer-events: none;
}

/* Responsive: stack on smaller screens */
@media (max-width: 992px) {
  .feature1__container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .feature1__image {
    width: 100%;
    min-height: 200px;
    max-width: 400px;
  }
  
  .feature1__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

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

/* Newsletter Section */
.newsletter-section {
  background-color: #300077;
  width: 100%;
  position: relative;
}

.newsletter-container {
  max-width: 1072px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 64px;
  gap: 32px;
}

/* Title */
.newsletter-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.newsletter-tagline {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.52px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

.newsletter-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.22px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.newsletter-description strong {
  font-weight: 700;
}

.newsletter-description .underline {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* Actions */
.newsletter-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  height: 35px;
  padding: 0 12px;
  width: 244px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.2506px;
  color: #ffffff;
}

.newsletter-input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.newsletter-button {
  background-color: #6c00f0;
  border: none;
  border-radius: 100px;
  height: 40px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.43;
  letter-spacing: 1.6px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none !important;
}

.download-icon {
  font-size: 18px;
  line-height: 1;
}

.newsletter-terms {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.2506px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.newsletter-terms-link {
  color: #ffffff;
  text-decoration: none;
}

.newsletter-terms-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .newsletter-container {
    padding: 20px 32px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-input,
  .newsletter-button {
    width: 100%;
    max-width: none;
  }

  .newsletter-tagline {
    white-space: normal;
    font-size: 36px;
  }
}

/* Pull Quote Section Styles */
.pull-quote-section {
  position: relative;
  width: 100%;
  background: #fff;
}

.pull-quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1px;
  border-left: 2px solid #b4b2b6;
  pointer-events: none;
}

.pull-quote-wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* pt-20 (80px) | px-16 (64px) | plus inner pl-8 (32px) => total padding-left 96px */
  padding: 80px 64px 0 96px;
  gap: 40px;
  /* gap-10 (2.5rem = 40px) between title & text */
  width: 100%;
  color: #05000c;
  text-align: center;
}

@media (max-width: 768px) {
  .pull-quote-wrapper {
    padding: 40px 32px 0 48px;
  }
}

/* Title */
.pull-quote-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.52px;
  margin: 0;
}

/* Paragraph */
.pull-quote-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.22px;
  margin: 0;
}

/* Hero2 Section Styles */



@media (max-width: 1200px) {}

@media (max-width: 992px) {}




/* Left Column */




/* Title */



/* Subtitle */


/* Right Column */

/* Arrow Icon */


/* Image Title Overlay */


/* Image Description Overlay */


/* === Advanced Segmentation Section (new two-column layout) === */
.hero-advanced-segmentation__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 48px 0;
}

.hero-advanced-segmentation__text {
  flex: 1;
  color: #05000c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 2rem;
  padding-left: 2.5rem;
}

.hero-advanced-segmentation__text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-advanced-segmentation__text p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
  font-weight: 400;
}

.hero-advanced-segmentation__visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-advanced-segmentation__img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

.hero-advanced-segmentation__caption {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
}



/* Remove old/obsolete styles for overlays/arrows */

/* Container & padding */

/* Purple left border with rounded corners */

/* Inner flex layout */

/* ───────── Text side ───────── */

/* Text block spacing */

/* Numbered heading */

/* Description paragraph */

/* ───────── Image side ───────── */

/* Background‐image positioning & crop */

/* Arrow icon wrapper (flipped Y) */

/* Overlay text on image */

/* ───────── Simple responsive ───────── */
@media (max-width: 992px) {}

/* === investment-breackdown section (refactored two-column layout) === */
.investment-breackdown__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 48px 0;
}

.investment-breackdown__text {
  flex: 1;
  color: #05000c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 2rem;
  padding-left: 2.5rem;
}

.investment-breackdown__text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.investment-breackdown__text p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
  font-weight: 400;
}

.investment-breackdown__visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.investment-breackdown__img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

.investment-breackdown__caption {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
}



/* Remove obsolete styles for old structure */

/* ─── Pull Quote 3 Section ───────────────────────────────────────────── */
.pull-quote {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  /* If you need vertical centering too: align-items: center; */
}

.pull-quote--3 {
  /* override or extend .pull-quote if needed */
}

/* Actions wrapper inside Pull Quote */
.pull-quote__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 4rem 5rem;
  /* pt-6(1.5rem) px-16(4rem) pb-20(5rem) */
}

/* ─── Button, Large ───────────────────────────────────────────────────── */
/*.button {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}*/

.button--lg {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  /* 5px */
  padding: 0 0.9375rem;
  /* 15px */
  height: 2.5rem;
  /* 10 × 0.25rem */
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  color: var(--color-primary);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  /* 20px */
  line-height: 1.43;
  /* matches design's leading */
  letter-spacing: 1.6px;
}

/* Button text wrapper (if you need extra styling) */
.button__text {
  display: inline-block;
}

/* Icon inside the button */
.button__icon {
  width: 1.125rem;
  /* 18px */
  height: 1.125rem;
  /* 18px */
  object-fit: contain;
}

/* ─── Responsive Adjustments ─────────────────────────────────────────── */
@media (max-width: 992px) {
  .pull-quote__actions {
    padding: 1rem 2rem 3rem;
  }

  .button--lg {
    font-size: 1rem;
    /* 16px on smaller screens */
    gap: 0.25rem;
    /* 4px */
    padding: 0 0.75rem;
    /* 12px */
  }

  .button__icon {
    width: 1rem;
    /* 16px */
    height: 1rem;
    /* 16px */
  }
}

/* ==============================================
   comparative section styles start

#comparative {
  background-color: #f0eef2;
  padding: 5rem 4rem;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

/* Responsive adjustments for comparative section */
@media (max-width: 1200px) {
  #comparative {
    padding: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  #comparative {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  #comparative {
    padding: 2rem 0.5rem;
  }
}

.comparative-header {
  margin-bottom: 4.375rem;
  /* 70px */
  text-align: center;
}

@media (max-width: 768px) {
  .comparative-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .comparative-header {
    margin-bottom: 2rem;
  }
}

.comparative-title {
  font-size: 3.25rem;
  /* 52px */
  font-weight: 500;
  line-height: 1.2;
  color: #1e1924;
  margin: 0;
  letter-spacing: -0.52px;
}

.comparative-subtitle {
  font-size: 1.375rem;
  /* 22px */
  font-weight: 400;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 770px;
  color: #1e1924;
  letter-spacing: -0.22px;
  padding-top: 20px;
}



/* Left-card gradient */

/* Right-card gradient */

/* CARD HEADER */




/* FEATURE LISTS */




/* CENTER COLUMN */





/* FOOTER / CTA */
.comparative-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  /* gap-10 */
}

.comparative-note {
  font-size: 1.375rem;
  /* 22px */
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.22px;
}

.comparative-note__brand {
  color: #6c00f0;
  font-weight: 500;
}

.comparative-note__text {
  color: #666;
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #6c00f0;
  color: #ffffff;
  font-size: 1.25rem;
  /* 20px */
  font-weight: 700;
  letter-spacing: 1.6px;
  padding: 0 15px;
  height: 2.5rem;
  /* h-10 */
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none !important;
}

.cta-button img {
  margin-left: 5px;
  width: 18px;
  height: 18px;
}

/* comparative section styles end */

@media (max-width: 1200px) {}

@media (max-width: 768px) {
  #comparative {
    padding: 3rem 1.5rem;
  }

  .comparative-title {
    font-size: 2.5rem;
  }

  .comparative-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {}

.investment-optimization__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 48px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.investment-optimization__text {
  flex: 1;
  color: #05000c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 2rem;
  padding-left: 0;
}

.investment-optimization__text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.investment-optimization__text p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.investment-optimization__visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.investment-optimization__img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  height: auto;
}

.investment-optimization__caption {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}



/* Remove old arrow styles */
/* === Market Saturation Section (transformed) === */
.market-saturation__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 48px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.market-saturation__text {
  flex: 1;
  color: #05000c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 2rem;
  padding-left: 0;
}

.market-saturation__text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.market-saturation__text p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.market-saturation__visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.market-saturation__img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  height: auto;
}

.market-saturation__caption {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}



/* === Comparative Section Table Look === */

/* Responsive: stack columns on mobile */
@media (max-width: 900px) {}

/* Comparative section background and table card effect */
.comparative-section {
  background: #f7f6fa;
  padding: 3rem 0;
}

@media (max-width: 900px) {
  .comparative-section {
    padding: 1.5rem 0.2rem;
  }
}

/* Comparative section: enforce min-width for all columns for perfect alignment */

/* Header rows: center content and style for distinction */

@media (max-width: 1100px) {}

/* Redesigned Comparative Section */
.redesigned-comparative .comparative-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(80, 3, 175, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid rgba(108, 0, 240, 0.06);
}

.redesigned-comparative .comparative-table__header {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  background: #fff;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  align-items: start;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(108, 0, 240, 0.1);
  position: relative;
}

.redesigned-comparative .comparative-table__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(108, 0, 240, 0.1) 50%, transparent 100%);
}

.redesigned-comparative .comparative-table__header .comparative-table__col--without,
.redesigned-comparative .comparative-table__header .comparative-table__col--with {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.redesigned-comparative .comparative-table__col--without h3 {
  color: #374151;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.redesigned-comparative .comparative-table__col--with h3 {
  color: #374151;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.redesigned-comparative .comparative-table__label {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.redesigned-comparative .comparative-table__row {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff;
  font-size: 1.05rem;
  transition: background-color 0.2s ease;
}

.redesigned-comparative .comparative-table__row:hover {
  background: rgba(248, 247, 255, 0.3);
}

.redesigned-comparative .comparative-table__row:last-child {
  border-bottom: none;
}

.redesigned-comparative .comparative-table__col {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 1.5rem;
  min-height: 64px;
  text-align: left;
  background: #fff;
  position: relative;
}

.redesigned-comparative .comparative-table__col--without {
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  color: #374151;
  font-weight: 400;
  background: #fff;
  justify-content: flex-end;
  line-height: 1.5;
  text-align: right;
}

.redesigned-comparative .comparative-table__col--with {
  border-left: 1px solid rgba(0, 0, 0, 0.04);
  color: #374151;
  font-weight: 400;
  background: #fff;
  justify-content: flex-start;
  line-height: 1.5;
}

.redesigned-comparative .comparative-table__col--feature {
  color: #6c00f0;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  background: rgba(108, 0, 240, 0.02);
  font-size: 1.05rem;
  align-items: center;
  position: relative;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.redesigned-comparative .comparative-table__col--feature::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(108, 0, 240, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.redesigned-comparative .comparative-table__icon {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .redesigned-comparative .comparative-table__icon {
    font-size: 1.1rem;
    width: 1.3em;
    height: 1.3em;
  }
}

@media (max-width: 480px) {
  .redesigned-comparative .comparative-table__icon {
    font-size: 1rem;
    width: 1.2em;
    height: 1.2em;
  }
}

.redesigned-comparative .comparative-table__icon:hover {
  transform: scale(1.1);
}

.redesigned-comparative .comparative-table__icon--no {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
}

.redesigned-comparative .comparative-table__icon--yes {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
}

/* Responsive: stack columns on mobile */
@media (max-width: 900px) {
  .redesigned-comparative .comparative-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 1rem;
  }

  .redesigned-comparative .comparative-table__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f7f6fa;
    border-bottom: 1px solid #ecebed;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--without,
  .redesigned-comparative .comparative-table__header .comparative-table__col--with {
    border: none;
    padding: 0.5rem 0;
    background: #f7f6fa;
    text-align: center;
    justify-content: center;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--feature {
    order: 2;
    background: #f7f6fa;
    padding: 0.5rem 0;
    text-align: center;
    justify-content: center;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--without {
    order: 1;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--with {
    order: 3;
  }

  .redesigned-comparative .comparative-table__vs {
    font-size: 1.4rem;
    margin: 0.5rem 0;
  }

  .redesigned-comparative .comparative-table__row {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .redesigned-comparative .comparative-table__row:last-child {
    border-bottom: none;
  }

  .redesigned-comparative .comparative-table__col {
    justify-content: flex-start !important;
    border: none !important;
    background: #fff;
    padding: 1rem;
    font-size: 0.95rem;
    min-height: auto;
    text-align: left !important;
  }

  .redesigned-comparative .comparative-table__col--feature {
    background: #f7f6fa;
    color: #6c00f0;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 0;
    text-align: left;
    order: -1;
    border-bottom: 1px solid rgba(108, 0, 240, 0.1);
  }

  .redesigned-comparative .comparative-table__col--without {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .redesigned-comparative .comparative-table__col--without span:first-child {
    flex: 1;
    text-align: left !important;
  }

  .redesigned-comparative .comparative-table__col--with {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .redesigned-comparative .comparative-table__icon {
    font-size: 1rem;
    width: 1.2em;
    height: 1.2em;
  }

  .highlighted-with-ticketbeep {
    font-size: 1rem;
    padding: 4px 20px;
  }
}

/* Tablet responsive */
@media (max-width: 768px) {
  .redesigned-comparative .comparative-header {
    padding: 0 1rem;
  }

  .redesigned-comparative .comparative-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .redesigned-comparative .comparative-subtitle {
    font-size: 1.1rem;
  }

  .redesigned-comparative .comparative-table {
    margin: 0 0.5rem;
  }

  .redesigned-comparative .comparative-table__col {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .redesigned-comparative .comparative-table__col--feature {
    font-size: 0.95rem;
    padding: 0.7rem 0.8rem;
  }

  .redesigned-comparative .comparative-table__header {
    padding: 1.2rem 0.8rem;
    background: #f7f6fa;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--without,
  .redesigned-comparative .comparative-table__header .comparative-table__col--with,
  .redesigned-comparative .comparative-table__header .comparative-table__col--feature {
    background: #f7f6fa;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--without h3,
  .redesigned-comparative .comparative-table__header .comparative-table__col--with h3 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto;
  }

  .redesigned-comparative .comparative-table__label {
    font-size: 0.8rem;
    text-align: center;
    display: block;
  }
}

/* Small mobile responsive */
@media (max-width: 480px) {
  .redesigned-comparative .comparative-header {
    padding: 0 0.5rem;
  }

  .redesigned-comparative .comparative-title {
    font-size: 2rem;
  }

  .redesigned-comparative .comparative-subtitle {
    font-size: 1rem;
  }

  .redesigned-comparative .comparative-table {
    margin: 0 0.25rem;
    border-radius: 16px;
  }

  .redesigned-comparative .comparative-table__col {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  .redesigned-comparative .comparative-table__col--feature {
    font-size: 0.9rem;
    padding: 0.6rem 0.7rem;
  }

  .redesigned-comparative .comparative-table__header {
    padding: 1rem 0.7rem;
    background: #f7f6fa;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--without,
  .redesigned-comparative .comparative-table__header .comparative-table__col--with,
  .redesigned-comparative .comparative-table__header .comparative-table__col--feature {
    background: #f7f6fa;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col--without h3,
  .redesigned-comparative .comparative-table__header .comparative-table__col--with h3 {
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto;
  }

  .redesigned-comparative .comparative-table__vs {
    font-size: 1.2rem;
  }

  .highlighted-with-ticketbeep {
    font-size: 0.9rem;
    padding: 3px 16px;
  }

  .redesigned-comparative .comparative-footer--redesigned {
    padding: 0 0.5rem;
  }

  .redesigned-comparative .comparative-footer--redesigned .comparative-note {
    font-size: 1.1rem;
  }

  .redesigned-comparative .cta-button {
    font-size: 1rem;
    padding: 0 12px;
    height: 2.25rem;
  }
}

.redesigned-comparative .comparative-footer--redesigned {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .redesigned-comparative .comparative-footer--redesigned {
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .redesigned-comparative .comparative-footer--redesigned {
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0 0.25rem;
  }
}

.redesigned-comparative .comparative-footer--redesigned .comparative-note {
  font-size: 1.25rem;
  color: #6c00f0;
  text-align: center;
  margin: 0;
}

.redesigned-comparative .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #6c00f0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 0 20px;
  height: 2.5rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
  gap: 8px;
  min-width: 280px;
  text-decoration: none !important;
}

.redesigned-comparative .cta-button img {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.redesigned-comparative .cta-button:hover {
  background: #5003af;
}

.redesigned-comparative .comparative-table__col--without span:first-child {
  flex: 1;
  text-align: right;
}

.redesigned-comparative .comparative-table__vs {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6c00f0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin: 0.5rem 0;
}

.highlighted-with-ticketbeep {
  background: #6c00f0;
  color: #fff;
  border-radius: 16px;
  padding: 6px 32px;
  font-weight: 500;
  font-size: 1.2rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(108, 0, 240, 0.08);
}

@media (max-width: 900px) {
  .redesigned-comparative .comparative-table__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .redesigned-comparative .comparative-table__header .comparative-table__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .redesigned-comparative .comparative-table__row .comparative-table__col--without {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }

  .redesigned-comparative .comparative-table__row .comparative-table__col--without span {
    margin: 0 0.5em 0 0;
  }

  .redesigned-comparative .comparative-table__row .comparative-table__col--without .comparative-table__icon--no {
    margin: 0 0 0 0.5em;
  }
}

/* ==============================================
   3 Steps Section Styles
   ============================================== */

.three-steps-section {
  background: radial-gradient(60.14% 60.14% at 51.22% 50%, rgba(255, 255, 255, 0.32) 57.01%, rgba(0, 0, 0, 0.192) 100%), #5003AF;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.three-steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.three-steps-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}

.three-steps-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.three-steps-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.52px;
  margin: 0;
  max-width: 800px;
}

.three-steps-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
}

/* Content Styles */
.three-steps-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
}

/* Step Row Styles */
.step-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
}


/* Step Image Container Styles */
.step-image-container {
  flex: 0 0 auto;
  max-width: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Remove overlay and border styles */

/* Step Content Styles */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.step-content--right {
  text-align: right;
  align-items: flex-end;
}

.step-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.36px;
  margin: 0;
}

.step-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Actions Styles */
.step-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.step-cta-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.step-cta-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.step-cta-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.43;
  letter-spacing: 1.2px;
  color: #ffffff;
  white-space: nowrap;
}

.step-cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .three-steps-container {
    padding: 60px 40px;
  }

  .three-steps-title {
    font-size: 42px;
  }

  .step-row {
    gap: 40px;
  }

  .step-image-container {
    max-width: 450px;
  }
}

@media (max-width: 992px) {
  .three-steps-container {
    padding: 40px 32px;
  }

  .step-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .step-row:nth-child(2) {
    flex-direction: column-reverse;
  }

  .step-content {
    text-align: center;
    align-items: center;
    max-width: 600px;
  }

  .step-content--right {
    text-align: center;
    align-items: center;
  }

  .step-image-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .step-title {
    font-size: 28px;
  }

  .step-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .three-steps-container {
    padding: 30px 20px;
  }

  .three-steps-title {
    font-size: 32px;
  }

  .three-steps-subtitle {
    font-size: 14px;
  }

  .three-steps-description {
    font-size: 16px;
  }

  .step-title {
    font-size: 24px;
  }

  .step-description {
    font-size: 16px;
  }

  .step-cta-text {
    font-size: 16px;
  }

  .step-cta-button {
    height: 44px;
    padding: 0 20px;
  }

  .step-image-container {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .three-steps-container {
    padding: 20px 16px;
  }

  .three-steps-title {
    font-size: 28px;
  }



  .step-cta-button {
    width: 100%;
    max-width: 280px;
  }
}

/* Access Panel Section */
.access-panel-section {
  background-color: #f0eef2;
  position: relative;
  width: 100%;
  padding: 80px 0;
}

.access-panel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.access-panel-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 768px;
}

.access-panel-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.2;
  color: #1e1924;
  letter-spacing: -0.52px;
  margin: 0;
}

.access-panel-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  color: #1e1924;
  letter-spacing: -0.28px;
  margin: 0;
}

/* Access Panel Flex Row Layout */
.access-panel-flex-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-image-container {
  width: 480px;
  max-width: 90vw;
  height: auto;
  margin: 0;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}

.dashboard-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Annotation Groups */











.annotation-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: #000000;
  letter-spacing: -0.22px;
  margin: 0 0 8px 0;
  white-space: nowrap;
}

.annotation-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #1e1924;
  margin: 0;
}

.access-panel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.access-panel-note {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  color: #1e1924;
  letter-spacing: -0.28px;
  margin: 0;
}

.access-panel-button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  height: 40px;
  border: 1px solid #6c00f0;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.access-panel-button:hover {
  background-color: #6c00f0;
  color: white;
}

.access-panel-button:hover .access-panel-button-icon path {
  stroke: white;
}

.access-panel-button-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.43;
  color: #6c00f0;
  letter-spacing: 1.6px;
  white-space: nowrap;
}

.access-panel-button:hover .access-panel-button-text {
  color: white;
}

.access-panel-button-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .access-panel-container {
    padding: 0 32px;
  }

  .dashboard-image-container {
    width: 450px;
  }
}

@media (max-width: 992px) {
  .access-panel-section {
    padding: 60px 0;
  }

  .access-panel-container {
    padding: 0 32px;
    gap: 40px;
  }

  .access-panel-title {
    font-size: 42px;
  }

  .access-panel-subtitle {
    font-size: 24px;
  }

  .dashboard-image-container {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .access-panel-section {
    padding: 40px 0;
  }

  .access-panel-container {
    padding: 0 20px;
    gap: 30px;
  }

  .access-panel-title {
    font-size: 32px;
  }

  .access-panel-subtitle {
    font-size: 20px;
  }

  .access-panel-note {
    font-size: 20px;
  }

  .dashboard-image-container {
    width: 100%;
    max-width: 350px;
  }

  .annotation-title {
    font-size: 18px;
  }

  .annotation-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .access-panel-section {
    padding: 30px 0;
  }

  .access-panel-container {
    padding: 0 16px;
    gap: 24px;
  }

  .access-panel-title {
    font-size: 28px;
  }

  .access-panel-subtitle {
    font-size: 18px;
  }

  .dashboard-image-container {
    width: 100%;
    max-width: 300px;
  }

  .access-panel-annotation {
    padding: 20px 16px 12px 16px;
  }

  .annotation-title {
    font-size: 16px;
  }

  .annotation-description {
    font-size: 13px;
  }

  .access-panel-button {
    padding: 0 12px;
    height: 36px;
  }

  .access-panel-button-text {
    font-size: 16px;
  }

  .access-panel-button-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .access-panel-container {
    padding: 0 12px;
    gap: 20px;
  }

  .access-panel-title {
    font-size: 24px;
  }

  .access-panel-subtitle {
    font-size: 16px;
  }

  .dashboard-image-container {
    max-width: 280px;
  }

  .access-panel-annotation {
    padding: 16px 12px 8px 12px;
  }

  .annotation-title {
    font-size: 14px;
  }

  .annotation-description {
    font-size: 12px;
  }
}

/* Access Panel Annotations Layout */
.access-panel-annotations-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
  max-width: 320px;
  flex-shrink: 0;
  flex-basis: auto;
}

.access-panel-annotation {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(80, 3, 175, 0.07);
  padding: 28px 24px 20px 24px;
  margin-bottom: 0;
  min-width: 0;
}

.access-panel-annotation .annotation-title {
  color: #1e1924;
  margin-bottom: 8px;
}

.access-panel-annotation .annotation-description {
  color: #504c54;
}

@media (max-width: 900px) {
  .access-panel-flex-row {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    margin-top: 0;
  }

  .dashboard-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .access-panel-annotations-col {
    max-width: 100%;
    width: 100%;
    gap: 24px;
  }
  
  .access-panel-annotation {
    padding: 24px 20px 16px 20px;
  }
}

/* Remove old .access-panel-annotations styles if present */
/* ==============================================
   Gloria + Nexus Section Styles
   ============================================== */

.gloria-nexus-section {
  background-color: #eaeaea;
  width: 100%;
  position: relative;
  padding: 80px 64px;
}

.gloria-nexus-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.gloria-nexus-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}

.gloria-nexus-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: #1e1924;
  letter-spacing: -0.24px;
  margin: 0;
}

.gloria-nexus-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.2;
  color: #1e1924;
  letter-spacing: -0.44px;
  margin: 0;
}

.gloria-nexus-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #1e1924;
  letter-spacing: -0.18px;
  margin: 0;
  max-width: 800px;
}

/* Main Content Styles */
.gloria-nexus-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
}

/* Chat Interface Styles */
.gloria-nexus-chat {
  flex: 0 0 auto;
  width: 408px;
  max-width: 100%;
  height: auto;
  min-height: 400px;
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding-top: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gloria-nexus-chat-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Features Styles */
.gloria-nexus-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 600px;
}

/* Feature Card Styles */
.gloria-feature-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #dacdff;
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 2px 4px rgba(218, 205, 255, 0.3);
  position: relative;
}

.gloria-feature-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}

.gloria-feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.gloria-feature-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #1e1924;
  letter-spacing: -0.24px;
  margin: 0;
}

.gloria-feature-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.33;
  color: #1e1924;
  margin: 0 0 15px 0;
}

.gloria-feature-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #1e1924;
  margin: 0;
}

/* Footer Styles */
.gloria-nexus-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.gloria-nexus-quote {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #1e1924;
  letter-spacing: -0.24px;
  margin: 0;
  max-width: 800px;
}

.gloria-nexus-button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  height: 40px;
  border: 1px solid #6c00f0;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.gloria-nexus-button:hover {
  background-color: #6c00f0;
  color: white;
}

.gloria-nexus-button:hover .gloria-nexus-button-icon path {
  stroke: white;
}

.gloria-nexus-button-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.43;
  color: #6c00f0;
  letter-spacing: 1.6px;
  white-space: nowrap;
}

.gloria-nexus-button:hover .gloria-nexus-button-text {
  color: white;
}

.gloria-nexus-button-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .gloria-nexus-section {
    padding: 60px 40px;
  }

  .gloria-nexus-content {
    gap: 40px;
  }

  .gloria-nexus-chat {
    width: 350px;
    max-width: 100%;
    min-height: 350px;
  }

  .gloria-nexus-features {
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .gloria-nexus-section {
    padding: 40px 32px;
  }

  .gloria-nexus-content {
    flex-direction: column;
    gap: 40px;
  }

  .gloria-nexus-chat {
    width: 100%;
    max-width: 400px;
    min-height: 300px;
  }

  .gloria-nexus-features {
    max-width: 100%;
    gap: 30px;
  }

  .gloria-nexus-title {
    font-size: 36px;
  }

  .gloria-nexus-subtitle {
    font-size: 20px;
  }

  .gloria-nexus-description {
    font-size: 16px;
  }

  .gloria-feature-title {
    font-size: 20px;
  }

  .gloria-feature-subtitle {
    font-size: 18px;
  }

  .gloria-feature-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .gloria-nexus-section {
    padding: 30px 20px;
  }

  .gloria-nexus-container {
    gap: 40px;
  }

  .gloria-nexus-title {
    font-size: 28px;
  }

  .gloria-nexus-subtitle {
    font-size: 18px;
  }

  .gloria-nexus-description {
    font-size: 16px;
  }

  .gloria-nexus-quote {
    font-size: 20px;
  }

  .gloria-nexus-chat {
    min-height: 250px;
  }

  .gloria-feature-card {
    padding: 20px 24px;
  }

  .gloria-feature-header {
    gap: 20px;
  }

  .gloria-feature-icon {
    width: 40px;
    height: 40px;
  }

  .gloria-feature-title {
    font-size: 18px;
  }

  .gloria-feature-subtitle {
    font-size: 16px;
  }

  .gloria-feature-description {
    font-size: 14px;
  }

  .gloria-nexus-button {
    padding: 0 12px;
    height: 36px;
  }

  .gloria-nexus-button-text {
    font-size: 16px;
  }

  .gloria-nexus-button-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .gloria-nexus-section {
    padding: 20px 16px;
  }

  .gloria-nexus-container {
    gap: 30px;
  }

  .gloria-nexus-title {
    font-size: 28px;
  }

  .gloria-nexus-subtitle {
    font-size: 18px;
  }

  .gloria-nexus-description {
    font-size: 16px;
  }

  .gloria-nexus-quote {
    font-size: 20px;
  }

  .gloria-nexus-chat {
    min-height: 200px;
  }

  .gloria-feature-card {
    padding: 16px 20px;
  }

  .gloria-feature-header {
    gap: 15px;
  }

  .gloria-feature-icon {
    width: 35px;
    height: 35px;
  }

  .gloria-feature-title {
    font-size: 18px;
  }

  .gloria-feature-subtitle {
    font-size: 16px;
  }

  .gloria-feature-description {
    font-size: 14px;
  }
}

/* ==============================================
   Footer CTA Section Styles
   ============================================== */

.footer-cta-section {
  background-color: #5003af;
  background-image: url('img/footer-cta.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.footer-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 64px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Styles */
.footer-cta-logo {
  position: relative;
  height: 103px;
  width: 722px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta-logo-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Text Content Styles */
.footer-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  width: 100%;
  max-width: 740px;
}

.footer-cta-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.28px;
  margin: 0;
  color: #ffffff;
  font-variation-settings: 'wdth' 100;
}

.footer-cta-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.22px;
  margin: 0;
  color: #ffffff;
  font-variation-settings: 'wdth' 100;
}

/* Button Styles */
.footer-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-cta-button {
  background-color: #f4f0ff;
  border: none;
  border-radius: 160px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.footer-cta-button:hover {
  background-color: #e8e0ff;
  transform: translateY(-2px);
}

.footer-cta-button-text {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.09px;
  color: #6c00f0;
  text-align: center;
  white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-cta-container {
    padding: 80px 40px;
  }

  .footer-cta-logo {
    width: 600px;
    height: 85px;
  }

  .footer-cta-title {
    font-size: 24px;
  }

  .footer-cta-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .footer-cta-container {
    padding: 60px 32px;
  }

  .footer-cta-logo {
    width: 500px;
    height: 70px;
  }

  .footer-cta-title {
    font-size: 22px;
  }

  .footer-cta-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .footer-cta-container {
    padding: 60px 20px 40px 20px;
    gap: 32px;
  }

  .footer-cta-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .footer-cta-title {
    font-size: 20px;
  }

  .footer-cta-subtitle {
    font-size: 16px;
  }

  .footer-cta-button {
    padding: 10px 14px;
  }

  .footer-cta-button-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-cta-container {
    padding: 50px 16px 30px 16px;
    gap: 24px;
  }

  .footer-cta-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .footer-cta-title {
    font-size: 18px;
  }

  .footer-cta-subtitle {
    font-size: 14px;
  }

  .footer-cta-button {
    padding: 8px 12px;
  }

  .footer-cta-button-text {
    font-size: 14px;
  }
}

/* === Advanced Segmentation Section (refactored two-column layout) === */
.hero-advanced-segmentation__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 48px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-advanced-segmentation__text {
  flex: 1;
  color: #05000c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 0;
  padding-left: 2rem;
}

.hero-advanced-segmentation__text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-advanced-segmentation__text p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.hero-advanced-segmentation__visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-advanced-segmentation__img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  height: auto;
}

.hero-advanced-segmentation__caption {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

/* === Market Saturation Section (refactored two-column layout) === */
.market-saturation__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 48px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.market-saturation__text {
  flex: 1;
  color: #05000c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 2rem;
  padding-left: 0;
}

.market-saturation__text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.market-saturation__text p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.market-saturation__visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.market-saturation__img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  height: auto;
}

.market-saturation__caption {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

/* === Investment Breakdown Section (refactored two-column layout) === */
.investment-breackdown__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 48px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.investment-breackdown__text {
  flex: 1;
  color: #05000c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 0;
  padding-left: 2rem;
}

.investment-breackdown__text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.investment-breackdown__text p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.investment-breackdown__visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.investment-breackdown__img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  height: auto;
}

.investment-breackdown__caption {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .investment-optimization__container,
  .hero-advanced-segmentation__container,
  .market-saturation__container,
  .investment-breackdown__container {
    padding: 40px 1.5rem;
    gap: 1.5rem;
  }

  .investment-optimization__text h2,
  .hero-advanced-segmentation__text h2,
  .market-saturation__text h2,
  .investment-breackdown__text h2 {
    font-size: 2rem;
  }

  .investment-optimization__text p,
  .hero-advanced-segmentation__text p,
  .market-saturation__text p,
  .investment-breackdown__text p {
    font-size: 1.125rem;
  }

  .investment-optimization__img,
  .hero-advanced-segmentation__img,
  .market-saturation__img,
  .investment-breackdown__img {
    max-width: 350px;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .investment-optimization__container,
  .hero-advanced-segmentation__container,
  .market-saturation__container,
  .investment-breackdown__container {
    flex-direction: column;
    padding: 32px 1rem;
    gap: 2rem;
    text-align: center;
  }

  .investment-optimization__text,
  .hero-advanced-segmentation__text,
  .market-saturation__text,
  .investment-breackdown__text {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    order: 1;
  }

  .investment-optimization__visual,
  .hero-advanced-segmentation__visual,
  .market-saturation__visual,
  .investment-breackdown__visual {
    width: 100%;
    max-width: none;
    align-items: center;
    order: 2;
  }

  .investment-optimization__text h2,
  .hero-advanced-segmentation__text h2,
  .market-saturation__text h2,
  .investment-breackdown__text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .investment-optimization__text p,
  .hero-advanced-segmentation__text p,
  .market-saturation__text p,
  .investment-breackdown__text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .investment-optimization__img,
  .hero-advanced-segmentation__img,
  .market-saturation__img,
  .investment-breackdown__img {
    max-width: 100%;
    width: 100%;
    max-width: 320px;
  }

  .investment-optimization__caption,
  .hero-advanced-segmentation__caption,
  .market-saturation__caption,
  .investment-breackdown__caption {
    margin-top: 12px;
    font-size: 0.875rem;
    order: 3;
  }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
  .investment-optimization__container,
  .hero-advanced-segmentation__container,
  .market-saturation__container,
  .investment-breackdown__container {
    padding: 24px 0.75rem;
    gap: 1.5rem;
  }

  .investment-optimization__text h2,
  .hero-advanced-segmentation__text h2,
  .market-saturation__text h2,
  .investment-breackdown__text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .investment-optimization__text p,
  .hero-advanced-segmentation__text p,
  .market-saturation__text p,
  .investment-breackdown__text p {
    font-size: 0.875rem;
  }

  .investment-optimization__img,
  .hero-advanced-segmentation__img,
  .market-saturation__img,
  .investment-breackdown__img {
    max-width: 280px;
  }

  .investment-optimization__caption,
  .hero-advanced-segmentation__caption,
  .market-saturation__caption,
  .investment-breackdown__caption {
    margin-top: 10px;
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 1270px) {
  .access-panel-flex-row {
    max-width: 1000px;
    gap: 20px;
  }
  .dashboard-image-container,
  .access-panel-annotations-col {
    flex: 1 1 0;
    min-width: 220px;
    max-width: 350px;
  }
}

@media (max-width: 1100px) {
  .access-panel-flex-row {
    max-width: 900px;
    gap: 16px;
  }
  .dashboard-image-container,
  .access-panel-annotations-col {
    min-width: 180px;
    max-width: 320px;
  }
}

@media (max-width: 1024px) {
  .access-panel-flex-row {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    align-items: center;
  }
  .dashboard-image-container,
  .access-panel-annotations-col {
    width: 100%;
    max-width: 400px;
    min-width: 0;
  }
  .dashboard-image-container {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dashboard-image {
    width: 100%;
    height: auto;
    display: block;
  }
  .access-panel-annotation {
    margin-left: 8px;
    margin-right: 8px;
  }
}

/* ==============================================
   Footer Section Styles
   ============================================== */

.footer {
  background-color: #ffffff;
  width: 100%;
  position: relative;
  font-family: 'Roboto', sans-serif;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Content */
.footer__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

/* Logo */
.footer__logo {
  height: 30px;
  width: 211px;
  flex-shrink: 0;
}

.footer__logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Navigation Links */
.footer__links {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.footer__link {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.43;
  letter-spacing: 1.6px;
  color: #504c54;
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 15px;
  border-radius: 100px;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #6c00f0;
}

/* Social Media Links */
.footer__social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  border-bottom: none !important;
  box-shadow: none !important;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer__social-link:hover {
  transform: scale(1.1);
}

.footer__social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-size: 24px;
  color: #504c54;
  transition: color 0.3s ease;
}

.footer__social-link:hover .footer__social-icon {
  color: #6c00f0;
}

/* Footer Credits */
.footer__credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(5, 0, 12, 0.15);
}

.footer__credits-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.footer__copyright {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.43;
  letter-spacing: 1.6px;
  color: #827f85;
  margin: 0;
  white-space: nowrap;
}

.footer__legal-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.footer__legal-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.43;
  letter-spacing: 1.6px;
  color: #504c54;
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 15px;
  border-radius: 100px;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: #6c00f0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer__container {
    padding: 60px 40px;
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .footer__container {
    padding: 40px 32px;
    gap: 40px;
  }

  .footer__content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__links {
    order: 2;
  }

  .footer__social {
    order: 3;
  }

  .footer__credits-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .footer__container {
    padding: 30px 20px;
    gap: 30px;
  }

  .footer__logo {
    width: 180px;
    height: 25px;
  }

  .footer__link,
  .footer__legal-link,
  .footer__copyright {
    font-size: 16px;
  }

  .footer__links {
    gap: 20px;
  }

  .footer__social {
    gap: 10px;
  }

  .footer__social-link {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .footer__container {
    padding: 20px 16px;
    gap: 24px;
  }

  .footer__logo {
    width: 150px;
    height: 20px;
  }

  .footer__link,
  .footer__legal-link,
  .footer__copyright {
    font-size: 14px;
  }

  .footer__links {
    gap: 16px;
  }

  .footer__social {
    gap: 8px;
  }

  .footer__social-link {
    width: 18px;
    height: 18px;
  }

  .footer__legal-links {
    gap: 8px;
  }
}

/* Quick fix: Hide all borders/lines in footer social area */
.footer__social,
.footer__social-link,
.footer__content,
.footer__container,
.footer__credits,
.footer__credits-content {
  border-bottom: none !important;
  box-shadow: none !important;
  background: none !important;
}
.footer__social::after,
.footer__social::before,
.footer__content::after,
.footer__content::before {
  display: none !important;
}

@media (max-width: 768px) {
  .footer-cta-section {
    background-size: cover;
    background-position: center;
  }
}

#lang-switch {
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--primary-purple);
  color: var(--button-bg);
  border: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

#lang-switch:focus {
  outline: none;
}

@media (max-width: 768px) {
  #lang-switch {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 100px;
    font-size: 18px;
    padding: 14px 10px;
    text-align: center;
  }
}

@media (min-width: 769px) {
  #lang-switch {
    display: inline-block;
    width: auto;
    margin: 0 0 0 24px;
    order: 3;
  }
}

@media (max-width: 768px) {
  #lang-switch-desktop {
    display: none;
  }
}

@media (min-width: 769px) {
  #lang-switch-desktop {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background: var(--primary-purple);
    color: var(--button-bg);
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    margin-left: 24px;
    transition: background 0.2s;
    vertical-align: middle;
  }
  #lang-switch-desktop:focus {
    outline: none;
  }
}

.policy-doc-container {
  max-width: 700px;
  margin: 40px auto 40px auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}

.policy-doc-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #222;
}

.policy-doc-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #3a3a3a;
}

.policy-doc-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  color: #444;
}

.policy-doc-list {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.policy-doc-list-item {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: #222;
}

.policy-doc-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  color: #222;
}

.privacy-policy-section img, .privacy-policy-section .footer__logo, .privacy-policy-section .footer__logo-img {
  display: none !important;
}

/* Blog Cards Section */
.blog-cards-section {
  padding: 60px 0 40px 0;
  background: #fff;
}
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(80, 3, 175, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(80, 3, 175, 0.16), 0 3px 12px rgba(0,0,0,0.08);
}
.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card__content {
  padding: 24px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 12px;
  font-family: var(--font-base);
}
.blog-card__desc {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card__link {
  color: var(--primary-purple);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1rem;
}
.blog-card__link:hover {
  color: #300077;
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }
  .blog-card__img {
    height: 160px;
  }
  .blog-card__content {
    padding: 18px 12px 16px 12px;
  }
}

/* Blog Post Page Custom Styles */
.blog-post-bg {
  background: #fff;
  color: #222;
  min-height: 100vh;
}

.blog-post-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 16px 60px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.blog-post-header {
  margin-bottom: 32px;
  text-align: left;
}

.blog-post-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5003af;
  margin-bottom: 0.5rem;
}

.blog-post-meta {
  color: #827f85;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.blog-post-image {
  margin: 0 0 32px 0;
  text-align: center;
}

.blog-post-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(80,3,175,0.08);
}

.blog-post-content h2 {
  font-size: 1.4rem;
  color: #6c00f0;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
  font-weight: 600;
}

.blog-post-content p {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 1.2em;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.2em;
  margin-top: 1.2em;
  padding-left: 1.5em;
}

.blog-post-content li {
  margin-bottom: 0.4em;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .blog-post-container {
    padding: 20px 4vw 40px 4vw;
  }
  .blog-post-title {
    font-size: 1.4rem;
  }
  .blog-post-content h2 {
    font-size: 1.1rem;
  }
}

.blog-post-content blockquote {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  padding: 0.8em 1.2em;
  background: #f8f7ff;
  border-left: 4px solid #6c00f0;
  border-radius: 6px;
  color: #333;
  font-style: italic;
}