/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

html {
  scroll-behavior: smooth;
}

:root {
  /* Colors */
  --color-deep-blue: #0c1892;
  --color-highlight-blue: #3a3a9a;
  --color-primary-blue: #1a007b;
  --color-dark-charcoal: #252525;
  --color-primary-green: #a2ff00;
  --color-white: #ffffff;
  --color-dark-text: #333333;
  --color-body-text: #bbbbbb;
  --color-light-grey: #cccccc;
  --color-card-bg: #2e2e2e;
  --color-dark-bg: #222222;

  /* Typography */
  --font-family-primary:
    "Nohemi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-weight-thin: 100;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --font-size-base: 1rem;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;

  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-base: 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

body {
  font-family: var(--font-family-primary);
  background-color: var(--color-dark-charcoal);
  color: var(--color-white);
  line-height: 1.6;
  min-height: 100vh;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.highlight-green {
  color: var(--color-primary-green);
}

.highlight-white {
  color: white;
  font-weight: bold;
}

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* ========== BUTTONS ========== */
.btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
}

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

.btn-alt {
  background-color: var(--color-deep-blue);
  color: var(--color-white);
}

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

.btn-secondary {
  background-color: var(--color-primary-green);
  color: var(--color-deep-blue);
  border: none;
}

.btn-secondary:hover {
  background-color: #a4ff33;
}

/* ========== TOGGLE SWITCH ========== */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-primary-green);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* ============================================
   LAYOUT SECTIONS
   ============================================ */

/* ========== HERO SECTION ========== */
.hero-section {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-section h1 {
  font-family: var(--font-family-primary);
  font-weight: bold;
}

/* Top Bar */
.top-bar {
  position: relative;
  background-color: var(--color-deep-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px var(--spacing-md);
}

.logo {
  display: flex;
  align-items: baseline;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 400;
  margin-left: var(--spacing-xs);
  font-family: "Montserrat", sans-serif;
}

.menu-toggle {
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.desktop-nav,
.btn-desktop-cta {
  display: none;
}

/* Mobile Navigation Menu */
.menu-nav-mobile {
  position: absolute;
  background-color: #1f3792;
  list-style: none;
  width: 256px;
  height: 183px;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: -183px;
  justify-content: center;
  right: 0;
  z-index: 100;
}

@media (min-width: 1024px) {
  .menu-nav-mobile {
    display: none;
  }
}

.menu-nav-mobile li {
  padding: 12px;
}

.menu-nav-mobile li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 15px;
}

.menu-nav-mobile .fa-close {
  font-size: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

/* Hero Content */
.hero-content-area {
  flex-grow: 1;
  background-color: var(--color-dark-charcoal);
  padding: 30px var(--spacing-md);
  display: flex;
  flex-direction: column;
}

.hero-text-and-cta {
  margin-bottom: var(--spacing-lg);
}

.hero-image {
  width: 290px;
}

@media (min-width: 640px) {
  .hero-image {
    width: auto;
  }
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.1;
}

.keywords-image {
  width: 14.56rem;
  height: 4.3rem;
}

.tagline {
  font-size: var(--font-size-base);
  color: var(--color-body-text);
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
}

/* Partner Logos */
.partner-logos {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.partner-logos img {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(1);
}

.partner-logo {
  font-size: 0.7rem;
  font-weight: 600;
  padding: var(--spacing-xs) 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-body-text);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  white-space: nowrap;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: var(--spacing-lg);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.visual-graphic {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 250px;
  margin-bottom: 30px;
}

.arrow-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-primary-green);
  clip-path: polygon(
    50% 0%,
    100% 50%,
    80% 50%,
    80% 100%,
    20% 100%,
    20% 50%,
    0% 50%
  );
  z-index: 1;
}

.boat-image-placeholder {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background-image: url("files/cruise.png");
  background-size: cover;
  background-position: center;
  z-index: 2;
  overflow: hidden;
  color: transparent;
}

.visual-details {
  position: static;
  width: 100%;
  padding-top: 0;
}

.campaign-type {
  color: var(--color-primary-green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: -30px;
}

.campaign-label {
  background-color: var(--color-highlight-blue);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: var(--spacing-xs);
  margin-bottom: 25px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: var(--font-size-base);
  font-weight: 600;
}

.arrow-up {
  color: var(--color-primary-green);
  font-size: 1.2rem;
  margin-right: var(--spacing-xs);
}

/* ========== STATS SECTION ========== */
.stats-section {
  background-color: var(--color-dark-charcoal);
  padding: var(--spacing-lg) var(--spacing-md);
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 500px;
  margin: 0 auto;
}

.stat-card {
  background-color: transparent;

  padding: 0;
  display: flex;
  justify-content: space-between;
}

.card-border {
  width: 100%;
  height: 139px;
  padding: 10px 18px;
  border: 6px solid var(--color-primary-green);
  border-radius: 16px;
  background-color: var(--color-card-bg);
  display: flex;
  align-items: center;

  gap: 15px;
  transition: transform var(--transition-base);
}

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

.stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-white);
}

.stat-icon img {
  width: 100%;
  height: 100%;
  fill: none;
}

.stat-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  flex-shrink: 0;
  margin-right: var(--spacing-sm);
}

.stat-description {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-body-text);
  text-align: left;
  width: 100%;
}

/* ========== PARTNER LOGOS SECTION ========== */
.logos-section {
  overflow-y: hidden;
}

h4 {
  font-size: 21px;
  margin-bottom: 30px;
  color: #ffff;
  font-weight: bold;
  /* text-align: center; */
}

/* Swiper Styles */
.swiper-partners-logos,
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-wrapper {
  display: flex;
  transition-timing-function: linear !important;
  width: 100%;
}

.incline {
  transform: perspective(1200px) skewY(4deg);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.logo-item img {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

/* .image-item {
  height: 150px;
} */

.image-item img {
  object-fit: cover;
  width: 320px;
  height: 423px;
}

/* ========== MAP SECTION ========== */
.map-section {
  background-color: var(--color-dark-charcoal);

  text-align: center;
}

.map-container {
  width: 100%;
  height: 0;
  position: relative;
  background-size: contain;
  margin: 0 auto;
  overflow: hidden;
}

.world-map-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.world-map-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background-color: var(--color-dark-charcoal);
  padding: 23px;
  height: auto;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.services-section .section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.services-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
}

.services-section .text-content {
  flex: 1;
  min-width: 300px;
  margin-bottom: 40px;
}

.services-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 1090px) {
  .services-section h2 {
    text-align: left;
  }
}

.services-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-section li {
  display: flex;
  margin-bottom: var(--spacing-md);
  font-size: 1.1em;
  line-height: 1.5;
}

.services-section li .icon {
  font-size: 1.3em;
  margin-right: 15px;
  color: var(--color-primary-green);
  line-height: 1;
}

.services-section .image-content {
  display: none;
}

.services-section .image-frame {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-xl);
  padding: 15px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  height: 563px;
}

.services-section .image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 0;
}

.services-section .green-graphic {
  position: absolute;
  top: -150px;
  right: -20px;
  width: 331px;
}

.services-section .green-graphic img {
  object-fit: contain;
  width: 100%;
}

.services-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: center;
  margin: 0 auto;
}

.service-category {
  text-align: left;
}

.services-list {
  list-style: none;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.services-list .services-li {
  margin-top: 20px;
  margin-bottom: 20px;
}

.services-list .services-li p {
  font-size: 1em;
}

@media (min-width: 450px) {
  .services-list .services-li p {
    font-size: 1.2em;
  }
}

@media (min-width: 600px) {
  .services-list .services-li p {
    font-size: 1.7em;
  }
}

@media (min-width: 1090px) {
  .services-list {
    list-style: none;
    display: flex;
    width: 100%;
    flex-direction: column;
  }
}

.service-list .service-li .icon {
  align-self: self-start;
}

.services-li {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  margin: 0;
}

.category-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.green-highlight {
  color: var(--color-primary-green);
}

.category-description {
  font-size: 1.3rem;
  color: var(--color-body-text);
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
}

.category-partners {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.category-partners img {
  width: 70px;
  filter: grayscale(100%) brightness(200%);
  opacity: 0.7;
}

@media (min-width: 420px) {
  .category-partners img {
    width: 80px;
  }
}

@media (min-width: 1024px) {
  .category-partners img {
    width: 80px;
  }
}

@media (min-width: 1175px) {
  .category-partners img {
    width: 100px;
  }
}

.service-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: left;
  background-color: transparent;
  width: 80%;
  padding: 15px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-base);
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  flex-shrink: 0;
  margin-right: 20px;
  width: 60px;
  height: 60px;
}

.feature-text {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1.3;
  width: 60%;
}

@media (min-width: 768px) {
  .feature-text {
    font-weight: bold;
    font-size: 2rem;
    color: var(--color-white);
    line-height: 1.3;
    width: 60%;
  }

  .feature-icon {
    flex-shrink: 0;
    margin-right: 20px;
    width: 80px;
    height: 80px;
  }
}

/* ========== AD PREVIEW SECTION ========== */
preview-section {
  background-color: var(--color-dark-charcoal);
  padding: var(--spacing-sm) var(--spacing-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ad-preview-section .section-heading {
  margin-bottom: 60px;
  font-size: 40px;
  font-weight: bold;
  width: 100%;
}

.slider-nav {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-primary-green);
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0 var(--spacing-sm);
  z-index: 10;
  transition: opacity var(--transition-base);
}

.slider-nav:hover {
  opacity: 0.7;
}

.ad-cards-grid {
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  margin: 0 var(--spacing-sm);
}

.ad-cards-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.ad-card-item {
  width: 364px;
  height: 575px;
  border-radius: 52px;
  background-color: transparent;
}

/* ========== CONVERSION BANNER SECTION ========== */
.conversion-banner-section {
  background-color: var(--color-primary-blue);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.conversion-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.cta-heading {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.cta-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-methodology {
  font-size: 16px;
  text-align: justify;
}

.cta-btn {
  font-size: 12px;
}

.cta-logo {
  margin-bottom: 20px;
}

.cta-logo img {
  width: 130px;
}

.cta-text-group {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.cta-btn {
  font-size: 16px;
}

@media (min-width: 768px) {
  .cta-logo {
    margin-bottom: 0px;
  }

  .cta-logo img {
    width: 180px;
  }
  .cta-heading {
    color: white;
    font-weight: bold;
    font-size: 40px;
  }

  .cta-text-group {
    display: flex;
    flex-direction: column;

    gap: 20px;
  }
  .cta-methodology {
    font-size: 25px;
  }

  .cta-btn {
    font-size: 21px;
  }
}

@media (min-width: 1024px) {
  .cta-text-group {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
  }

  .cta-logo img {
    width: 320px;
  }
}

.cta-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 440px) {
  .cta-buttons-group {
    flex-direction: row;
  }
}

/* ========== PARTNERS VALIDATION SECTION ========== */
.partners-validation-section {
  background-color: var(--color-dark-charcoal);
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.partners-validation-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.partners-validation-section h2 {
  font-size: 2.5em;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.partners-validation-section p {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== TEAM SECTION ========== */
.team-section {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}

.team-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.team-section .section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: bold;
}

.team-section .section-title .highlight {
  color: var(--color-primary-green);
}

.team-section .section-description,
.team-section .section-description .call-to-action-text {
  font-size: 1.6em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.team-section .team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.team-section .member-card {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  position: relative;
}

.team-section .member-card {
  object-fit: cover;
}

.team-section .member-card:hover .main-profile {
  opacity: 0;
}

.team-section .member-card:hover {
  z-index: 10;
}

.team-section .member-card:hover .name-profile {
  opacity: 1;
}

.team-section .member-card .name-profile {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.team-section .member-card .main-profile {
  opacity: 1;
}

.team-section .member-card:hover {
  transform: scale(1.1);
}

.team-section .member-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.team-section .call-to-action-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-section .call-to-action-text .highlight-underline {
  color: var(--color-primary-green);
  font-weight: bold;
  text-decoration: underline;
}

.team-section .button {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary-blue);
  padding: 15px var(--spacing-lg);
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: var(--transition-base);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.team-section .button:hover {
  background-color: var(--color-primary-green);
  color: var(--color-primary-blue);
  transform: translateY(-2px);
}

/* ========== WORK NOW SECTION ========== */
.work-now-section {
  background-color: var(--color-dark-charcoal);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}

.work-now-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.work-now-section .section-title {
  font-size: 2.5em;
  margin-bottom: 50px;
  font-weight: bold;
}

.work-now-section .content-wrapper {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  align-items: flex-start;
  flex-wrap: wrap;
}

.work-now-section .pricing-card {
  background-color: var(--color-dark-bg);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  text-align: left;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.work-now-section .badge {
  color: var(--color-primary-green);
  font-size: 0.85em;
  font-weight: bold;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.work-now-section .service-name {
  font-size: 1.1em;
  margin-bottom: var(--spacing-xs);
}

@media (min-width: 768px) {
  .work-now-section .service-name {
    font-size: 1.8em;
    margin-bottom: var(--spacing-xs);
  }

  .work-now-section .price {
    font-size: 3.5em;
    font-weight: bold;
    line-height: 1;
  }

  .work-now-section .currency {
    font-size: 1.2em;
    font-weight: normal;
    margin-left: var(--spacing-xs);
  }

  .work-now-section .purchase-button {
    display: block;
    background-color: var(--color-primary-green);
    color: var(--color-dark-bg);
    padding: 15px var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 30px;
    transition: var(--transition-base);
  }
}

.work-now-section .price-container {
  margin-bottom: var(--spacing-sm);
}

.work-now-section .price {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 500px) {
  .work-now-section .price {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1;
  }
}

.work-now-section .currency {
  font-size: 0.9em;
  font-weight: normal;
  margin-left: var(--spacing-xs);
}

.work-now-section .sub-text {
  font-size: 0.9em;
  color: var(--color-light-grey);
  margin-bottom: 25px;
}

.work-now-section .purchase-button {
  display: block;
  background-color: var(--color-primary-green);
  color: var(--color-dark-bg);
  padding: 10px var(--spacing-xs);
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 30px;
  transition: var(--transition-base);
}

@media (min-width: 500px) {
  .work-now-section .purchase-button {
    display: block;
    background-color: var(--color-primary-green);
    color: var(--color-dark-bg);
    padding: 10px var(--spacing-xs);
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
    transition: var(--transition-base);
  }
}

.work-now-section .purchase-button:hover {
  background-color: #a4ff33;
  transform: translateY(-2px);
}

.work-now-section .price-switch-container {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
}

.work-now-section .switch-label {
  flex-grow: 1;
  margin-left: 15px;
  font-weight: bold;
}

.work-now-section .switch-price {
  color: var(--color-primary-green);
}

.work-now-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-now-section .features-list li {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 8px;
  position: relative;
  padding-left: var(--spacing-md);
}

.work-now-section .features-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary-green);
  font-size: 1.2em;
  line-height: 1;
}

.work-now-section .cta-content {
  text-align: center;
  max-width: 450px;
  width: 100%;
}

.work-now-section .icon-webcam {
  color: var(--color-primary-green);
  line-height: 1;
  height: auto;
}

.work-now-section .cta-message {
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
}

.work-now-section .cta-button {
  display: inline-block;
  background-color: #1f3792;
  color: var(--color-white);
  padding: 15px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: var(--transition-base);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.work-now-section .cta-button:hover {
  background-color: #4f33cc;
  transform: translateY(-2px);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  padding: 80px 0;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.faq-section h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-weight: bold;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--spacing-md);
  background-color: #3b20b2;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  text-align: left;
  transition: var(--transition-base);
  border-radius: var(--radius-sm);
}

.accordion-header:hover {
  background-color: #4f33cc;
}

.accordion-header[aria-expanded="true"] {
  background-color: #4f33cc;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-header .icon {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform var(--transition-base);
  width: 20px;
  text-align: center;
}

.accordion-content {
  background-color: #4f33cc;
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-base),
    padding var(--transition-base);
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

.accordion-content p {
  padding: var(--spacing-md) 0;
  margin: 0;
  line-height: 1.6;
  color: #eeeeee;
}

.accordion-content.visible {
  padding-bottom: var(--spacing-md);
  padding-top: 0;
}

/* ========== CTA FINAL SECTION ========== */
.cta-final-section {
  background-color: #212323;
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.cta-final-section .container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.cta-final-section .logo-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px auto;
}

.cta-final-section .logo-icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.cta-final-section .logo-icon svg {
  width: 100%;
  height: 100%;
}

.cta-final-section .cta-headline {
  font-size: 2.5em;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.cta-final-section .cta-headline .highlight {
  color: var(--color-primary-green);
  font-weight: bold;
}

.cta-final-section .cta-description {
  font-size: 1.4em;
  line-height: 1.6;
  color: var(--color-light-grey);
  margin-bottom: var(--spacing-lg);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-section .cta-button {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary-blue);
  padding: 15px var(--spacing-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-final-section .cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ========== DESKTOP MEDIA QUERIES ========== */

@media (min-width: 1080px) {
  .services-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
  }
  .services-section .content-wrapper {
    flex-direction: row;
  }

  .services-list .services-li p {
    font-size: 1.2em;
  }
}
@media (min-width: 1024px) {
  /* Hero Section Desktop */
  .top-bar {
    background-color: var(--color-primary-green);
    padding: var(--spacing-md) 50px;
    box-shadow: 0 5px 0 0 var(--color-dark-charcoal);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-nav,
  .btn-desktop-cta {
    display: flex;
  }

  .logo {
    color: var(--color-dark-text);
  }

  .desktop-nav {
    gap: 30px;
    margin-right: auto;
    margin-left: auto;
  }

  .desktop-nav a {
    text-decoration: none;
    color: var(--color-deep-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
  }

  .btn-desktop-cta {
    background-color: var(--color-white);
    color: var(--color-deep-blue);
    padding: var(--spacing-sm) 25px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
  }

  .btn-desktop-cta:hover {
    background-color: var(--color-deep-blue);
    color: var(--color-white);
  }

  .hero-visual {
    width: 50%;
  }

  .hero-content-area {
    flex-direction: row;
    padding: 50px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
  }

  .hero-text-and-cta {
    flex: 0 0 45%;
    margin-right: 5%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  h1 {
    font-size: 4rem;
    margin-top: 0;
    font-weight: 600;
    max-width: 500px;
  }

  .tagline {
    font-size: 1.5rem;
    max-width: 500px;
  }

  .cta-buttons {
    flex-direction: row;
    gap: var(--spacing-md);
    margin-top: 30px;
    margin-bottom: 0;
  }

  .btn {
    width: auto;
  }

  .visual-graphic {
    width: 100%;
    max-width: 550px;
    height: 400px;
    margin-bottom: 30px;
  }

  .visual-details {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding-top: var(--spacing-md);
  }

  .campaign-label {
    font-size: 0.9rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    margin-bottom: 15px;
  }

  .stats-row {
    gap: var(--spacing-lg);
  }

  /* Stats Section Desktop */
  .stats-section {
    padding: var(--spacing-xl) 50px;
  }

  .stats-grid {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 30px;
  }

  /* .stat-card {
    flex: 1;
  } */

  .card-border {
    width: 320px;
    padding: 16px 8px;
    gap: 2;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm);
  }

  .stat-content-wrapper {
  }

  .stat-number {
    font-size: 1.7rem;
    margin-bottom: var(--spacing-xs);
    margin-right: 0;
  }

  .stat-description {
    font-size: 0.95rem;
    text-align: left;
    width: auto;
  }

  /* Map Section Desktop */
  .map-section {
    padding: 0 50px;
  }

  /* Services Section Desktop */
  .services-section {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .services-section .section-heading {
    font-size: 2.4rem;
    margin-bottom: var(--spacing-xl);
  }

  .services-content-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 1267px;
  }

  .service-content-1,
  .service-content-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
  }

  .service-content-2 .category-title {
    text-align: center;
  }

  .service-content-1 {
    margin-bottom: 40px;
  }

  .service-category {
    flex: 1;
    max-width: 30%;
  }

  .category-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .category-description {
    font-size: 1.12rem;
    text-align: justify;
    margin-bottom: 40px;
  }

  .category-partners {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
  }

  .service-features {
    flex: 1;
    min-width: 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature-item {
    padding: 0 var(--spacing-md);
    gap: var(--spacing-sm);
    display: flex;
    align-items: center;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-text {
    font-size: 20px;
  }

  /* Ad Preview Desktop */
  .ad-preview-section {
    padding: 80px 50px;
  }

  .ad-cards-wrapper {
    justify-content: center;
  }

  .ad-cards-grid {
    overflow: visible;
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
  }

  .ad-cards-track {
    display: contents;
    width: auto;
    transform: none !important;
    transition: none;
  }

  .ad-card-item {
    flex-shrink: 1;
    width: calc(33.333% - 20px);
  }

  .btn-final-cta {
    margin-top: 80px;
  }

  /* Conversion Banner Desktop */
  .conversion-banner-section {
    padding: 100px 50px;
    text-align: left;
  }

  .conversion-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
  }

  /* Work Now Section Desktop */
  .work-now-section .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .work-now-section .pricing-card,
  .work-now-section .cta-content {
    max-width: 450px;
  }

  .work-now-section .cta-content {
    padding-top: 50px;
  }
}

/* ========== MOBILE MEDIA QUERIES ========== */

@media (min-width: 1024px) {
  .logo-mobile {
    display: none;
  }
}

@media (max-width: 1023px) {
  .slider-nav.mobile-only-nav {
    display: block;
  }
  .nav-cta {
    display: none !important;
  }

  .logo-desktop {
    display: none;
  }
}
@media (min-width: 1090px) {
  .services-section .image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .services-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .services-section .text-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }

  /* Services adjustments */
  .services-section .content-wrapper {
    flex-direction: column;
  }

  /* .services-section .text-content,
  .services-section .image-content {
    flex: none;
    width: 100%;
  } */

  .services-section h2 {
    font-size: 2em;
    text-align: center;
  }

  .services-section li {
    font-size: 1em;
  }

  .partners-validation-section h2 {
    font-size: 2em;
  }

  .partners-validation-section p {
    font-size: 1.3em;
  }

  /* Team section */
  .team-section .section-title {
    font-size: 2em;
  }

  .team-section .section-description,
  .team-section .call-to-action-text {
    font-size: 1.4em;
  }

  .team-section .team-members {
    gap: var(--spacing-md);
  }

  .team-section .member-card {
    width: 90px;
    height: 90px;
  }

  .team-section .button {
    padding: 12px 30px;
    font-size: 1em;
  }

  /* Work Now Section */
  .work-now-section .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .work-now-section .pricing-card,
  .work-now-section .cta-content {
    max-width: 80%;
  }

  /* FAQ adjustments */
  .faq-section h2 {
    font-size: 2em;
  }

  .accordion-header {
    font-size: 1em;
    padding: 15px 18px;
  }

  /* CTA Final */
  .cta-final-section {
    padding: 40px 0;
  }

  .cta-final-section .cta-headline {
    font-size: 2em;
  }

  .cta-final-section .cta-description {
    font-size: 1em;
  }

  .cta-final-section .cta-button {
    font-size: 1em;
    padding: 12px 30px;
  }

  /* Partner Logos Responsive */
  .logo-item {
    padding: 20px;
    height: 130px;
  }

  h4 {
    font-size: 19px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .logo-desktop {
    display: none;
  }

  .partners-validation-section h2 {
    font-size: 1.7em;
  }

  .team-section .section-title {
    font-size: 1.7em;
  }

  .team-section .member-card {
    width: 70px;
    height: 70px;
  }

  .team-section .team-members {
    gap: 0;
  }

  .work-now-section .section-title {
    font-size: 2em;
  }

  .work-now-section .pricing-card,
  .work-now-section .cta-content {
    max-width: 100%;
  }

  .cta-final-section .cta-headline {
    font-size: 1.5em;
  }

  /* Partner Logos Responsive */
  .logo-item {
    padding: 15px;
    height: 120px;
  }

  .logo-item img {
    width: 100px;
  }

  h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0 15px;
  }
}

.hero-content-avatars {
  display: flex;

  margin-top: 20px;
}

.avatar-group {
  display: flex;
  padding: 0;
  align-items: center;
}

.avatar {
  width: 50x;
  height: 50px;
  border-radius: 50%;

  background-color: #f0f0f0;
  margin-left: -25px; /* Superposición hacia la izquierda */
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.star {
  width: 20px;
  height: 20px;
  fill: white; /* Color blanco para las estrellas */
}

@media (min-width: 600px) {
  .avatar {
    width: 50px;
    height: 50px;
  }
}

.avatar:first-child {
  margin-left: 0; /* El primer avatar no tiene margen negativo */
}

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

.rating-container {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.stars {
  display: flex;
  align-items: center;
}

.rating-text {
  font-size: 18px;
  font-weight: 600;
  color: white; /* Texto en blanco */

  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@media (min-width: 540px) {
  .rating-text {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .service-content-1,
  .service-content-2 {
    flex-direction: row;
    align-items: normal;
  }
}

.poster-ads-section {
  display: flex;
  flex-direction: column;

  align-items: center;
}

.poster-ads-section .section-heading {
  font-size: xx-large;
  width: 300px;
  text-align: center;
}

@media (min-width: 480px) {
  .poster-ads-section .section-heading {
    width: auto;
  }
}

@media (min-width: 768px) {
  .poster-ads-section .section-heading {
    font-size: 3em;
  }
}

@media (min-width: 425px) {
  .stat-number {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    flex-shrink: 0;
    margin-right: var(--spacing-sm);
  }
}
