:root {
  --color-primary: #d4af37;
  --color-background: #000000;
  --color-surface: #0f0f0f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #969696;
  --color-text-muted: #545454;
  --color-border: #272727;
  --color-success: #1b942b;
}

body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  font-family: 'Space Grotesk', sans-serif;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.btn--primary:hover {
  filter: brightness(1.1);
}

/* Animated Button Styles */
.button-container-2 {
    position: relative;
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    transition: 0.5s;
    border-radius: 10px;
    background: #161616;
    display: inline-block;
    box-sizing: border-box;
    max-width: 100%;
}

.button-container-2.animation-complete {
    border: 1px solid var(--color-border);
    box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.button-container-2 .animated-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 35px;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 1;
    cursor: pointer;
    box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    border: none;
    background: transparent;
}

.button-container-2 .animated-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D4AF37;
    -webkit-mask: url("/images/optimized/urban-sprite.webp");
    mask: url("/images/optimized/urban-sprite.webp");
    -webkit-mask-size: 3000% 100%;
    mask-size: 3000% 100%;
    z-index: 1;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    transition: -webkit-mask-position 0.7s steps(29);
    transition: mask-position 0.7s steps(29);
}

.button-container-2 .animated-btn:hover::before {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
}

.mas {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
}

.btn--secondary {
  background-color: #1f1f1f;
  color: var(--color-text-primary);
}

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

.section-title {
    font-size: 56px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -2.24px;
    margin: 0;
    background: linear-gradient(to bottom, #ebebeb 0%, #cccccc 40%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    text-align: center;
    max-width: 650px;
    margin: 20px auto 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 40px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}

.site-header {
  position: relative;
  z-index: 1000;
  padding: 0 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.header-container {
  max-width: 1150px;
  margin: 0 auto;
  background-color: var(--color-surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1001;
}

/* Center the navigation */
.header-container .main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Ensure the animated button in nav is aligned to the right */
.header-container .button-container-2 {
  margin-left: auto;
  margin-right: 0;
}

/* Vertically center the logo in the navigation bar */
.header-container .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-container .logo img {
  vertical-align: middle;
  margin-top: 2px; /* adjust as needed for perfect centering */
}

.logo img {
  height: 40px;
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
}

.main-nav a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  transition: color 0.3s ease;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav li {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .header-container {
    justify-content: space-between;
  }
}

/* Responsive Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1010;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
}

.hamburger-menu span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  display: block;
  transition: all 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.hamburger-menu.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

/* Disable body scrolling when mobile nav is open */
body.mobile-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.mobile-nav-logo {
    width: 100px;
    margin-bottom: 40px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    margin: 15px 0;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #d4af37;
}

.mobile-nav .button-container-2 {
    width: fit-content;
    margin: 20px auto 0;
}


@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .header-container > .button-container-2 {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
  .header-container {
    justify-content: space-between;
  }
  .mobile-nav.open {
    display: flex;
  }
}

/* CSS for section section:hero */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 180px 30px 110px 30px;
  text-align: center;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 206px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--color-background) 0%, var(--color-background) 40%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-background) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* Vanta.js will handle the background animation */

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-surface);
  color: var(--color-text-secondary);
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
  font-family: 'Space Grotesk', sans-serif;
}

.discount-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
}

.hero-title {
  font-size: 66px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -3.3px;
  margin: 0;
  color: var(--color-text-primary);
  max-width: 720px;
  background: linear-gradient(to bottom, #ebebeb 0%, #cccccc 40%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 630px;
  margin: 0;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .discount-badge {
    margin-top: -72px;
  }
}

/* CSS for section section:benefits */
.benefits-section {
  padding: 30px 20px;
}

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

.benefit-card {
  background-color: var(--color-surface);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.benefit-card__title {
  font-size: 22px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  margin: 0 0 15px 0;
  color: var(--color-text-primary);
}

.benefit-card__description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.benefit-card__chat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
}

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

.chat-text {
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.chat-bubble--received {
  align-self: flex-start;
}

.chat-bubble--received .chat-text {
  background-color: rgba(255, 255, 255, 0.07);
}

.chat-bubble--sent {
  align-self: flex-end;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.chat-bubble--sent .chat-text {
  background-color: var(--color-background);
  box-shadow: 0px 50px 20px -30px rgba(0, 0, 0, 0.5);
  order: 2;
}

.chat-bubble--sent .chat-avatar {
  order: 1;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 50px 20px 80px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: start;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.044);
}

.pricing-card--highlighted {
  position: relative;
  background-color: var(--color-surface);
  overflow: hidden;
  border: 2px solid #3b372e;
}

.pricing-card--highlighted::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

.pricing-card--highlighted > * {
  position: relative;
  z-index: 1;
}

.pricing-card--coming-soon {
  position: relative;
  overflow: hidden;
}

.pricing-card--coming-soon .pricing-card__content {
  filter: blur(3px);
  opacity: 0.6;
  pointer-events: none;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(2px);
}

.coming-soon-content {
  text-align: center;
  padding: 20px;
}

.coming-soon-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 10px 0;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.coming-soon-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
  opacity: 0.9;
}

.pricing-card__title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px 0;
  font-family: 'Outfit', sans-serif;
}

.pricing-card__description {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pricing-card__price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing-card__price {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-card__unit {
  font-size: 16px;
  color: var(--color-text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: auto;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pricing-card__features img {
  width: 15px;
  height: 15px;
}

.pricing-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pricing-card--small {
  gap: 20px;
}

.pricing-card--small .btn--secondary {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.cookie-consent.show {
  opacity: 1;
  visibility: visible;
}

.cookie-consent.hide {
  opacity: 0;
  visibility: hidden;
}

.cookie-consent__content {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 500px;
  width: calc(100% - 40px);
  transform: scale(0.9);
  transition: transform 0.5s ease-in-out;
}

.cookie-consent.show .cookie-consent__content {
  transform: scale(1);
}

.cookie-consent.hide .cookie-consent__content {
  transform: scale(0.9);
}

.cookie-consent__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cookie-consent__text h3 {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  color: var(--color-text-primary);
  text-align: center;
}

.cookie-consent__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  text-align: center;
}

.cookie-consent__buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.cookie-consent__btn {
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-consent__btn--accept {
  background-color: var(--color-primary);
  color: #000000;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.1);
}

.cookie-consent__btn--accept:hover {
  background-color: #b8942a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cookie-consent__btn--decline {
  background-color: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.cookie-consent__btn--decline:hover {
  background-color: var(--color-border);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-consent__content {
    padding: 30px 25px;
    margin: 20px;
    width: calc(100% - 40px);
  }
  
  .cookie-consent__text h3 {
    font-size: 20px;
  }
  
  .cookie-consent__text p {
    font-size: 14px;
  }
  
  .cookie-consent__buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-consent__btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* Pricing Contract Notice */
.pricing-contract-notice {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
}

.pricing-contract-notice p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 20px 120px;
}

.contact-form-wrapper {
  max-width: 500px;
  margin: 60px auto 0 auto;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 50px 50px;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.contact-form-header {
  text-align: left;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  margin: 0 0 20px 0;
}

.contact-form-description {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

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

.contact-form-divider {
  border: none;
  height: 1px;
  background-color: var(--color-border);
  margin: 20px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}

.form-group label {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 0px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.form-group input {
  background-color: #383838;
  border: 1px solid #464646;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 16px;
  color: #969696;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 4px;
  outline: none;
}

.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Override autocomplete styles */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #383838 inset !important;
  -webkit-text-fill-color: var(--color-text-primary) !important;
  background-color: #383838 !important;
  border-color: #464646 !important;
}

.form-group input:-webkit-autofill:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2), 0 0 0 30px #383838 inset !important;
}

.form-group input::placeholder {
  color: #545454;
}

.form-group textarea {
  background-color: #383838;
  border: 1px solid #464646;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 16px;
  color: #969696;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 4px;
  resize: vertical;
  min-height: 100px;
  outline: none;
}

.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group textarea::placeholder {
  color: #545454;
}

.contact-form-wrapper .btn {
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px !important;
  border: 1px solid #464646 !important;
}

/* Style the animated submit button to match original width */
.contact-form-wrapper .button-container-2 {
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Form response styles */
.form-response {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid;
  transition: all 0.3s ease;
  animation: slideIn 0.3s ease;
}

.form-response.success {
  background-color: rgba(27, 148, 43, 0.1);
  border-color: var(--color-success);
  color: var(--color-success);
}

.form-response.error {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #dc3545;
}

.response-message {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.response-icon {
  font-size: 18px;
  font-weight: bold;
}

.response-icon.success {
  color: var(--color-success);
}

.response-icon.error {
  color: #dc3545;
}

/* Form error styles */
.form-group input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.form-errors {
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 0px;
  margin-top: -10px;
  animation: slideIn 0.3s ease;
}

.error-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.error-item {
  color: #dc3545;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-item::before {
  content: '•';
  color: #dc3545;
  font-weight: bold;
}

/* Loading state */
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CSS for section section:footer */
.site-footer {
  padding: 100px 20px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  box-shadow: 0px 1px 200px 0px rgba(255, 255, 255, 0.07);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-logo-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 2;
}

.copyright {
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.footer-column {
  flex: 1;
}

.footer-heading {
  font-size: 19px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  margin: 0 0 20px 0;
}

.footer-heading a {
  color: inherit;
  text-decoration: none;
  font: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.footer-heading a:hover, .footer-heading a:focus {
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

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

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-logo-column {
    align-items: center;
  }
}

/* Loading overlay styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-container {
  text-align: center;
  position: relative;
}

.logo-container {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.loading-overlay .logo {
  height: 60px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.loading-text {
  font-size: 24px;
  font-weight: 400;
  color: #969696;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #d4af37;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-top-color: #969696;
  animation: spin 1.5s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-top-color: #545454;
  animation: spin 1.5s linear infinite;
}

.progress-bar {
  width: 200px;
  height: 4px;
  background: #0f0f0f;
  border-radius: 2px;
  margin: 30px auto 0;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1s ease-out 2s forwards;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  border-radius: 2px;
  width: 0%;
  animation: progress 3s ease-out 2.5s forwards;
}

.loading-dots {
  margin-top: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 2.5s forwards;
}

.loading-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
  margin: 0 4px;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Page transition overlay */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.5s ease;
}

.transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

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

@media (max-width: 1024px) {
    .cta-section {
        margin: 0 20px 80px 20px;
    }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
    margin: 0 40px 60px 40px;
  }
  .cta-content .section-title {
    font-size: 36px;
  }
  .cta-content .section-subtitle {
    font-size: 16px;
  }
}





/* ================================================== */
/* PRICING SECTION VARIATION 1: Tiered Feature Card with Expandable Add-ons */
/* ================================================== */

/* Variation 1 Specific Styles */
.pricing-section--var1 {
  padding: 50px 20px 80px 20px;
}

.pricing-variation-1 {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Main Pricing Card - Design 1: Compact Horizontal */
.pricing-card--main {
  position: relative;
  background-color: var(--color-surface);
  border: 2px solid #3b372e;
  border-radius: 20px;
  padding: 30px;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.044);
  overflow: hidden;
}

.pricing-card--design1 .pricing-card__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.pricing-card--design1 .pricing-card__left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card--design1 .pricing-card__right {
  flex: 1;
}

.pricing-card--design1 .pricing-card__header {
  text-align: left;
}

.pricing-card--design1 .pricing-card__title {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card--design1 .pricing-card__description {
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card--design1 .pricing-card__price-wrapper {
  margin: 0;
}

.pricing-card--design1 .pricing-card__price {
  font-size: 36px;
}

.pricing-card--design1 .pricing-card__unit {
  font-size: 16px;
}

.pricing-card--design1 .pricing-card__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pricing-card--design1 .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pricing-card--design1 .feature-item img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.pricing-card--design1 .pricing-card__footer {
  margin-top: auto;
}

/* Card Design 2: Vertical Compact with Icon Grid */
.pricing-card--design2 {
  padding: 25px;
}

.pricing-card--design2 .pricing-card__header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card--design2 .pricing-card__title {
  font-size: 22px;
  margin-bottom: 6px;
}

.pricing-card--design2 .pricing-card__description {
  font-size: 13px;
  line-height: 1.4;
}

.pricing-card--design2 .pricing-card__price-wrapper {
  text-align: center;
  margin-bottom: 25px;
}

.pricing-card--design2 .pricing-card__price {
  font-size: 32px;
}

.pricing-card--design2 .pricing-card__unit {
  font-size: 14px;
}

.pricing-card--design2 .pricing-card__features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.pricing-card--design2 .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  padding: 12px 8px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.pricing-card--design2 .feature-item img {
  width: 16px;
  height: 16px;
}

.pricing-card--design2 .feature-item span {
  line-height: 1.3;
}

.pricing-card--design2 .pricing-card__footer {
  text-align: center;
}

/* Card Design 3: Minimalist Single Column */
.pricing-card--design3 {
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-card--design3 .pricing-card__header {
  text-align: center;
  margin-bottom: 15px;
}

.pricing-card--design3 .pricing-card__title {
  font-size: 20px;
  margin-bottom: 4px;
}

.pricing-card--design3 .pricing-card__description {
  font-size: 12px;
  line-height: 1.4;
}

.pricing-card--design3 .pricing-card__price-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card--design3 .pricing-card__price {
  font-size: 28px;
}

.pricing-card--design3 .pricing-card__unit {
  font-size: 13px;
}

.pricing-card--design3 .pricing-card__features-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-card--design3 .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  padding: 6px 0;
}

.pricing-card--design3 .feature-item img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.pricing-card--design3 .pricing-card__footer {
  text-align: center;
}

.pricing-card--main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

.pricing-card--main > * {
  position: relative;
  z-index: 1;
}

/* Additional Services Section */
.additional-services {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.additional-services__header {
  text-align: center;
  margin-bottom: 40px;
}

.additional-services__title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 15px 0;
}

.additional-services__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.addon-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 180px;
}

.addon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.addon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.addon-card:hover::before {
  opacity: 1;
}

.addon-card__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.addon-card__icon img {
  display: none;
}

.addon-card__icon::before {
  content: '✓';
  color: #d4af37;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pricing-card--design1 .feature-item img {
  display: none;
}

.pricing-card--design1 .feature-item::before {
  content: '✓';
  color: #d4af37;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}

.addon-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

.addon-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.addon-card__description {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.addon-card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

/* Available Services Styling */
.addon-card--available {
  border-color: rgba(212, 175, 55, 0.3);
  background-color: rgba(212, 175, 55, 0.02);
}

.addon-card--available:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background-color: rgba(212, 175, 55, 0.05);
}

.addon-card--available .addon-card__price {
  color: var(--color-primary);
}

/* Coming Soon Services Styling */
.addon-card--coming-soon {
  border-color: var(--color-border);
  background-color: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.addon-card--coming-soon:hover {
  transform: none;
  border-color: var(--color-border);
  box-shadow: none;
}

.addon-card--coming-soon .addon-card__blurred-content {
  filter: blur(8px);
  pointer-events: none;
}

.addon-card--coming-soon .addon-card__coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.addon-card--coming-soon .coming-soon-text {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Mobile Responsiveness for Variation 1 */
@media (max-width: 768px) {
  .pricing-variation-1 {
    gap: 30px;
  }
  
  .pricing-card--main {
    padding: 25px 20px;
  }
  
  .pricing-card--design1 .pricing-card__content-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  
  .pricing-card--design1 .pricing-card__left {
    flex: 1;
  }
  
  .pricing-card--design1 .pricing-card__features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .pricing-card--design2 .pricing-card__features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .pricing-card--design3 {
    max-width: 100%;
  }
  
  .additional-services {
    padding: 30px 20px;
  }
  
  .additional-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .additional-services__title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .pricing-card--main {
    padding: 20px 15px;
  }
  
  .pricing-card--design2 .pricing-card__features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .additional-services {
    padding: 25px 15px;
  }
  
  .addon-card {
    padding: 20px;
  }
}

/* ================================================== */
/* TIMELINE VARIANT C: Interactive Stepper */
/* ================================================== */
.timeline-vc-section {
  padding: 100px 20px 60px 20px;
  background: var(--color-background);
  position: relative;
}


.stepper-workflow {
  max-width: 1200px;
  margin: 80px auto 0;
}

.stepper-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.stepper-line {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-border);
  z-index: 1;
}

.stepper-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.stepper-point:hover,
.stepper-point.active {
  transform: translateY(-5px);
}

.point-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.stepper-point.active .point-number,
.stepper-point:hover .point-number {
  background: var(--color-primary);
  color: var(--color-background);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.point-info {
  text-align: center;
  max-width: 120px;
}

.point-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 5px;
}

.point-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--color-text-muted);
  display: block;
}

.stepper-content {
  position: relative;
  min-height: 600px;
}

.stepper-panel {
  display: none;
}

.stepper-panel.active {
  display: block;
  animation: fadeInStepper 0.5s ease-in-out;
}

@keyframes fadeInStepper {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.panel-main {
  display: flex;
  flex-direction: column;
}

.panel-intro {
  margin-bottom: 25px;
}

.stepper-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 15px 0;
}

.stepper-meta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.stepper-phase {
  background: linear-gradient(135deg, var(--color-primary), #f4d03f);
  color: var(--color-background);
  padding: 6px 12px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.stepper-duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.stepper-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.stepper-features {
  flex: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: inherit;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 8px 0;
}

.feature-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.panel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
}

.sidebar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 15px 0;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
}

.timeline-cta-vc {
  text-align: center;
  margin-top: 80px;
}

.cta-card-vc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.cta-title-vc {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 15px 0;
}

.cta-subtitle-vc {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* ================================================== */
/* Mobile Responsiveness for Timeline */
/* ================================================== */
@media (max-width: 768px) {
  /* Timeline Mobile */
  .stepper-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .stepper-line {
    display: none;
  }
  
  .panel-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .timeline-vc-section {
    padding: 60px 20px 40px 20px;
  }
  
  .panel-layout {
    padding: 25px 20px;
  }
  
  .stepper-title {
    font-size: 24px;
  }
  
  .cta-card-vc {
    padding: 30px 20px;
  }
  
  .cta-title-vc {
    font-size: 24px;
  }
}

/* ================================================== */
/* TIMELINE VARIANT 1: Classic Alternating Timeline */
/* ================================================== */
.timeline-v1 {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--color-background) 0%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.timeline-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.timeline-container-v1 {
  position: relative;
  max-width: 800px;
  margin: 80px auto 0;
}

.timeline-line-v1 {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-primary), #f4d03f, var(--color-primary));
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-step-v1 {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.timeline-step-v1:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-step-v1:nth-child(even) .timeline-content-v1 {
  text-align: right;
  padding-right: 0;
  padding-left: 60px;
}

.timeline-marker-v1 {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--color-surface);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  z-index: 3;
}

.marker-inner-v1 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.marker-pulse-v1 {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  animation: pulse-v1 2s infinite;
  opacity: 0.6;
}

@keyframes pulse-v1 {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

.timeline-content-v1 {
  flex: 1;
  padding-right: 60px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
  position: relative;
}

.timeline-content-v1::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: var(--color-border);
}

.timeline-step-v1:nth-child(even) .timeline-content-v1::before {
  right: auto;
  left: -10px;
  border-left-color: transparent;
  border-right-color: var(--color-border);
}

.timeline-title-v1 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 15px 0;
}

.timeline-description-v1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.timeline-features-v1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag-v1 {
  background: linear-gradient(135deg, var(--color-primary), #f4d03f);
  color: var(--color-background);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.timeline-cta-v1 {
  text-align: center;
  margin-top: 60px;
}

/* ================================================== */
/* TIMELINE VARIANT 2: Road Map Timeline */
/* ================================================== */
.timeline-v2 {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, var(--color-background) 50%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.timeline-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.roadmap-container {
  position: relative;
  margin-top: 80px;
  padding: 60px 0;
}

.road-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.road-svg {
  width: 100%;
  height: 400px;
  opacity: 0.8;
}

.road-line {
  stroke-dasharray: 10 5;
  animation: road-flow 20s linear infinite;
}

@keyframes road-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 300; }
}

.roadmap-stops {
  position: relative;
  z-index: 2;
  height: 400px;
}

.road-stop {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.road-marker {
  background: var(--color-surface);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  margin-bottom: 20px;
  position: relative;
}

.road-marker::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: road-pulse 3s ease-in-out infinite;
}

@keyframes road-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.1; }
}

.road-icon {
  font-size: 24px;
  margin-bottom: 2px;
}

.road-number {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}

.road-content {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 20px;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.road-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 10px 0;
}

.road-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.road-duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
}

.timeline-cta-v2 {
  text-align: center;
  margin-top: 80px;
}

.cta-roadmap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
}

.cta-roadmap .cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 10px 0;
}

.cta-roadmap .cta-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0 0 25px 0;
}

/* ================================================== */
/* TIMELINE VARIANT 3: Vertical Progress Timeline */
/* ================================================== */
.timeline-v3 {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--color-background) 0%, #0a0a0a 30%, var(--color-background) 70%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.timeline-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.progress-timeline {
  max-width: 900px;
  margin: 80px auto 0;
  position: relative;
}

.progress-track {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--color-border);
  border-radius: 3px;
  z-index: 1;
}

.progress-bar {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--color-primary), #f4d03f, var(--color-primary));
  border-radius: 3px;
  transition: height 2s ease-in-out;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.progress-steps {
  position: relative;
  z-index: 2;
}

.progress-step {
  display: flex;
  margin-bottom: 60px;
  align-items: flex-start;
}

.step-indicator {
  flex-shrink: 0;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: var(--color-surface);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  position: relative;
  margin-bottom: 20px;
}

.step-circle::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: step-pulse 4s ease-in-out infinite;
}

@keyframes step-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.1; }
}

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

.step-line {
  width: 2px;
  height: 40px;
  background: var(--color-primary);
  opacity: 0.3;
}

.step-card {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0px 1px 20px 0px rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.step-label {
  background: linear-gradient(135deg, var(--color-primary), #f4d03f);
  color: var(--color-background);
  padding: 6px 12px;
  border-radius: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.step-status {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 15px 0;
}

.step-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.step-deliverables {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.deliverable {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.deliverable::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
}

.step-timeline {
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.timeline-duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-cta-v3 {
  text-align: center;
  margin-top: 80px;
}

.progress-cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.progress-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
  pointer-events: none;
}

.progress-cta .cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 15px 0;
  position: relative;
  z-index: 1;
}

.progress-cta .cta-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}

/* ================================================== */
/* Mobile Responsiveness for All Timeline Variants */
/* ================================================== */
@media (max-width: 768px) {
  /* Timeline V1 Mobile */
  .timeline-step-v1 {
    flex-direction: column !important;
    text-align: center;
  }
  
  .timeline-step-v1:nth-child(even) .timeline-content-v1 {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .timeline-content-v1::before,
  .timeline-step-v1:nth-child(even) .timeline-content-v1::before {
    display: none;
  }
  
  .timeline-line-v1 {
    left: 40px;
    transform: none;
  }
  
  .timeline-marker-v1 {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .marker-inner-v1 {
    font-size: 18px;
  }

  /* Timeline V2 Mobile */
  .roadmap-stops {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
  
  .road-stop {
    position: static;
    transform: none;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .road-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .road-content {
    text-align: left;
    flex: 1;
  }
  
  .road-path {
    display: none;
  }

  /* Timeline V3 Mobile */
  .progress-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-indicator {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .progress-track {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .step-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .timeline-content-v1 {
    padding: 20px;
  }
  
  .timeline-title-v1 {
    font-size: 20px;
  }
  
  .timeline-description-v1 {
    font-size: 14px;
  }
  
  .road-title {
    font-size: 16px;
  }
  
  .road-description {
    font-size: 13px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 14px;
  }
  
  .progress-cta .cta-title {
    font-size: 28px;
  }
  
  .progress-cta .cta-subtitle {
    font-size: 16px;
  }
}
