/* ==========================================================================
   CSS Structure:
   1. CSS Variables & Typography
   2. Base Styles
   3. Layout Components
   4. UI Components 
   5. Media Queries
   ========================================================================== */

/* 1. CSS Variables & Typography
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #6555fa;
  --color-accent: #6554f9;
  --color-dark: #131128;
  --color-light-purple: #f0eeff;
  --color-border-light: #e0ddfe;
  --color-white: #fff;
  --color-footer-dark: #1b1649;
  --color-footer-card: #3f3785;

  /* Typography - Desktop */
  --font-size-xxl: 40px;
  --font-size-xl: 28px;
  --font-size-lg: 20px;
  --font-size-md: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;

  --line-height-xxl: 120%;
  --line-height-xl: 33.6px;
  --line-height-lg: 120%;
  --line-height-md: 130%;
  --line-height-sm: 21px;
  --line-height-xs: 18px;

  /* Fonts */
  --font-family-title: "Archivo", sans-serif;
  --font-family-body: "Open Sans", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 1rem;
  /* 16px */
  --spacing-md: 1.5rem;
  /* 24px */
  --spacing-lg: 2.5rem;
  /* 40px */
  --spacing-xl: 3.75rem;
  /* 60px */
  --spacing-xxl: 7rem;
  /* 110px */

  /* Border Radius */
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 28px;
  --border-radius-xl: 40px;
  --border-radius-round: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Media query for smaller devices - Adjust CSS variables for mobile */
@media (max-width: 768px) {
  :root {
    /* Typography - Mobile */
    --font-size-xxl: 28px;
    --font-size-xl: 20px;
    --font-size-lg: 16px;
    --font-size-md: 14px;

    /* Spacing - Mobile adjustments */
    --spacing-xxl: 2.5rem;
    /* 40px */
    --spacing-xl: 2rem;
    /* 32px */
  }
}

/* 2. Base Styles
     ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.6;
  color: var(--color-dark);
}

button {
  cursor: pointer;
}

/* 3. Layout Components
     ========================================================================== */

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 1rem;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: box-shadow 0.3s ease;
}

.navbar-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-family: var(--font-family-title);
}

.logo-image {
  width: 60.59px;
  height: 40.87px;
}

.logo-text {
  font-size: 24.4px;
  line-height: 29.3px;
}

.text-accent {
  color: var(--color-accent);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-right-mobile {
  display: none;
}

.partner-logo {
  width: 177px;
  height: 38px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Banner Section */
.banner-container {
  width: 100%;
  padding-top: 32px;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 690px;
}

.banner {
  min-height: 690px;
  border-radius: var(--border-radius-xl);
  background-color: var(--color-light-purple);
  background-image: url("../assets/banner-web.svg");
  background-repeat: no-repeat;
  background-position: top;
}

.mobile-image {
  display: none;
}

.banner-content {
  max-width: 782px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  padding-top: 60px;
  text-align: center;
}

.banner-content h1 {
  font-family: var(--font-family-title);
  font-size: var(--font-size-xxl);
  font-weight: 400;
  line-height: var(--line-height-xxl);
  color: var(--color-dark);
  margin: 0 0 1rem;
}

.banner-content h1 .highlight {
  color: var(--color-primary);
}

.banner-content h2 {
  font-family: var(--font-family-title);
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: var(--line-height-lg);
  color: var(--color-dark);
  opacity: 0.6;
  margin: 0 0 24px;
}

/* Steps Section */
.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: var(--spacing-xxl) 40px;
  position: relative;
  /* overscroll-behavior: contain; */
}

.hero {
  position: sticky;
  top: 92px;
  align-self: flex-start;
  height: fit-content;
}

.hero-title {
  font-size: var(--font-size-xl);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}

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

.hero-subtitle {
  margin-bottom: 2rem;
  color: #666;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  /* max-height: calc(100vh - 110px); */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.steps::-webkit-scrollbar {
  display: none;
}

.step-card {
  background: radial-gradient(
        circle at bottom center,
        #dfd5ff 0%,
        transparent 40%
      )
      0/0 0 no-repeat,
    radial-gradient(circle at bottom right, #dfd5ff 1%, transparent 20%),
    #f0eeff;
  background-size: 0 0, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: bottom center, center;
  transition: background-size 0.3s ease-in-out;
  border: 2px solid var(--color-border-light);
  padding: 20px;
  border-radius: var(--border-radius-lg);
}

.step-card:hover {
  background-color: #f0eeff;
  background-size: 100% 100%;
}

.step-image {
  width: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-md);
}

.step-content {
  width: 100%;
  margin-top: 28px;
}

.step-label {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: normal;
  line-height: 1.3;
}

.step-details {
  width: 100%;
  color: var(--color-dark);
  margin-top: 12px;
}

.step-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.step-description {
  font-size: var(--font-size-md);
  font-weight: normal;
  line-height: 23px;
  opacity: 0.6;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Video Section */
.video-container {
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
  background: var(--color-dark);
  /* display: none; */
}

.video-text-container {
  padding: var(--spacing-xxl) 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.video-text-container-text {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-title);
  font-size: var(--font-size-xxl);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-xxl);
}

.video-text-container-video {
  height: 633px;
  flex-shrink: 0;
  aspect-ratio: 1126 / 633;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}

.video-text-container-video iframe {
  width: 100%;
  height: 100%;
  border: 2px solid #cec8ff;
  backdrop-filter: blur(1px);
  border-radius: var(--border-radius-xl);
}

/* Features Section */
.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xxl) var(--spacing-sm);
  width: 100%;
}

.content-wrapper {
  max-width: 1130px;
  width: 100%;
  gap: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  width: 100%;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
  flex: 1;
}

.heading {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  width: 100%;
  font-weight: normal;
  font-family: var(--font-family-title);
}

.heading-primary {
  color: var(--color-dark);
}

.heading-accent {
  color: var(--color-primary);
}

.description {
  opacity: 0.6;
  color: var(--color-dark);
  font-size: var(--font-size-md);
}

.feature-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}

.card-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.card {
  background: radial-gradient(
        circle at bottom center,
        #dfd5ff 0%,
        transparent 40%
      )
      0/0 0 no-repeat,
    radial-gradient(circle at bottom right, #dfd5ff 1%, transparent 20%),
    #f0eeff;
  background-size: 0 0, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: bottom center, center;
  transition: background-size 0.3s ease-in-out;
  border: 2px solid var(--color-border-light);
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.card:hover {
  background-color: #f0eeff;
  background-size: 100% 100%;
}

.card-large {
  width: 440px;
}

.card-flexible {
  flex: 1;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
}

.image-container {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 215px;
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.blur-effect {
  position: absolute;
  width: 136px;
  height: 54px;
  top: 300px;
  background-color: var(--color-accent);
  border-radius: 68px/27px;
  filter: blur(100px);
}

.blur-effect-left {
  left: 370px;
}

.blur-effect-right {
  left: 600px;
}

.card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.card-title {
  color: var(--color-dark);
  font-weight: 600;
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
}

.card-description {
  opacity: 0.6;
  color: var(--color-dark);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

/* FAQ Section */
.faq {
  background: var(--color-light-purple);
}

.faq-section {
  padding: var(--spacing-xxl) 10rem;
}

.faq-title {
  font-family: var(--font-family-title);
  text-align: center;
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
  font-weight: 400;
  color: var(--color-dark);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-radius: 100px;
  transition: all;
}

.faq-item.expanded {
  border-radius: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: var(--font-size-lg);
  font-family: var(--font-family-title);
  color: var(--color-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  transition: font-weight 0.3s ease;
}

.faq-item.expanded .faq-question h3 {
  font-weight: 600;
}

.toggle-btn {
  background: transparent;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #333;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
}

.minus {
  display: none;
}

.plus {
  display: block;
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  color: var(--color-dark);
  font-family: var(--font-family-body);
  font-size: var(--font-size-md);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-md);
}

.faq-item.expanded .faq-answer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  max-height: 200px;
}

.faq-item.expanded .minus {
  display: block;
}

.faq-item.expanded .plus {
  display: none;
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.view-all-btn {
  background-color: white;
  border: 1px solid var(--color-dark);
  border-radius: var(--border-radius-round);
  padding: 0.75rem 55px;
  font-size: var(--font-size-md);
  cursor: pointer;
}

.faq-item.hidden {
  display: none;
}

/* Footer Components */
.simple-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 60px 160px;
  width: 100%;
  background-color: var(--color-footer-dark);
}

.simple-footer-card {
  width: 100%;
  background-color: var(--color-footer-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: none;
  padding: 60px;
}

.simple-footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.simple-footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.simple-footer-heading {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  color: white;
  font-weight: normal;
  font-family: var(--font-family-title);
}

.simple-footer-break {
  display: block;
}

.simple-footer-break-mobile {
  display: none;
}

.simple-footer-description {
  opacity: 0.6;
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
  color: white;
  font-family: var(--font-family-body);
}

.simple-footer-button {
  min-width: 220px;
  padding: 16px 36px;
  border-radius: var(--border-radius-xl);
  background-color: white;
  color: var(--color-dark);
  border: none;
  cursor: pointer;
}

.simple-footer-button-text {
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
  font-family: var(--font-family-body);
}

/* Contact Footer */
.contact-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  padding: var(--spacing-lg) 10rem 1.5rem;
  width: 100%;
  background-color: var(--color-footer-dark);
  position: relative;
}

.contact-footer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--spacing-lg);
}

.contact-footer-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--spacing-xl);
}

.contact-footer-branding {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.contact-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 200px;
  height: 38px;
}

.contact-footer-logo-image {
  width: 31.59px;
  height: 38.87px;
  margin-top: -0.44px;
  margin-bottom: -0.44px;
}

.contact-footer-logo-text {
  font-size: 24.4px;
  line-height: 29.3px;
  font-weight: normal;
  font-family: var(--font-family-title);
  text-align: center;
  white-space: nowrap;
}

.contact-footer-accent {
  color: var(--color-accent);
}

.contact-footer-white {
  color: white;
}

.contact-footer-partner {
  display: inline-flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-footer-partner-logo {
  width: 171px;
  height: 38px;
}

.contact-footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xl);
  width: 100%;
}

.contact-footer-card {
  flex: 1;
  min-width: 0;
}

.contact-footer-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}

.contact-footer-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-footer-whatsapp {
  width: 24px;
  height: 24px;
}

.contact-footer-title {
  color: white;
  font-family: var(--font-family-body);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin: 0;
}

.contact-footer-text {
  color: white;
  font-family: var(--font-family-body);
  font-size: var(--font-size-sm);
  font-weight: 400;
  margin: 0;
}

.contact-footer-nowrap {
  white-space: nowrap;
}

.contact-footer-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.75rem;
}

.contact-footer-divider {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-footer-copyright-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.contact-footer-copyright {
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  color: white;
  white-space: nowrap;
}

.contact-footer-links {
  display: flex;
  gap: 1.25rem;
}

.contact-footer-link {
  background: transparent;
  border: none;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  color: white;
  white-space: nowrap;
  cursor: pointer;
}

.contact-footer-link:hover {
  text-decoration: underline;
}

/* 4. UI Components
     ========================================================================== */

/* Buttons */
.button {
  color: var(--color-white);
  height: 46px;
  border-radius: var(--border-radius-xl);
  padding: 0.75rem 2.25rem;
  font-size: var(--font-size-md);
  cursor: pointer;
  font-family: var(--font-family-body);
  background-color: var(--color-dark);
}

.button-default {
  background-color: var(--color-dark);
  color: white;
  border: none;
  min-width: 152px;
}

.button-outline {
  background-color: white;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  min-width: 152px;
}

.button-group {
  display: inline-flex;
  gap: 20px;
}

.button-group .primary,
.button-group .secondary {
  display: flex;
  width: 160px;
  height: 46px;
  padding: 12px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: var(--border-radius-xl);
  font-size: var(--font-size-md);
}

.button-group .primary {
  background-color: #000;
  color: white;
  font-family: var(--font-family-body);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-md);
  border: none;
}

.button-group .secondary {
  color: var(--color-dark);
  text-align: center;
  border: 1px solid var(--color-dark);
  font-family: var(--font-family-body);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-md);
  background-color: white;
}

.cta-button {
  display: inline-block;
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  border-radius: var(--border-radius-xl);
  padding: 0.8rem 2.5rem;
  font-size: var(--font-size-md);
  font-family: var(--font-family-body);
  cursor: pointer;
  text-decoration: none;
}

.video-text-container-button {
  display: flex;
  width: 160px;
  height: 46px;
  padding: 12px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--border-radius-xl);
  border: 1px solid white;
  background-color: transparent;
  cursor: pointer;
  color: white;
  font-size: var(--font-size-md);
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6554f9;
  font-style: italic;
}

.prompt-banner {
  background-color: var(--color-dark);
  color: white;
  text-align: center;
  padding: 10px;
}

.prompt-banner a {
  color: white;
  text-decoration: none;
}

.prompt-banner a:hover {
  text-decoration: underline;
}

/* 5. Media Queries
     ========================================================================== */

/* Medium screens */
@media (max-width: 1200px) {
  .video-text-container-video {
    width: 90vw;
    height: auto;
  }

  .faq-section {
    padding: var(--spacing-xxl) 2rem;
  }

  .contact-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .simple-footer-break {
    display: none;
  }

  .simple-footer-break-mobile {
    display: none;
  }
}

/* Small screens / Mobile */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    position: relative;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    box-shadow: none;
  }

  .nav-right {
    display: none;
  }

  .nav-right-mobile {
    display: flex;
  }

  .logo-text {
    display: none;
  }

  /* Banner */
  .banner-container {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
  }

  .banner {
    background-image: none;
  }

  .banner-content {
    padding-top: 40px;
  }

  .mobile-image {
    display: block;
    margin-top: 1rem;
    max-width: 100%;
    height: auto;
  }

  /* Button group */
  .button-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 90%;
    margin: 0 auto;
  }

  .button-group .primary,
  .button-group .secondary {
    width: 100%;
  }

  /* Steps Section */
  .steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-xxl) var(--spacing-sm);
  }

  .hero {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .steps {
    width: 100%;
    max-height: none;
    overflow-y: visible;
  }

  /* .step-card {
    width: 100%;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    background: #F0EEFF;
    background: radial-gradient(circle at bottom center, #c1b7ff 0%, transparent 50%), #F0EEFF;
  } */

  .cta-button {
    text-align: center;
    width: 100%;
  }

  /* Video Section */
  .video-text-container {
    padding: var(--spacing-xxl) var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .video-text-container-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-md);
  }

  .video-text-container-video iframe {
    border-radius: var(--border-radius-md);
  }

  /* Features Section */
  .header-section {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  .button {
    align-self: flex-start;
    width: 100%;
  }

  .feature-grid,
  .card-row {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .card-large,
  .card-flexible {
    width: 100%;
  }

  .section-container {
    padding: var(--spacing-xxl) var(--spacing-sm);
  }

  /* FAQ */
  .faq-section {
    padding: var(--spacing-xxl) var(--spacing-sm);
  }

  .view-all-container {
    width: 100%;
  }

  .view-all-btn {
    width: 100%;
    font-size: var(--font-size-sm);
  }

  /* Footer */
  .simple-footer {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .simple-footer-content {
    flex-direction: column;
    padding: 2.5rem 1rem;
  }

  .simple-footer-button {
    width: 100%;
    padding: 8px 32px;
  }

  .simple-footer-card {
    padding: 0px;
  }

  .contact-footer {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .contact-footer-branding {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .contact-footer-info {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .contact-footer-copyright-section {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
  }

  .simple-footer-break {
    display: none;
  }

  .simple-footer-break-mobile {
    display: block;
  }

  .prompt-banner {
    background-color: var(--color-dark);
    color: white;
    text-align: center;
    padding: 5px 10px;
    font-size: var(--font-size-xs);
  }
}
