* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

/* SVG Icons - Reemplaza Font Awesome */
.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    line-height: 1;
}

.svg-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Tamaños de iconos */
.svg-icon.icon-sm { width: 0.875em; height: 0.875em; }
.svg-icon.icon-lg { width: 1.33em; height: 1.33em; }
.svg-icon.icon-xl { width: 2em; height: 2em; }
.svg-icon.icon-2x { width: 2em; height: 2em; }
.svg-icon.icon-3x { width: 3em; height: 3em; }

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  overflow-x: hidden;
}

body {
  background: #111111;
  min-height: 100vh;
  background-attachment: fixed;
  overflow-x: hidden;
  color: #fcfbf8;
  width: 100%;
  position: relative;
}

.contact-email-note {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  width: 100%;
  font-weight: 400;
  margin-top: 32px;
  padding: 20px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.contact-email-note a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.contact-email-note a:hover {
  color: #006dc7;
  border-bottom-color: #006dc7;
}

.main-container {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}


section {
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}


img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}


h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}


pre, code {
  max-width: 100%;
  overflow-x: auto;
}

:root {
    --primary-color: #1f327d;
    --secondary-color: #1f327d;
    --text-color: #fcfbf8;
    --text-dark: #fcfbf8;
    --white: #fcfbf8;
    --background-color: #1b1b1b;
    --border-color: rgba(252, 251, 248, 0.1);
    --font-family: 'Outfit', sans-serif;
    --font-size: 16px;
    --font-weight: 400;
    --letter-spacing: 0.01em;
    --transition: all 0.3s ease;
}

.header-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
  background: #1b1b1b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.header {
  background: transparent;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding-top: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  overflow: visible;
}

.header.scrolled {
  z-index: 10000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(27, 27, 27, 0.72);
  border-bottom: 1px solid rgba(252, 251, 248, 0.08);
  padding-top: 0;
}

.header-content {
  background: transparent;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10001;
  pointer-events: all;
}

.header.scrolled .header-content {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 1.5rem;
  height: 68px;
}

.logo-img {
  height: 55px;
  width: auto;
  display: flex;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo-img {
  height: 48px;
}

.nav-logo {
    justify-self: center;
    pointer-events: auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    pointer-events: auto;
    justify-self: start;
    padding-left: 0;
} 

.nav-menu li {
  display: block;
  padding: 10px 20px;
}

.nav-menu:hover .nav-button:not(:hover) {
  opacity: 0.2;
  transition: opacity 0.2s ease;
}


.nav-button {
    text-decoration: none;
    color: #fcfbf8;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.5rem 0;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    position: relative;
    white-space: nowrap;
    opacity: 1;
}

.nav-button:active {
    transform: scale(0.96);
    transition: transform 0.1s ease-out;
}

/* Header Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
  pointer-events: auto;
}

.lang-switcher-pill {
  background-color: transparent;
  color: #fcfbf8;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: background-color 0.15s ease;
  pointer-events: auto;
}

.header.scrolled .lang-switcher-pill {
  background-color: #2a2a2a;
}

.lang-option {
  transition: opacity 0.2s ease;
  text-decoration: none;
  color: #fcfbf8;
}

.lang-active {
  opacity: 1;
  cursor: pointer;
}

.lang-inactive {
  opacity: 0.5;
}

.lang-inactive:hover {
  opacity: 1;
}

.lang-separator {
  opacity: 0.6;
}

.button-contactar {
  z-index: 1;
  background-color: #fcfbf8;
  color: #1b1b1b;
  line-height: 1.12;
  letter-spacing: 0.01em;
  border-radius: 50px;
  padding: 12px 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s linear;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.button-contactar .circle-icon {
  transition: all .2s linear;
  opacity: 1;
}

.button-contactar .arrow-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  transition: all .3s linear;
  opacity: 0;
}

.button-contactar .button-text {
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(0);
}

.button-contactar:hover::before {
  left: 100%;
}

.button-contactar:hover .circle-icon {
  opacity: 0;
  transform: translateX(-10px);
}

.button-contactar:hover .arrow-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.button-contactar:hover .button-text {
  transform: translateX(-16px);
}



/* ========================================
   MOBILE MENU - MINIMALIST DESIGN
   ======================================== */

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #fcfbf8;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger-line:nth-child(2) {
  margin: 5px 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #000000;
  z-index: 10100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateY(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10001;
}

.mobile-menu-logo {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-logo-img {
  height: 40px;
  width: auto;
}

.mobile-menu-close {
  grid-column: 3;
  justify-self: end;
  background: transparent;
  border: none;
  color: #fcfbf8;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 10001;
  position: relative;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0.5rem;
}

.mobile-nav-link {
  color: #fcfbf8;
  font-size: 2rem;
  font-weight: 400;
  text-decoration: none;
  padding: 1rem 0;
  transition: all 0.2s ease;
  font-family: 'Outfit', sans-serif;
  position: relative;
  display: block;
}

.mobile-nav-link:hover {
  color: rgba(252, 251, 248, 0.7);
  padding-left: 0.5rem;
}

.mobile-nav-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fcfbf8;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 50px;
  margin-top: 1rem;
  width: fit-content;
  transition: all 0.3s ease;
}

.mobile-nav-link-button:hover {
  background-color: rgba(252, 251, 248, 0.9);
  color: #000000;
  padding-left: 2rem;
  transform: translateY(-2px);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-footer-title {
  color: #fcfbf8;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
}

.mobile-footer-column a {
  color: rgba(252, 251, 248, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Outfit', sans-serif;
}

.mobile-footer-column a:hover {
  color: #fcfbf8;
}

/* Mobile Menu CTAs */
.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-cta-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fcfbf8;
  color: #000000;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.mobile-cta-primary:hover {
  background-color: rgba(252, 251, 248, 0.9);
  transform: translateY(-2px);
}

.mobile-cta-primary svg {
  transition: transform 0.3s ease;
}

.mobile-cta-primary:hover svg {
  transform: translateX(4px);
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
}

/* Hide header when mobile menu is open */
body.mobile-menu-open .header {
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  padding: 120px 0px 80px 0px;
  min-height: calc(100vh - 100px);
  z-index: 1;
  margin: 0 auto;
  width: 100%;
}


.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 160px);
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Neon Badge */
.neon-badge {
  position: relative;
  display: inline-block;
  padding: 3px;
  border-radius: 50px;
  margin-bottom: 3.5rem;
  background: transparent;
  overflow: hidden;
}

@media (max-width: 600px) {
  .neon-badge {
    margin-bottom: 2.5rem;
  }
}

.neon-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(
    from var(--angle),
    #00d4ff 0deg,
    #0080ff 72deg,
    #0040ff 144deg,
    #0066ff 216deg,
    #00b8ff 288deg,
    #00d4ff 360deg
  );
  filter: brightness(1.3) saturate(1.6);
  box-shadow: 0 0 20px rgba(0, 128, 255, 0.6), 0 0 40px rgba(0, 128, 255, 0.4), inset 0 0 10px rgba(0, 212, 255, 0.2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: neon-rotate 4s linear infinite;
}

@keyframes neon-rotate {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.neon-badge-text {
  position: relative;
  display: block;
  padding: 0.5rem 1.25rem;
  background: rgba(27, 27, 27, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 47px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fcfbf8;
  text-transform: none;
  line-height: 1.4;
  max-width: 600px;
  text-align: center;
  z-index: 1;
}

.hero-content {
  color: #fcfbf8;
  text-align: center;
  max-width: 100%;
}

.hero-content h1 {
  font-size: inherit;
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.hero-right {
  display: none;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 650px;
}

.hero-img {
  width: 100%;
  height: auto;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9) contrast(1.1);
}

/* DarkVeil Canvas Background */
.darkveil-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
  display: block;
}

.hero-description {
  font-size: 1.2rem;
  color: #d4d4d4;
  line-height: 1.6;
  margin: 2rem auto;
  max-width: 700px;
  text-align: center;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1b1b1b;
  gap: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(252, 251, 248, 0.15);
  border-radius: 100px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  min-height: 48px;
}

.hero-button:hover {
  background: #f0f0f0;
  border-color: rgba(0, 0, 0, 0.1);
}

.hero-button:active {
  transform: translateY(0);
}


.hero-title-highlight {
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 100px;
  font-weight: 500;
  text-transform: none;
  display: block;
  margin: 0;
  width: 100%;
  line-height: 0.9;
  padding-bottom: 10px;
}

.hero-title-text {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fcfbf8;
  margin: 0;
  display: block;
  width: 100%;
}


.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.fade-in {
  opacity: 0;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.fade-in.revealed {
  opacity: 1;
}

.scroll-reveal.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.slide-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.slide-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal.scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-reveal.scale-up.revealed {
  opacity: 1;
  transform: scale(1);
}

.scroll-reveal.rotate-in {
  opacity: 0;
  transform: rotate(-5deg) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-reveal.rotate-in.revealed {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.scroll-reveal.stagger-1 { transition-delay: 0.05s; }
.scroll-reveal.stagger-2 { transition-delay: 0.1s; }
.scroll-reveal.stagger-3 { transition-delay: 0.15s; }
.scroll-reveal.stagger-4 { transition-delay: 0.2s; }
.scroll-reveal.stagger-5 { transition-delay: 0.25s; }
.scroll-reveal.stagger-6 { transition-delay: 0.3s; }

.hero .scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-highlight.scroll-reveal {
  transform: translateY(40px) scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title-highlight.scroll-reveal.revealed {
  transform: translateY(0) scale(1);
}

.hero-title-text.scroll-reveal {
  transform: translateY(35px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title-text.scroll-reveal.revealed {
  transform: translateY(0) scale(1);
}

.hero-description.scroll-reveal {
  transform: translateY(25px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-description.scroll-reveal.revealed {
  transform: translateY(0);
  opacity: 1;
}

.hero-button.scroll-reveal {
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-button.scroll-reveal.revealed {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.hero-image.scroll-reveal {
  transform: translateX(60px) scale(0.92) rotate(4deg);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image.scroll-reveal.revealed {
  transform: translateX(0) scale(1) rotate(0deg);
  opacity: 1;
}

.hero .stagger-1 { transition-delay: 0.05s; }
.hero .stagger-2 { transition-delay: 0.15s; }
.hero .stagger-3 { transition-delay: 0.25s; }
.hero .stagger-4 { transition-delay: 0.35s; }


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 400;
  color: #fcfbf8;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: #d4d4d4;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-nosotros-wrapper {
  position: relative;
  z-index: 1;
}

.process-nosotros-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 30%, hsla(217, 100%, 70%, 0.9) 0%, hsla(217, 100%, 80%, 0.6) 8%, transparent 16%),
    radial-gradient(circle at 30% 40%, hsla(210, 95%, 82%, 0.6) 0%, transparent 18%);
  background-repeat: no-repeat;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.process-section {
  padding: 4rem 0 0 0;
  position: relative;
  color: #fcfbf8;
  overflow: visible;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -600px;
  left: 0;
  width: 1200px;
  height: 1200px;
  background:
    radial-gradient(circle at 45% 50%, rgba(0, 180, 255, 0.35) 0%, rgba(0, 180, 255, 0.15) 25%, transparent 55%),
    radial-gradient(circle at 55% 45%, rgba(0, 120, 255, 0.28) 0%, rgba(0, 120, 255, 0.12) 30%, transparent 60%),
    radial-gradient(circle at 50% 55%, rgba(0, 220, 255, 0.25) 0%, rgba(0, 220, 255, 0.1) 28%, transparent 58%),
    radial-gradient(circle at 48% 48%, rgba(0, 160, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 120% 80% at 50% 50%, rgba(0, 140, 255, 0.18) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  transform: translateX(-38%);
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.process-section .container {
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.process-section .section-title,
.process-section .section-description,
.process-section .step-content p {
  color: #fcfbf8;
}


.process-section .step-number {
  background: transparent;
  color: #fcfbf8;
  border: none;
}


.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.process-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.process-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.process-line {
  height: 2px;
  background:rgba(252, 251, 248, 0.08);
  border-radius: 2px;
}


.process-steps {
  max-width: 1296px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
}

.step-item {
  text-align: left;
  padding: 1.25rem 1.5rem 1.5em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(252, 251, 248, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  min-height: 500px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.step-number {
  width: auto;
  height: auto;
  display: inline-block;
  padding: 0.3rem 0 0.25rem;
  font-size: 1.75rem;
  line-height: 1;
  margin: 1.2rem 0 0 0;
}

.step-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.step-content h3 {
  color: #fcfbf8;
  margin: 0 0 1rem 0;
  text-align: left;
  font-size: 1.75rem;
  font-weight: 500;
}

.step-content p {
  text-align: left;
  margin-top: 0;
  padding-bottom: 2rem;
  font-size: 1.2rem;
}

.process-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f7f8fa;
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  margin-top: 1.5rem;
}

.avatars {
  display: inline-flex;
  margin-left: 0.25rem;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #d1d5db;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.avatar + .avatar {
  margin-left: -8px;
}

.cta-text {
  margin: 0;
  color: #111827;
  font-weight: 500;
  font-size: 1.1rem;
}

.process-cta-button {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.55rem 0.99rem ;
  border-radius: 999px;
  text-decoration: none;
  color: #fcfbf8;
  background: #2a2a2a;
  border: 1px solid #e5e7eb;
  line-height: 1;
}

.process-cta-button:hover {
  opacity: 0.9;
}

.process-cta-button svg {
  display: block;
  flex-shrink: 0;
}


/* Media queries moved to end of file for better organization */

/* Nosotros Section */
.nosotros-section {
  padding: 0 0 5rem 0;
  position: relative;
  overflow: visible;
}

.nosotros-section .container {
  max-width: 1296px;
  margin: 0 auto;
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

.nosotros-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.nosotros-header-left {
  text-align: left;
}

.nosotros-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nosotros-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fcfbf8;
  margin-top: 0.25rem;
  letter-spacing: -0.025em;
  
}

.nosotros-header-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(252, 251, 248, 0.65);
  margin: 0;
}

/* Grid de Servicios */
.nosotros-grid {
  display: grid;
  gap: 1.5rem;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.nosotros-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 240px;
  width: 100%;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(252, 251, 248, 0.08);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Card Icon */
.card__icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  z-index: 2;
}

.card__icon {
  width: 100%;
  height: 100%;
  color: #4da3d4;
  filter: drop-shadow(0 2px 8px rgba(27, 91, 127, 0.3));
}

/* Gradient Background Effect */
.card__gradient {
  display: none;
}

/* Card Header and Content */
.card__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  color: #fcfbf8;
  z-index: 2;
}

.card__title {
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0;
  color: #fcfbf8;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.card__description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.75;
  color: #fcfbf8;
  margin: 0;
}

/* Category-specific icon colors */
.nosotros-item[data-category="design"] .card__icon {
  color: #6366f1;
}

.nosotros-item[data-category="responsive"] .card__icon {
  color: #8b5cf6;
}

.nosotros-item[data-category="quality"] .card__icon {
  color: #10b981;
}

.nosotros-item[data-category="analytics"] .card__icon {
  color: #f59e0b;
}

.nosotros-item[data-category="seo"] .card__icon {
  color: #ec4899;
}

.nosotros-item[data-category="performance"] .card__icon {
  color: #06b6d4;
}

/* Keyframe Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 2px 8px rgba(27, 91, 127, 0.3));
  }
  50% {
    filter: drop-shadow(0 4px 16px rgba(27, 91, 127, 0.6));
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Responsive Grid Layouts */
/* Mobile: 1 column */
.nosotros-grid {
  grid-template-columns: 1fr;
}

/* Tablet: 2 columns */
@media (min-width: 576px) {
  .nosotros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .nosotros-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Mobile optimizations */
@media (max-width: 576px) {
  .nosotros-item {
    min-height: 220px;
    padding: 1.75rem;
  }

  .nosotros-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .card__icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }

  .card__title {
    font-size: 1.2rem;
  }

  .card__description {
    font-size: 0.9rem;
  }
}

.nosotros-item-header {
  margin-bottom: 0.5rem;
}

.nosotros-item-left {
  display: flex;
  align-items: center;
}

.nosotros-icon {
  display: none;
}

.nosotros-item-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fcfbf8;
  margin: 0;
  letter-spacing: -0.015em;
}

.nosotros-item-description {
  color: rgba(252, 251, 248, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
  padding-right: 1rem;
}

.nosotros-chevron {
  display: none;
}






.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: #fcfbf8;
  text-decoration: none;
  box-shadow: 0px 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
  font-size: 28px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fcfbf8;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}


#toast-container {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column-reverse; 
    gap: 10px;
    max-width: 90vw;
    pointer-events: none;
}


.toast {
    background-color: #e0e0e0;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    min-width: 280px;
    max-width: 350px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
}


.toast.show {
    transform: translateX(0);
    opacity: 1;
}


.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}


.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-message {
    font-size: 16px;
    font-weight: 500;
}


.toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}




.multistep-contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #000000;
}

/* Particles Canvas Background */
.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.multistep-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 2;
}

.multistep-contact .container {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.contact-main-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 4rem);
  position: relative;
  z-index: 2;
}

.multistep-container {
  width: 700px;
  margin: 0 auto;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}


.progress-indicator {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 3rem 0rem 3rem;
  width: 100%;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-indicator .step-number-form {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem !important;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step-indicator.active .step-number-form,
.step-indicator.completed .step-number-form {
  background: #ffffff;
  color: #000000;
}

.step-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: color 0.3s ease;
}

.step-indicator.active .step-label,
.step-indicator.completed .step-label {
  color: rgba(255, 255, 255, 1);
}


.progress-bar {
  position: absolute;
  top: 25px;
  left: 3.25rem;
  right: 3.25rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.progress-fill {
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.4s ease;
}


.contact-form-container {
  padding: 3rem;
}

.multistep-form {
  position: relative;
  min-height: 400px;
}

.form-step {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
}

.contact-step-content {
  text-align: center;
}

.contact-step-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.contact-step-content p {
  font-size: 1.1rem;
  color: #1b1b1b;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.contact-form-group {
  margin-bottom: 2rem;
}

.contact-input-label {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: var(--font-family);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 150px;
}


.contact-form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 0;
}

.contact-btn:hover::before {
  width: 300px;
  height: 300px;
}


.contact-btn-next::before,
.contact-btn-submit::before,
.contact-btn-primary::before {
  background: rgba(255, 255, 255, 0.2);
}

.contact-btn-back::before {
  background: rgba(0, 0, 0, 0.1);
}

.contact-btn * {
  position: relative;
  z-index: 1;
}

.contact-btn-next,
.contact-btn-submit {
  background: var(--primary-color);
  color: #fcfbf8;
  min-width: 150px;
  position: relative;
}

.contact-btn-submit.loading {
  opacity: 0.8;
  cursor: not-allowed;
}

.contact-btn-submit .btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.loading-spinner {
  height: 20px;
  width: 20px;
  transform-origin: center;
  animation: rotate-spinner 2s linear infinite;
  overflow: visible;
}

.loading-car {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: stretch-spinner 1.5s ease-in-out infinite;
  transition: stroke 0.5s ease;
}

.loading-track {
  fill: none;
  stroke: currentColor;
  opacity: 0.2;
  transition: stroke 0.5s ease;
}

@keyframes rotate-spinner {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes stretch-spinner {
  0% {
    stroke-dasharray: 0, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 75, 150;
    stroke-dashoffset: -25;
  }
  100% {
    stroke-dashoffset: -100;
  }
}

.contact-btn-back {
  background: #6c757d;
  color: #fcfbf8;
  min-width: 120px;
}

.contact-btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-btn-primary {
  background: var(--primary-color);
  color: #fcfbf8;
  min-width: 150px;
}

.contact-btn-primary:hover {
  background: #1a2863;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 109, 199, 0.3);
}


.success-message {
  padding: 4rem 3rem;
  text-align: center;
  background: transparent;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.success-content i {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1.5rem;
  animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fcfbf8;
  margin-bottom: 1rem;
}

.success-content p {
  font-size: 1.1rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
}

.success-content .contact-btn {
  margin-top: 2rem;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.success-content .contact-btn-primary {
  background: var(--primary-color);
  color: #fcfbf8;
  border: none;
  cursor: pointer;
  min-width: 160px;
  justify-content: center;
}

.success-content .contact-btn-primary:hover {
  background: #1a2863;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 109, 199, 0.4);
}

.success-content .contact-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 109, 199, 0.3);
}



/* Contact page media queries moved to end of file */

.footer-modern {
  background: transparent;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(252, 251, 248, 0.08);
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 180px;
  height: auto;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(252, 251, 248, 0.6);
  margin: 0;
  max-width: 240px;
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(252, 251, 248, 0.5);
  margin: 0 0 0.5rem 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.9375rem;
  color: rgba(252, 251, 248, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-links-list a:hover {
  color: rgba(252, 251, 248, 1);
}

.footer-link__icon {
  opacity: 0;
  transition: 0.2s ease;
}

.footer-links-list a:hover .footer-link__icon {
  opacity: 1;
}

/* Footer CTA */
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.footer-cta-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(252, 251, 248, 0.9);
  margin: 0;
  text-align: right;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(252, 251, 248, 0.05);
  border: 1px solid rgba(252, 251, 248, 0.15);
  border-radius: 100px;
  color: rgba(252, 251, 248, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-cta-button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.footer-cta-button:hover svg {
  transform: translateX(2px);
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 1px;
  background: linear-gradient(
      to right,
      transparent 0%,
      rgba(252, 251, 248, 0.1) 20%,
      rgba(0, 0, 0, 0.15) 15%,
      rgba(0, 0, 0, 0.4) 25%,
      rgba(0, 0, 0, 0.7) 35%,
      rgba(0, 0, 0, 0.9) 45%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0.9) 55%,
      rgba(0, 0, 0, 0.7) 65%,
      rgba(0, 0, 0, 0.4) 75%,
      rgba(0, 0, 0, 0.15) 85%,
      rgba(0, 0, 0, 0.05) 95%,
      transparent 100%
  );
  box-shadow: 
      0 0 20px rgba(0, 0, 0, 0.1),
      0 0 40px rgba(0, 0, 0, 0.05);
}

.footer-main-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  position: relative;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.text-container-top {
  text-align: left;
  font-family: var(--font-family);
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
  color: #fcfbf8;
  font-weight: 400;
}

.text-container-top p {
  margin: 0;
}

.text-container-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
}

.text-container-bottom p {
  text-align: left;
  font-family: var(--font-family);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: rgba(252, 251, 248, 0.5);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
}


.footer-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-center-logo {
  width: 120px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-center-logo:hover {
  opacity: 1;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-updates {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(252, 251, 248, 0.7);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  font-weight: 400;
}

.footer-updates:hover {
  color: #fcfbf8;
}

.footer-updates svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.footer-updates:hover svg {
  transform: translateX(3px);
  opacity: 1;
}

.footer-social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
}

.footer-social-links a {
  text-decoration: none;
  color: rgba(252, 251, 248, 0.5);
  font-family: var(--font-family);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-social-links a:hover {
  color: #fcfbf8;
}

.footer-phone {
  margin-top: 1.5rem;
}

.footer-phone a {
  text-decoration: none;
  color: rgba(252, 251, 248, 0.7);
  font-family: var(--font-family);
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-phone a:hover {
  color: #fcfbf8;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(252, 251, 248, 0.06);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(252, 251, 248, 0.5);
}

.footer-location {
  padding-left: 1rem;
  border-left: 1px solid rgba(252, 251, 248, 0.15);
}

/* Language Switcher */
.footer-language-switcher {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(252, 251, 248, 0.05);
  border: 1px solid rgba(252, 251, 248, 0.1);
  border-radius: 100px;
  color: rgba(252, 251, 248, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-toggle:hover {
  background: rgba(252, 251, 248, 0.08);
  border-color: rgba(252, 251, 248, 0.2);
}

.language-toggle svg:first-child {
  flex-shrink: 0;
}

.language-current {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.chevron-icon {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.language-toggle:hover .chevron-icon {
  transform: translateY(1px);
}

.language-dropdown {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  right: 0;
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 251, 248, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.language-toggle:hover + .language-dropdown,
.language-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 0.625rem 0.875rem;
  color: rgba(252, 251, 248, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.language-option:hover {
  background: rgba(252, 251, 248, 0.08);
  color: rgba(252, 251, 248, 1);
}

.language-option.active {
  color: rgba(252, 251, 248, 1);
  font-weight: 500;
}

.footer-info .separator {
  color: rgba(0, 0, 0, 0.3);
}

/* Footer media queries moved to end of file */

/* Media queries consolidated - see mobile-queries.css */

.pricing-section {
    padding: 9rem 0 4rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
    color: #fcfbf8;
    overflow: hidden;
}

.pricing-section .section-title {
    color: #fcfbf8;
}

.pricing-section .section-description {
    color: #d4d4d4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: rgba(27, 27, 27, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 251, 248, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(252, 251, 248, 0.05);
  display: flex;
  flex-direction: column;
  height: 700px;
  text-align: left;
  overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.6;
}

.pricing-card.featured::after {
    display: none;
}

.pricing-card.featured {
    transform: none;
    background: linear-gradient(135deg, rgba(31, 50, 125, 0.15) 0%, rgba(26, 40, 99, 0.1) 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31, 50, 125, 0.3);
    box-shadow:
        0 12px 40px rgba(31, 50, 125, 0.2),
        inset 0 1px 0 rgba(31, 50, 125, 0.2);
}

.pricing-card.featured .plan-name {
    color: #fcfbf8;
}

.pricing-card.featured .plan-description {
    color: #d4d4d4;
}

.pricing-card.featured .amount {
    color: #fcfbf8;
}

.pricing-card.featured .features-list li {
    color: #fcfbf8;
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 20px;
    background: linear-gradient(135deg, rgba(31, 50, 125, 0.9) 0%, rgba(26, 40, 99, 0.8) 100%);
    backdrop-filter: blur(10px);
    color: #fcfbf8;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(31, 50, 125, 0.5);
    box-shadow: 0 2px 8px rgba(31, 50, 125, 0.3);
    z-index: 10;
    line-height: 1.2;
}

.pricing-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.plan-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.pricing-card:hover .plan-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

.pricing-card:hover .plan-icon i {
    color: #fcfbf8;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fcfbf8;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    text-align: left;
}

.pricing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(252, 251, 248, 0.1);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fcfbf8;
    line-height: 1;
    text-align: left;
}

.period {
    font-size: 1rem;
    color: #d4d4d4;
    font-weight: 500;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex: 1;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #fcfbf8;
    line-height: 1.4;
}

.pricing-card .features-list li i {
    color: #00ff88;
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.checkmark-icon {
    filter: brightness(0) invert(1);
    margin-right: 1rem;
    flex-shrink: 0;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: black;
    backdrop-filter: blur(10px);
    color: #fcfbf8;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.50rem;
    text-decoration: none;
    transition: all 0.1s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
}

.pricing-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(0, 0, 0, 0.15) 0%, 
    rgba(0, 0, 0, 0.05) 40%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.1s ease;
  pointer-events: none;
}

.pricing-button:hover::before {
  opacity: 1;
}

.pricing-button:hover {
    background: rgba(252, 251, 248, 0.15);
    color: #fcfbf8;
    border-color: rgba(252, 251, 248, 0.3);
}

.pricing-button.featured {
  background: linear-gradient(135deg, rgba(31, 50, 125, 0.6) 0%, rgba(26, 40, 99, 0.5) 100%);
  color: #fcfbf8;
  border: 1px solid rgba(31, 50, 125, 0.4);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  transition: all 0.1s ease;
}

.pricing-button.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(0, 0, 0, 0.15) 0%, 
    rgba(0, 0, 0, 0.05) 40%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.1s ease;
  pointer-events: none;
}

.pricing-button.featured:hover::before {
  opacity: 1;
}

.pricing-button.featured:hover {
    background: linear-gradient(135deg, rgba(31, 50, 125, 0.8) 0%, rgba(26, 40, 99, 0.7) 100%);
    color: #fcfbf8;
    border-color: rgba(31, 50, 125, 0.6);
}


.pricing-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pricing-button:hover svg {
    transform: translateX(4px);
}

.faq-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    color: #fcfbf8;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1072px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.faq-item {
    background: rgba(27, 27, 27, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(252, 251, 248, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1296px;
    position: relative;
    overflow: hidden;
}

.faq-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fcfbf8;
    margin: 0 0 1rem 0;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-description {
    position: static;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
    z-index: auto;
}

.faq-description p {
    color: #d4d4d4;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Media queries consolidated - see mobile-queries.css */

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(31, 50, 125, 0.2) 0%, rgba(26, 40, 99, 0.15) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(31, 50, 125, 0.3);
  position: relative;
  z-index: 1;
  border-radius: 0.50rem;
  margin-bottom: 2rem;
  overflow: hidden;
  max-width: 1296px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.03) 65%, rgba(255, 255, 255, 0.01) 80%, transparent 95%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  padding-left: 2rem;
}

.cta-content h2 {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fcfbf8;
  margin-bottom: 1rem;
}

.cta-content p {
  text-align: left;
  font-size: 1.2rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(252, 251, 248, 0.1);
  color: #fcfbf8;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1.2rem 2.5rem;
  border-radius: 0.50rem;
  text-decoration: none;
  transition: all 0.1s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(252, 251, 248, 0.2);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(0, 0, 0, 0.15) 0%, 
    rgba(0, 0, 0, 0.05) 40%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.1s ease;
  pointer-events: none;
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:hover {
  background: rgba(252, 251, 248, 0.15);
  color: #fcfbf8;
  border-color: rgba(252, 251, 248, 0.3);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* ===================================
   PREMIUM CTA SECTION
   =================================== */

.cta-section-premium {
  position: relative;
  padding: 3.5rem 0;
  margin: 3rem auto 2rem;
  max-width: 1296px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 50, 125, 0.25) 0%, rgba(26, 40, 99, 0.18) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(66, 165, 245, 0.2);
}

.cta-background-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(66, 165, 245, 0.15) 0%, rgba(66, 165, 245, 0.08) 25%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(252, 251, 248, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.cta-content-premium {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.cta-main-col {
  max-width: 700px;
  text-align: center;
}

/* Badge Premium */
.cta-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(66, 165, 245, 0.2), rgba(66, 165, 245, 0.1));
  color: #42a5f5;
  border: 1px solid rgba(66, 165, 245, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(66, 165, 245, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 20px 0 rgba(66, 165, 245, 0.2); }
}

.cta-badge-premium svg {
  color: #ffd700;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fcfbf8;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #d4d4d4;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-subtitle strong {
  color: #42a5f5;
  font-weight: 600;
}

/* Benefits Grid */
.cta-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.benefit-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(252, 251, 248, 0.03);
  border: 1px solid rgba(252, 251, 248, 0.08);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(252, 251, 248, 0.06);
  border-color: rgba(66, 165, 245, 0.3);
  transform: translateY(-2px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(66, 165, 245, 0.2), rgba(66, 165, 245, 0.1));
  border-radius: 0.5rem;
  color: #42a5f5;
}

.benefit-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fcfbf8;
  margin-bottom: 0.35rem;
}

.benefit-content p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.4;
  margin: 0;
}

/* Actions */
.cta-actions-premium {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.25rem;
  background: linear-gradient(135deg, #fcfbf8 0%, #e8e8e8 100%);
  color: #1f327d;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-btn-primary:hover::before {
  left: 100%;
}

.cta-btn-primary:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn-primary svg {
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
  transform: translateX(4px);
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.25rem;
  background: transparent;
  color: #fcfbf8;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  border: 2px solid rgba(252, 251, 248, 0.25);
}

.cta-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.5);
}

.cta-btn-whatsapp svg {
  color: #25d366;
}

/* Trust Signals */
.cta-trust-signals {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a0a0a0;
  font-size: 0.9rem;
}

.trust-item svg {
  color: #42a5f5;
}

/* Sidebar */
.cta-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-stats-card {
  background: rgba(252, 251, 248, 0.04);
  border: 1px solid rgba(252, 251, 248, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.stats-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fcfbf8;
  margin-bottom: 1.75rem;
  font-family: 'Outfit', sans-serif;
}

.stat-item-premium {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(252, 251, 248, 0.05);
}

.stat-item-premium:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(66, 165, 245, 0.15), rgba(66, 165, 245, 0.08));
  border-radius: 0.75rem;
  color: #42a5f5;
}

.stat-info {
  flex: 1;
}

.stat-number-premium {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fcfbf8;
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.stat-label-premium {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.3;
}

/* Testimonial */
.cta-testimonial {
  background: rgba(252, 251, 248, 0.04);
  border: 1px solid rgba(252, 251, 248, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #42a5f5;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1rem;
  color: #d4d4d4;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  font-size: 0.95rem;
  color: #fcfbf8;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #a0a0a0;
}

/* Media queries consolidated - see mobile-queries.css */

/* ===================================
   TÉRMINOS Y CONDICIONES STYLES
   =================================== */

.tyc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
}

.tyc-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.tyc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fcfbf8;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.tyc-subtitle {
    font-size: 1.1rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
}

.tyc-updated {
    font-size: 0.9rem;
    color: #a8a8a8;
    font-style: italic;
}

.tyc-content {
    margin-bottom: 2rem;
}

.tyc-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.tyc-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fcfbf8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.tyc-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 1.5rem 0 1rem 0;
}

.tyc-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.tyc-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.tyc-section li {
    margin-bottom: 0.5rem;
}

.tyc-highlight {
    background-color: #242424;
    padding: 1rem;
    border-left: 4px solid #292929;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.tyc-contact-box {
    background: #242424; 
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.tyc-contact-box h3 {
    color: #fcfbf8;
    margin-bottom: 1rem;
}

.tyc-contact-email {
    color: #fcfbf8;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.back-to-home {
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.back-to-home a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fcfbf8;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.tyc-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    color: #d4d4d4;
    font-size: 0.9rem;
}

/* ===================================
   POLÍTICA DE PRIVACIDAD STYLES
   =================================== */

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fcfbf8;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
}

.privacy-updated {
    font-size: 0.9rem;
    color: #a8a8a8;
    font-style: italic;
}

.privacy-content {
    margin-bottom: 2rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fcfbf8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 1.5rem 0 1rem 0;
}

.privacy-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-highlight {
    background-color: #242424;
    padding: 1rem;
    border-left: 4px solid #292929;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.privacy-contact-box {
    background: #242424;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.privacy-contact-box h3 {
    color: #fcfbf8;
    margin-bottom: 1rem;
}

.privacy-contact-email {
    color: #fcfbf8;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.privacy-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    color: #d4d4d4;
    font-size: 0.9rem;
}

/* Media queries consolidated - see mobile-queries.css */


/* ===================================
   COMPARE PLANS TABLE
   =================================== */

.compare-plans-section {
    padding: 6rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: rgba(27, 27, 27, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(252, 251, 248, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(31, 50, 125, 0.3) 0%, rgba(26, 40, 99, 0.2) 100%);
    color: #fcfbf8;
}

.comparison-table thead th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-right: 1px solid rgba(252, 251, 248, 0.1);
}

.comparison-table thead th:last-child {
    border-right: none;
}

.comparison-table thead .feature-column {
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

.comparison-table thead .featured-column {
    background: rgba(31, 50, 125, 0.4);
    white-space: nowrap;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(252, 251, 248, 0.08);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(252, 251, 248, 0.03);
}

.comparison-table tbody td {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 1rem;
    color: #d4d4d4;
}

.comparison-table tbody .feature-name {
    text-align: left;
    font-weight: 600;
    color: #fcfbf8;
    background: transparent;
}

.comparison-table tbody .featured-column {
    background: rgba(33, 33, 33, 0.02);
}

.comparison-table .fa-check {
    color: #fcfbf8;
    font-size: 1.3rem;
}

.comparison-table .fa-times {
    color: #dc3545;
    font-size: 1.3rem;
    opacity: 0.5;
}

.comparison-table .cta-row {
    background: #fafafa;
    border-top: 2px solid #212121;
}

.comparison-table .cta-row td {
    padding: 1.5rem 1rem;
}

.table-cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #1f327d;
    color: #fcfbf8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.table-cta-button:hover {
    background: #1a2863;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 109, 199, 0.3);
}

.table-cta-button.featured {
    background: linear-gradient(135deg, #1f327d 0%, #1a2863 100%);
    box-shadow: 0 4px 15px rgba(0, 109, 199, 0.4);
}

.table-cta-button.featured:hover {
    box-shadow: 0 8px 25px rgba(0, 109, 199, 0.5);
}


/* Media queries consolidated - see mobile-queries.css */

/* About Section Styles */
.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: -100px;
    width: 100%;
    height: calc(100% + 200px);
    z-index: -1;
    pointer-events: none;
}

.about-section .container {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 1296px;
    max-width: 100%;
    margin: 0 auto;
}

.about-left {
    flex: 0 0 calc(47% - 30px);
}

.about-right {
    flex: 0 0 calc(50% - 30px);
}

.about-img {
    width: 85%;
    height: auto;
}

.about-title {
    font-size: 4rem;
    margin-bottom: 24px;
    color: #fcfbf8;
    font-weight: 700;
    white-space: nowrap;
}

.about-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #d4d4d4;
    margin-left: 5px;
    font-weight: 400;
}

.about-description strong {
    color: #e0e0e0;
    font-weight: 700;
}

/* ========================================
   TRUSTED BRANDS - STATIC
   ======================================== */
.trusted-brands {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.trusted-brands-title {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a0a0a0;
    margin-bottom: 40px;
    font-weight: 500;
}

.brands-carousel {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-track {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.brand-item {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
}

.brand-logo {
    max-width: 200px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 10px;
    border-radius: 8px;
}

.brand-logo-large {
    max-width: 280px !important;
    max-height: 110px !important;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES - MOBILE OPTIMIZED
   ========================================
   Consolidated and organized by breakpoint
   Mobile-first approach for better performance
   ======================================== */

/* ========================================
   EXTRA SMALL DEVICES - Phones (< 576px)
   Base styles - mobile first
   ======================================== */

@media (max-width: 575px) {
    /* Header & Navigation */
    .header-content {
        padding: 0.25rem 1rem;
        grid-template-columns: auto 1fr auto;
    }

    .logo-img {
        height: 45px;
        margin: 0 auto;
        display: block;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .nav-logo a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-menu {
        display: none;
    }

    .button-contactar {
        display: none;
    }

    .header-right {
        position: absolute;
        right: 1rem;
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .lang-switcher-pill {
        font-size: 0.85rem;
        padding: 6px 10px;
        gap: 6px;
    }

    /* Show mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: 1rem;
    }

    /* Mobile menu responsiveness */
    .mobile-nav-link {
        font-size: 1.75rem;
    }

    .mobile-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .mobile-footer-title {
        font-size: 0.7rem;
    }

    .mobile-footer-column a {
        font-size: 0.8rem;
    }

    /* Hero Section */
    .header-hero-wrapper {
        min-height: 100vh;
    }

    .hero {
        padding: 100px 20px 60px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title-highlight {
        font-size: 48px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-title-text {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-description {
        font-size: 0.9rem;
        margin: 1rem auto;
        line-height: 1.5;
        text-align: center;
    }

    .hero-button {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
        margin: 0 auto;
    }

    .hero-right {
        order: -1;
    }

    .hero-image {
        max-width: 300px;
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    /* Process Section */
    .process-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 20px;
    }

    .process-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nosotros-grid {
        gap: 1.25rem;
    }

    .nosotros-item {
        min-height: 200px;
        padding: 1.5rem;
    }

    .card__icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }

    .nosotros-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }

    .step-item {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .process-cta {
        flex-wrap: wrap;
        border-radius: 16px;
    }

    .process-cta-button {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Features Section */
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* CTA Contact Section */
    .cta-contact {
        padding: 3rem 1.5rem;
    }

    .cta-contact-content {
        padding: 1.5rem 1.5rem;
        margin: 0;
    }

    .cta-contact-content h3 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .cta-contact-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-contact-button {
        padding: 15px 30px;
        font-size: 1rem;
    }


    /* Multistep Contact */
    .progress-indicator {
        padding: 0rem 2rem 0rem 2rem;
    }

    .step-indicator {
        flex: 1;
    }

    .step-indicator .step-number-form {
        width: 45px;
        height: 45px;
        font-size: 1rem !important;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .progress-bar {
        top: 22.5px;
        left: 2.25rem;
        right: 2.25rem;
    }

    .contact-form-container {
        padding: 2.5rem 2rem;
    }

    .contact-step-content h2 {
        font-size: 1.75rem;
    }

    .contact-step-content p {
        font-size: 1rem;
    }

    .contact-form-navigation {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .contact-form-navigation .contact-btn {
        flex: 1;
        justify-content: center;
    }

    .multistep-container {
        width: min(700px, calc(100vw - 3rem));
        margin: 0 auto;
    }

    .multistep-contact {
        padding: 0;
        background-attachment: scroll;
        min-height: 100vh;
    }

    .contact-main-block {
        min-height: 100vh;
        padding: 0;
    }

    .success-message {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .success-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .success-content i {
        font-size: 3rem;
    }

    .success-content h2 {
        font-size: 2rem;
    }

    .success-content .contact-btn-primary {
        width: 100%;
        max-width: 200px;
        padding: 12px 24px;
    }

    /* Pricing Section */
    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .plan-icon {
        width: 60px;
        height: 60px;
    }

    .plan-icon i {
        font-size: 1.5rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    /* FAQ Section */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-container {
        gap: 1rem;
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .faq-item {
        padding: 1rem;
        max-width: 100%;
    }

    .faq-title {
        font-size: 1.1rem;
    }

    .faq-description {
        padding: 0;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }


    /* Premium CTA Section Mobile */
    .cta-section-premium {
        padding: 2.5rem 0;
        margin: 2rem auto 1rem;
    }

    .cta-content-premium {
        padding: 0 2rem;
    }

    .cta-main-col {
        max-width: 100%;
    }

    .cta-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .cta-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .benefit-card {
        padding: 1rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-content h4 {
        font-size: 0.95rem;
    }

    .benefit-content p {
        font-size: 0.85rem;
    }

    .cta-actions-premium {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-btn-primary,
    .cta-btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .cta-trust-signals {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .cta-stats-card {
        padding: 1.5rem;
    }

    .stats-header h3 {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .stat-item-premium {
        padding: 1rem 0;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-number-premium {
        font-size: 1.9rem;
    }

    .stat-label-premium {
        font-size: 0.85rem;
    }

    .cta-testimonial {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    /* Comparison Table */
    .comparison-table-wrapper {
        margin: 2rem -1rem 0 -1rem;
        border-radius: 0;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }

    /* Add scroll indicator gradient */
    .comparison-table-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50px;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .comparison-table {
        font-size: 0.9rem;
        min-width: 800px;
    }

    .comparison-table thead th {
        padding: 1.3rem 0.9rem;
        font-size: 1rem;
        line-height: 1.3;
    }

    .comparison-table tbody td {
        padding: 1.2rem 0.9rem;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .comparison-table tbody .feature-name {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Make first column sticky */
    .comparison-table thead th:first-child {
        position: sticky;
        left: 0;
        z-index: 10;
        background: #212121;
        box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
        min-width: 170px;
        max-width: 170px;
        color: #ffffff;
    }

    .comparison-table tbody td:first-child,
    .comparison-table tbody .feature-name {
        position: sticky;
        left: 0;
        z-index: 10;
        background: #ffffff !important;
        backdrop-filter: blur(10px);
        box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
        min-width: 170px;
        max-width: 170px;
        font-weight: 600;
        color: #1a1a1a !important;
        border-right: 2px solid rgba(0, 0, 0, 0.1);
    }

    /* Mejorar contraste de las celdas en mobile */
    .comparison-table tbody td {
        background: rgba(255, 255, 255, 0.95);
        color: #1a1a1a;
    }

    /* Alternar colores de filas para mejor legibilidad */
    .comparison-table tbody tr:nth-child(even) td {
        background: rgba(248, 248, 248, 0.95);
    }

    .comparison-table tbody tr:nth-child(even) td:first-child,
    .comparison-table tbody tr:nth-child(even) .feature-name {
        background: #fafafa !important;
    }

    .comparison-table thead .feature-column {
        font-size: 0.9rem;
    }

    /* Headers de columnas con mejor contraste */
    .comparison-table thead th {
        background: #1a1a1a;
        color: #ffffff;
    }

    .comparison-table thead .featured-column {
        background: #2563eb;
    }

    /* Improve check/times icons visibility */
    .comparison-table .fa-check {
        font-size: 1.4rem;
        color: #16a34a;
    }

    .comparison-table .fa-times {
        font-size: 1.2rem;
        color: #dc2626;
        opacity: 0.4;
    }

    .table-cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .compare-plans-section {
        padding: 4rem 0;
    }

    /* Terms & Privacy Pages */
    .tyc-container,
    .privacy-container {
        padding: 1.5rem;
    }

    .tyc-title,
    .privacy-title {
        font-size: 2rem;
    }

    .tyc-section,
    .privacy-section {
        padding: 1rem 0;
    }

    .tyc-contact-box,
    .privacy-contact-box {
        padding: 1.5rem;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-img {
        width: 85%;
        margin-left: 2rem;
    }

    .about-left,
    .about-right {
        flex: 1 1 100%;
    }

    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    /* Footer */
    .footer-modern {
        padding: 25px 20px 15px;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 25px;
    }

    .footer-center {
        position: relative;
        left: auto;
        transform: none;
        margin: 30px 0;
        top: auto;
    }

    .footer-right {
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-phone {
        text-align: center;
    }

    .footer-left {
        margin-bottom: 20px;
    }

    .footer-left p {
        font-size: 15px;
    }

    .footer-center-logo {
        width: 120px;
    }

    .footer-updates {
        display: inline-flex;
        font-size: 17.6px;
        padding: 8px 16px;
    }

    .footer-social-links a {
        font-size: 17.6px;
    }

    .company-name {
        font-size: 17.6px;
    }

    .footer-info {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 17.6px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-link {
        width: 50px;
        height: 50px;
    }

    .whatsapp-link i {
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Footer Modern - Mobile */
    /* Ocultar footer principal en mobile (se usa el del mobile-menu) */
    .footer-modern {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-tagline {
        max-width: 100%;
        text-align: center;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-cta {
        align-items: center;
        text-align: center;
    }

    .footer-cta-title {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-location {
        padding-left: 0;
        border-left: none;
    }

    .footer-language-switcher {
        margin: 0 auto;
    }

    /* Trusted Brands - Mobile */
    .trusted-brands {
        margin-top: 40px;
    }

    .brands-track {
        gap: 30px;
        flex-direction: column;
    }

    .brand-item {
        min-width: 140px;
        height: 60px;
    }

    .brand-logo {
        max-width: 180px;
        max-height: 65px;
    }

    .brand-logo-large {
        max-width: 180px !important;
        max-height: 65px !important;
    }
}

/* ========================================
   SMALL DEVICES - Large Phones (576px - 767px)
   ======================================== */

@media (min-width: 576px) and (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .button-contactar {
        display: none;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header-right {
        position: absolute;
        right: 1rem;
    }

    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title-highlight {
        font-size: 45px;
        text-align: center;
    }

    .hero-title-text {
        font-size: 35px;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
    }

    .hero-button {
        padding: 14px 28px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-right {
        order: -1;
    }

    .hero-image {
        max-width: 350px;
        margin: 0 auto;
    }

    /* Process Section */
    .step-item {
        padding: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Footer Modern - Ocultar en mobile */
    .footer-modern {
        display: none;
    }
}

/* ========================================
   MEDIUM DEVICES - Tablets (768px - 991px)
   ======================================== */

@media (min-width: 768px) and (max-width: 991px) {
    /* Header & Navigation */
    .header-content {
        padding: 0.25rem 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        grid-template-columns: 1fr;
    }

    .nav-logo {
        justify-self: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-logo a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-img {
        margin: 0 auto;
    }

    .nav-menu {
        display: none;
    }

    .button-contactar {
        display: none;
    }

    /* Hero Section */
    .header-hero-wrapper {
        min-height: 100vh;
    }

    .hero {
        padding: 120px 20px 80px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title-highlight {
        font-size: 60px;
        text-align: center;
    }

    .hero-title-text {
        font-size: 45px;
        text-align: center;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 1.5rem auto;
        text-align: center;
    }

    .hero-button {
        margin: 0 auto;
    }

    .hero-right {
        order: -1;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Process Section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nosotros-grid {
        gap: 1.25rem;
    }

    .nosotros-item {
        min-height: 210px;
        padding: 1.75rem;
    }

    .card__icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 1.25rem;
    }

    .nosotros-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    /* Layout */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact */
    .contact {
        padding: 80px 0;
    }

    .contact-context h3 {
        font-size: 2.5rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
    }

    .contact-steps {
        min-width: auto;
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .progress-indicator {
        padding: 0 1.5rem;
    }

    .step-indicator .step-number-form {
        width: 40px;
        height: 40px;
        font-size: 0.9rem !important;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .progress-bar {
        top: 20px;
        left: 2.75rem;
        right: 2.75rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    /* CTA Contact */
    .cta-contact {
        padding: 4rem 0;
    }

    .cta-contact-content h3 {
        font-size: 2.5rem;
    }

    .cta-contact-content p {
        font-size: 1.1rem;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-link {
        width: 50px;
        height: 50px;
    }

    .whatsapp-link i {
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Footer Modern - Tablet */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-cta {
        align-items: center;
        text-align: center;
    }

    .footer-cta-title {
        text-align: center;
    }

    /* Trusted Brands - Tablet */
    .trusted-brands {
        margin-top: 60px;
        padding-top: 40px;
    }

    .trusted-brands-title {
        font-size: 0.875rem;
        margin-bottom: 30px;
    }

    .brands-track {
        gap: 50px;
        max-width: 100%;
        padding: 0 20px;
    }

    .brand-item {
        min-width: 120px;
        height: 60px;
    }

    .brand-logo {
        max-width: 200px;
        max-height: 70px;
    }

    .brand-logo-large {
        max-width: 200px !important;
        max-height: 70px !important;
    }
}

/* ========================================
   LARGE DEVICES - Small Desktops (992px - 1199px)
   ======================================== */

@media (min-width: 992px) and (max-width: 1199px) {
    .header-content {
        padding: 0.25rem 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-button {
        font-size: 1rem;
    }

    .hero {
        padding: 120px 40px 80px 40px;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-title-highlight {
        font-size: 70px;
    }

    .hero-title-text {
        font-size: 55px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ========================================
   EXTRA LARGE DEVICES - Large Desktops (1200px+)
   ======================================== */

@media (min-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   COOKIE CONSENT TOAST
   ======================================== */

.cookie-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-toast-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
              0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 90vw;
}

.cookie-toast-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 400;
}

.cookie-toast-button {
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: none;
}

.cookie-toast-button:active {
  transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-toast {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
  }

  .cookie-toast-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    max-width: none;
  }

  .cookie-toast-button {
    width: 100%;
    padding: 0.625rem;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .particles-canvas {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .cookie-toast {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .cookie-toast-content {
    padding: 0.875rem;
    gap: 0.625rem;
  }

  .particles-canvas {
    display: none !important;
  }

  .cookie-toast-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .cookie-toast-button {
    padding: 0.5rem;
    font-size: 0.8125rem;
  }
}

/* ================================
   MODERN CONTACT FORM STYLES
   ================================ */

/* Contact Section Container */
.contact-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 109, 199, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section-page {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-section-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 109, 199, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section .container,
.contact-section-page .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .contact-title {
    padding-top: 1rem;
  }

  .particles-canvas {
    display: none !important;
  }
}

.contact-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column Layout */
.contact-two-column {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: start;
}

/* Steps Column (Left) */
.contact-steps-column {
  position: sticky;
  top: 120px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.steps-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 109, 199, 0.3);
  transform: translateX(8px);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #006dc7;
  line-height: 1;
  min-width: 50px;
  opacity: 0.8;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Form Column (Right) */
.contact-form-column {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Form Wrapper */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

/* Form Group */
.form-group {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Input Styles */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #006dc7;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 4px rgba(0, 109, 199, 0.1),
    0 8px 24px rgba(0, 109, 199, 0.15);
}

.form-group textarea {
  min-height: 140px;
  line-height: 1.6;
}

/* Submit Button */
.form-submit-btn {
  width: 100%;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #006dc7 0%, #0054a6 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(0, 109, 199, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px rgba(0, 109, 199, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-submit-btn:hover::before {
  left: 100%;
}

.form-submit-btn:active {
  transform: translateY(-1px);
  box-shadow:
    0 8px 20px rgba(0, 109, 199, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit-btn .btn-text,
.form-submit-btn .btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Loading Spinner */
.loading-spinner {
  animation: spin 1s linear infinite;
}

.loading-spinner .loading-track {
  stroke: rgba(255, 255, 255, 0.2);
}

.loading-spinner .loading-car {
  stroke: #ffffff;
  stroke-dasharray: 75, 25;
  stroke-dashoffset: 0;
  animation: spinDash 1.5s ease-in-out infinite;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
  font-weight: 500;
  min-width: 300px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  border-left: 4px solid #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(20, 20, 30, 0.95) 100%);
}

.toast-error {
  border-left: 4px solid #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(20, 20, 30, 0.95) 100%);
}

.toast-info {
  border-left: 4px solid #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(20, 20, 30, 0.95) 100%);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinDash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-section-page {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  /* Two Column becomes Single Column on mobile */
  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .contact-steps-column {
    position: relative;
    top: 0;
  }

  .steps-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }

  .steps-list {
    gap: 20px;
  }

  .step-item {
    padding: 16px;
  }

  .step-number {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-description {
    font-size: 0.875rem;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.9375rem;
  }

  .form-submit-btn {
    padding: 16px 28px;
    font-size: 0.9375rem;
  }

  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .toast {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 16px;
  }

  .contact-section-page {
    padding: 80px 16px 40px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .form-submit-btn {
    padding: 14px 24px;
    font-size: 0.875rem;
  }
}
