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

/* Importar Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0db2c756c9c896e272d_founders-grotesk-condensed-medium.woff2)format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e39bb63e57bbfe4ab1_founders-grotesk-condensed-regular.woff2)format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e9b73b1390605d01fb_founders-grotesk-condensed-semibold.woff2)format("woff2");font-weight:600;font-style:normal;font-display:swap}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2c2e2f;
    background: #ffffff;
    overflow-x: hidden;
    letter-spacing: -0.1px;
}

h1,h2,h3 {
    font-family: Founders Grotesk Condensed,'Poppins', Roboto;
    text-transform: uppercase;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e6e6e6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #010101;
}

.logo span {
    color: #ff5d15;
}

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

/* Botones */
.btn {
    padding: 20px 34px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 17px;
}

.btn-primary {
    background: #ff5d1e;
    color: white;
    border: 2px solid #fff;
}

.btn-primary:hover {
    opacity: #ff4c00;
}

.btn-primary::after {
    content: "→";
    font-size: 20px;
    transition: transform 0.2s;
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: #010101;
    border: 2px solid #010101;
}

header .btn-secondary {
    color: #010101;
    border: 2px solid #010101;
}

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

/* Hero Section */
.hero {
    background: #f6f8fa url("../assets/mountain.png") no-repeat center center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
  font-size: 94px;
  line-height: 78px;
  margin-bottom: 32px;
  color: #010101;
  font-weight: 900;
  letter-spacing: -2px;
  margin-top: 60px;
}

.hero-text {
    margin-bottom: 60px;
}

.hero-text p {
    font-size: 21px;
    color: #010101;
    margin-bottom: 48px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
}

/* Feature Sections - ARREGLADO */
.feature-section {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
}

.feature-section:nth-child(3) {
    background: #f5f7fa;
}

.feature-section:nth-child(5) {
    background: #f5f7fa;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-content.reverse {
    direction: rtl;
}

.feature-content.reverse > * {
    direction: ltr;
}

.feature-text h2 {
  font-size: 72px;
  line-height: 65px;
  margin-bottom: 32px;
  color: #010101;
  font-weight: 700;
  letter-spacing: -1px;
}

.feature-text p {
    font-size: 20px;
    color: #010101;
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-visual {
    height: 450px;
    position: relative;
}

/* Feature Grid - Landing Page Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.feature-item:hover {
    border-color: #ff5d15;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #ff5d15 0%, #6d28d9 100%);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon-wrapper svg path,
.feature-item:hover .feature-icon-wrapper svg rect,
.feature-item:hover .feature-icon-wrapper svg circle {
    stroke: #ffffff;
    fill: #ffffff;
}

.feature-item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.feature-item-content h4 {
    color: #1f2937;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.feature-item-content p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #F7F8FB;
    text-align: center;
}

.pricing-header h2 {
   font-size: 72px;
  line-height: 65px;
  margin-bottom: 32px;
  color: #010101;
  font-weight: 700;
  letter-spacing: -1px;
}

.pricing-header p {
    font-size: 22px;
    color: #010101;
    margin-bottom: 80px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e6e6e6;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.pricing-card.featured {
    border-color: #010101;
    border-width: 3px;
    position: relative;
}

.plan-features li::before {
    color: #ff5d1e!important;
}

.lang-switch {
  position: relative;
  display: inline-block;
  font-family: inherit;
}

.lang-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-btn:hover {
  border-color: #ff5d15;
  color: #ff5d15;
}

.lang-btn i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.lang-switch.active .lang-btn i {
  transform: rotate(180deg);
  color: #ff5d15;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  list-style: none;
  padding: 6px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 20;
}

.lang-switch.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  margin: 4px 0;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lang-dropdown a span {
  font-size: 0.85rem;
  color: #888;
}

.lang-dropdown a:hover {
  background: #ff5d15;
  color: #fff;
}

.lang-dropdown a.active {
  background: #ff5d15;
  color: #fff;
}


.featured-badge {
    position: absolute;
    top: -16px;
    left: 32px;
    background: #010101;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #010101;
}

.plan-price {
    font-size: 34px;
    font-weight: 700;
    color: #010101;
    margin-bottom: 8px;
}

.plan-price span {
    font-size: 22px;
    color: #010101;
    font-weight: 400;
}

.plan-description {
    color: #010101;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    color: #2c2e2f;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
}

.plan-features li:before {
    content: "✓";
    color: #ff5d15;
    font-weight: 700;
    margin-right: 16px;
    font-size: 22px;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: #ff5d1e;
    text-align: center;
}

.cta h2 {
    font-size: 72px;
  line-height: 65px;
  margin-bottom: 32px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -1px;
}

.cta p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 48px;
}

.cta .btn-primary {
    background-color: #ff5d1e;
}

.cta .btn-primary:hover {
    border-color: transparent;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h2 {
    font-size: 72px;
  line-height: 65px;
  margin-bottom: 32px;
  color: #010101;
  font-weight: 700;
  letter-spacing: -1px;
}

.faq-header p {
    font-size: 22px;
    color: #010101;
}

.faq-grid {
   max-width: 1200px;  /* Cambiar de 900px a 1200px */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* AÑADIR: 2 columnas */
    gap: 24px;  /* Cambiar de 16px a 24px */
    column-gap: 40px;  /* AÑADIR: separación entre columnas */
}

.faq-item {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #ff5d15;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #010101;
    text-align: left;
    transition: all 0.2s;
}

.faq-question:hover {
    color: #ff5d15;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #ff5d15;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e6e6e6;
}

.faq-cta p {
    font-size: 20px;
    color: #2c2e2f;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Footer */
footer {
    background: #010101;
    color: #ffffff;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-logo span {
    color: #ff5d15;
}

.footer-description {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #ff5d15;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2e2e2e;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-text {
    color: #a0a0a0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #1f2937;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.language-btn:hover {
    border-color: #ff5d15;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    transform: translateY(-1px);
}

.language-selector.active .language-btn {
    border-color: #ff5d15;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.language-icon {
    font-size: 20px;
    line-height: 1;
}

.language-arrow {
    font-size: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b7280;
}

.language-selector.active .language-arrow {
    transform: rotate(180deg);
    color: #ff5d15;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: #1f2937;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
}

.language-dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ff5d15;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.language-dropdown a:hover {
    background: #f9fafb;
    color: #ff5d15;
}

.language-dropdown a:hover::before {
    transform: scaleY(1);
}

.language-dropdown a.active {
    background: #f5f3ff;
    color: #ff5d15;
    font-weight: 600;
}

.language-dropdown a.active::before {
    transform: scaleY(1);
}

.language-dropdown .language-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.language-name {
    flex: 1;
    font-weight: 500;
}

.language-code {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 6px;
}

.language-dropdown a:hover .language-code {
    background: #ede9fe;
    color: #ff5d15;
}

.language-dropdown a.active .language-code {
    background: #ff5d15;
    color: #ffffff;
}

.language-dropdown a.active::after {
    content: "✓";
    color: #ff5d15;
    font-weight: 700;
    font-size: 16px;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-content,
    .feature-content,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 67px;
        line-height: 55px;
        margin-top: 0px!important;
    }
    .hero-visual svg {
        margin-top: 0px;
    }

    .hero {
        padding-bottom: 10px;
    }

    .logo svg {
        width: 180px!important;
    }

    h2 {
        font-size: 52px!important;
        line-height: 44px!important;
    }

    .container {
        padding: 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .faq-header h2 {
        font-size: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-icon {
        font-size: 24px;
    }
}

/* Fix para que los círculos decorativos del SVG no se corten */
.hero {
    overflow: visible;
    position: relative;
}

.hero .container {
    overflow: visible;
}

.hero-content {
    overflow: visible;
}

.hero-visual {
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 750px;
}

.hero-visual svg {
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-visual {
        min-height: 650px;
    }
}

@media (max-width: 968px) {
    .hero-visual {
        min-height: 500px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
}

.pricing-card .btn-secondary {
    border: 2px solid #ff5d15;
  color: #ff5d15;
}

.pricing-card .btn-secondary:hover {
    border: 2px solid #ff5d15;
  color: #ff5d15;
  background: transparent;
}

@media (max-width: 768px) {
    .hero-visual {
        min-height: 400px;
        padding-bottom: 30px;
    }
    .faq-grid {
        display:block;
    }
    .faq-item {
        margin-bottom: 6px;
    }
}

/* REVIEWS SECTION CSS */
.reviews-section {
    padding: 80px 0 100px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.reviews-header h2 {
    font-size: 72px;
    line-height: 65px;
    font-weight: 700;
    color: #010101;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2.b-b {
    font-size: 84px!important;
    line-height: 70px;
}

.reviews-header p {
    font-size: 20px;
    color: #010101;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.carousel-track {
    display: flex;
    gap: 24px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */
.review-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    min-width: 420px;
    max-width: 420px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    border-color: #ff5d15;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

/* Stars */
.review-stars {
    display: flex;
    gap: 4px;
    color: #ff5d15;
    font-size: 20px;
}

/* Review Text */
.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    flex-grow: 1;
}

/* Reviewer Info */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #f3f4f6;
}

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

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.reviewer-business {
    font-size: 14px;
    color: #6b7280;
}

/* Trust Badge */
.trust-badge {
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff5d15;
    line-height: 1;
}

.trust-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .reviews-header h2 {
        font-size: 44px;
        line-height: 44px;
    }

    .review-card {
        min-width: 340px;
        max-width: 340px;
        padding: 24px;
    }

    .trust-stats {
        gap: 40px;
    }

    .trust-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-header {
        margin-bottom: 40px;
    }

    .review-card {
        min-width: 300px;
        max-width: 300px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    header .btn-secondary {
        display: none!important;
    }
    header .btn {
  padding: 20px 34px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
  .hero-text p {
  font-size: 18px;
  color: #010101;
  margin-bottom: 48px;
  line-height: 1.3;
}
.hero-buttons .btn {
  padding: 16px 24px;
}
.hero {
    padding: 60px 0 0px;
  }
 .hero-visual {
    min-height: 300px;
  }
  .feature-section {
  padding: 60px 0;
}
.feature-text {
    width: 100%;
}
.feature-content img {
    width: 100%;
    margin-top: -50px;
}
.feature-text p {
  font-size: 17px;
  color: #010101;
  line-height: 1.3;
  margin-bottom: 32px;
}
.hero-visual {
    min-height: 100px;
}
.feature-visual {
    height: auto;
}
.pricing {
    padding: 0px;
    padding-bottom: 50px;
}
.faq {
    padding-top: 50px;
}
.footer-column:nth-child(2), .footer-column:nth-child(3), .footer-column:nth-child(4) {
    display: none;
}
h2.b-b {
    font-size: 54px!important;
}
.cta {
    padding: 60px 0;
}
.btn-primary {
    display: flex;
}
}

/* ================================
   NAVIGATION RESPONSIVE STYLES
   ================================ */

/* Base Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: #010101;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5d15;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff5d15;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ff5d15;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #010101;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Tablet and Below - 968px */
@media (max-width: 968px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 40px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 17px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    /* Navigation Buttons - Move to mobile menu */
    .nav-buttons {
        position: fixed;
        bottom: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        background: #ffffff;
        padding: 20px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-top: 1px solid #e6e6e6;
        flex-direction: column;
        gap: 12px;
    }

    .nav-buttons.active {
        right: 0;
    }

    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Language selector in mobile */
    .lang-switch {
        width: 100%;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Menu Overlay */
    body.mobile-menu-open::before {
  content: '';
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: transparent;
  z-index: 998; /* ⬅️ menor que el menú */
  pointer-events: none; /* ⬅️ no bloquea clicks */
  animation: fadeIn 0.3s ease;
}


    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Prevent scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .nav-menu {
        top: 63px;
        height: calc(100vh - 73px);
        max-width: 100%;
    }
    .pricing {
        padding-top: 50px!important;
    }

    .nav-buttons {
        max-width: 100%;
    }

    header .btn-secondary {
        display: flex !important;
    }

    .logo svg {
        width: 200px !important;
    }

    body.mobile-menu-open::before {
        top: 73px;
        height: calc(100vh - 73px);
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .nav-menu {
        padding: 30px 20px;
    }

    .nav-buttons {
        padding: 15px 20px;
    }

    .nav-link {
        font-size: 21px;
        padding: 16px 0;
        font-weight: 500;
    }
}

/* Desktop Large - Better spacing */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 50px;
    }

    .nav-link {
        font-size: 18px;
    }
}

/* ================================
   NAVIGATION RESPONSIVE STYLES
   ================================ */

/* Base Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: #010101;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5d15;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff5d15;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ff5d15;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #010101;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active .hamburger-line {
    background: #ff5d15;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Tablet and Below - 968px */
@media (max-width: 968px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop navigation */
    .nav-menu {
        position: fixed;
        top: 63px;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 40px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        width: 100%;
        color: #010101;
    }

    .nav-link::after {
        display: none;
    }

    /* Navigation Buttons - Move to mobile menu */
    .nav-buttons {
        position: fixed;
        bottom: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        background: #ffffff;
        padding: 20px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid #e6e6e6;
        flex-direction: column;
        gap: 12px;
    }

    .nav-buttons.active {
        right: 0;
    }

    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Language selector in mobile */
    .lang-switch {
        width: 100%;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
    }

    /* Prevent scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .nav-menu {
        top: 63px;
        height: calc(100vh - 73px);
        max-width: 100%;
    }

    .nav-buttons {
        max-width: 100%;
    }

    header .btn-secondary {
        display: flex !important;
    }

    .logo svg {
        width: 180px !important;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .nav-menu {
        padding: 30px 20px;
    }

    .nav-buttons {
        padding: 15px 20px;
    }

    .nav-link {
        font-size: 21px;
        padding: 16px 0;
        font-weight: 500;
    }
}

/* Desktop Large - Better spacing */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 50px;
    }

    .nav-link {
        font-size: 18px;
    }
}


.nav-menu {
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-buttons {
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.nav-buttons.active {
  transform: translateX(0);
}


/* ================================
   PRICING SECTION - 3 COLUMNS
   ================================ */

/* Override the default 4-column grid to 3 columns */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
    max-width: 100% !important;
    margin: 0 auto;
}

/* Ensure cards take full height */
.pricing-card {
    background: #ffffff;
    border: 2px solid #e6e6e6;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: #010101;
    border-width: 3px;
    position: relative;
}

/* Ensure features list grows to fill space */
.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Button at bottom of card */
.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Large Desktop - Optimized spacing */
@media (min-width: 1400px) {
    .pricing-cards {
        gap: 32px;
    }
    
    .pricing-card {
        padding: 48px 40px;
    }
}

/* Tablet Landscape - 2 columns */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 900px;
        margin: 0 auto;
    }
    
    /* Make third card span full width */
    .pricing-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Tablet Portrait - Still 2 columns */
@media (max-width: 968px) {
    .pricing {
        padding: 80px 0 !important;
    }

    .pricing-header h2 {
        font-size: 52px !important;
        line-height: 48px !important;
    }

    .pricing-header p {
        font-size: 18px !important;
        margin-bottom: 60px !important;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    /* Enterprise section responsive */
    .pricing .container > div[style*="gradient"] {
        padding: 40px 30px !important;
        margin: 50px 0 30px 0 !important;
    }

    .pricing .container > div[style*="gradient"] h3 {
        font-size: 40px !important;
    }
    
    .pricing .container > div[style*="gradient"] > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Mobile - 1 column CRITICAL */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0 40px 0 !important;
    }

    .pricing-header {
        margin-bottom: 40px;
    }

    .pricing-header h2 {
        font-size: 40px !important;
        line-height: 38px !important;
        margin-bottom: 16px !important;
    }

    .pricing-header p {
        font-size: 16px !important;
        margin-bottom: 40px !important;
    }

    /* CRITICAL: Force 1 column on mobile */
    .pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .pricing-card {
        padding: 28px 20px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Reset third card special styling */
    .pricing-card:nth-child(3) {
        grid-column: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Adjust card content for mobile */
    .plan-name {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .plan-price {
        font-size: 32px !important;
        margin-bottom: 8px !important;
    }

    .plan-price span {
        font-size: 18px !important;
    }

    .plan-description {
        font-size: 15px !important;
        margin-bottom: 24px !important;
        line-height: 1.5 !important;
    }

    .plan-features {
        margin-bottom: 24px !important;
    }

    .plan-features li {
        padding: 10px 0 !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .plan-features li:before {
        font-size: 18px !important;
        margin-right: 12px !important;
    }

    /* Featured badge mobile */
    .featured-badge {
        font-size: 13px !important;
        padding: 6px 18px !important;
        top: -14px !important;
        left: 20px !important;
    }

    /* Button mobile */
    .pricing-card .btn {
        padding: 16px 28px !important;
        font-size: 16px !important;
    }

    /* Enterprise section mobile */
    .pricing .container > div[style*="gradient"] {
        padding: 30px 20px !important;
        margin: 40px 0 20px 0 !important;
        border-radius: 16px !important;
    }

    .pricing .container > div[style*="gradient"] h3 {
        font-size: 32px !important;
        line-height: 36px !important;
        margin-bottom: 12px !important;
    }

    .pricing .container > div[style*="gradient"] .plan-price {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }

    .pricing .container > div[style*="gradient"] p {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .pricing .container > div[style*="gradient"] > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }

    .pricing .container > div[style*="gradient"] > div[style*="display: grid"] > div {
        padding: 15px !important;
    }

    .pricing .container > div[style*="gradient"] > div[style*="display: grid"] > div > div {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    /* Terms section mobile */
    .pricing .container > div[style*="background-color: #ffffff"] {
        padding: 24px 20px !important;
        margin: 30px 0 0 0 !important;
        border-radius: 12px !important;
    }

    .pricing .container > div[style*="background-color: #ffffff"] p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .pricing .container > div[style*="background-color: #ffffff"] p strong {
        font-size: 15px !important;
    }

    .pricing .container > div[style*="background-color: #ffffff"] p:last-child {
        font-size: 13px !important;
    }
}

/* Small Mobile - Ultra optimized */
@media (max-width: 480px) {
    .pricing {
        padding: 40px 0 30px 0 !important;
    }

    .pricing-header h2 {
        font-size: 32px !important;
        line-height: 34px !important;
    }

    .pricing-header p {
        font-size: 15px !important;
    }

    .pricing-cards {
        gap: 16px !important;
    }

    .pricing-card {
        padding: 24px 18px !important;
    }

    .plan-name {
        font-size: 20px !important;
    }

    .plan-price {
        font-size: 28px !important;
    }

    .plan-price span {
        font-size: 16px !important;
    }

    .plan-features li {
        font-size: 13px !important;
    }

    .pricing .container > div[style*="gradient"] h3 {
        font-size: 28px !important;
        line-height: 32px !important;
    }

    .pricing .container > div[style*="gradient"] .btn {
        padding: 14px 32px !important;
        font-size: 16px !important;
    }
}

/* Print styles */
@media print {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        page-break-inside: avoid;
    }
    
    .pricing-card {
        page-break-inside: avoid;
        border: 1px solid #000;
    }
}

