/* ============================================
   PrestamosCloud Landing - Exact Figma Design
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --blue-primary: #0071d8;
    --cyan-accent: #00d0ff;
    --bg-header: #e2e8f0;
    --bg-steps: radial-gradient(circle, rgba(14,52,86,1) 33.654%, rgba(6,40,70,1) 100%);
    --text-black: #000;
    --text-gray: #808080;
    --text-gray-light: #bfbfbf;
    --border-card: rgba(238,238,238,0.5);
    --bg-pink-subtle: rgba(255,139,148,0.15);
    --bg-gray-product: rgba(191,191,191,0.15);
    --footer-bg: linear-gradient(31deg,rgba(0, 113, 216, 1) 49%, rgba(0, 208, 255, 1) 100%);

    --gradient-text: linear-gradient(90deg, #0071d8 18.269%, #00d0ff 68.269%);
    --gradient-border: linear-gradient(180deg,rgba(0, 113, 216, 1) 39%, rgba(0, 208, 255, 1) 100%);
    --gradient-login: linear-gradient(108.307deg, #0071d8 23.927%, #00d0ff 105.89%);
    --gradient-cta-hero: linear-gradient(-90deg, #00d0ff 14.63%, #0071d8 57.846%);
    --gradient-cta-feature: linear-gradient(101.31deg, #0071d8 14.904%, #00d0ff 100%);


    --shadow-card: 0px 5px 20px -12px rgba(0,0,0,0.25);
    --shadow-badge: 0px 5px 20px -10px rgba(0,0,0,0.25);
    --shadow-testimonial: 0px 5px 30px -15px rgba(0,0,0,0.25);
    --shadow-hero-img: 0px 10px 10px -9px rgba(0,0,0,0.25);
    --shadow-steps: 0px 10px 50px -30px rgba(0,0,0,0.25);
    --shadow-faq-icon: 0px 3px 10px -4px rgba(0,0,0,0.25);
    --shadow-product-white: 0px 4px 30px 7px rgba(255,255,255,0.25);

    --radius-pill: 50px;
    --radius-card: 10px;
    --radius-img: 8px;
    --radius-faq: 5px;

    --font-main: 'Montserrat', sans-serif;
    --font-alt: 'Inter', sans-serif;
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo {
    width: 260px;
    animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-spinner {
    width: 36px;
    height: 36px;
    border: 3.5px solid #e9e9e9;
    border-top-color: #0071d8;
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: var(--text-black);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
/* ul { list-style: none; } */
img { max-width: 100%; height: auto; display: block; }

/* === UTILITY CLASSES === */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: var(--text-black);
    line-height: 1.3;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-black);
    text-align: center;
    margin-bottom: 30px;
}

.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--bg-header);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    background-color: #ffffff;
}

.header-inner {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 30px; width: 174px; object-fit: contain; }

.navbar {
    display: flex;
    gap: 30px;
    margin: 0 auto;
}

.nav-link {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-black);
    transition: color 0.3s;
}

.nav-link:hover { color: var(--blue-primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions-mobile{
    display: none;
}

.btn-register-header {
    width: 120px;
    height: 30px;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--blue-primary);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.btn-register-header::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--blue-primary);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.btn-register-header:hover::after {
    opacity: 1;
}

.btn-login-header {
    width: 131px;
    height: 30px;
    border-radius: var(--radius-pill);
    background: var(--gradient-login);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-login-header:hover { opacity: 0.9; }
.btn-login-header .arrow-icon { width: 14px; height: 14px; filter: brightness(0) invert(1); }

.nav-actions { display: none; }

/* === MEGA MENU === */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.nav-chevron {
    font-size: 14px;
    transition: transform 0.25s ease;
    line-height: 1;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.active .nav-chevron {
    transform: rotate(180deg);
}

.mega-menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100vw;
    background: #fff;
    border-top: 2px solid #0071d8;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 28px 40px 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 998;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 6px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.mega-item:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
}

.mega-item img {
    width: 100%;
    max-width: 120px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e8edf2;
    transition: border-color 0.2s ease;
}

.mega-item:hover img {
    border-color: #0071d8;
}

.mega-item span {
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    text-align: center;
    line-height: 1.3;
}

.mega-item:hover span {
    color: #0071d8;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle i {
    font-size: 28px;
    color: var(--text-black);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* === HERO === */
.hero {
    padding-top: 50px;
    background: var(--bg-header);
    position: relative;
    overflow: hidden;
}

.shape{
    position: absolute;
    width: 90px;
}

.shape.triangle-shape{
    bottom: 80px;
    left: 130px;
}

.shape.circle-shape{
    top: 100px;
    right: 630px;
}

.shape.rectangle-shape{
    bottom: -20px;
    right: 0;
    width: 350px;
}

.hero-bg {
    width: 100%;
    min-height: 800px;
    position: relative;
}

.hero-content {
    width: 100%;
    margin: 0 auto;
    padding: 64px 100px 0 150px;
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: 674px;
}

.hero-left {
    flex: 0 0 700px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: var(--radius-pill);
    padding: 4px 15px;
    box-shadow: var(--shadow-badge);
    margin-bottom: 20px;
}

.hero-badge img { width: 12px; height: 12px; }
.hero-badge span { font-size: 9px; font-weight: 500; color: var(--text-black); }

.hero-h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.15;
    margin-bottom: 0;
}

.hero-h2 {
    font-size: 5em;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-black);
    line-height: 1.7;
    max-width: 538px;
    margin-bottom: 25px;
}

.hero-description b{
    font-weight: 600;
}

.hero-description span { font-weight: 300; }

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    border-radius: var(--radius-pill);
    background: var(--gradient-cta-hero);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,113,216,0.3);
}

.hero-cta .arrow-icon { width: 14px; height: 14px; filter: brightness(0) invert(1); }

.hero-social-proof {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.hero-proof{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatars .avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -5px;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-avatars .avatar:nth-child(1) {
    background-color: var(--blue-primary);
}

.hero-avatars .avatar:nth-child(2) {
    background-color: #D8A200;
}

.hero-avatars .avatar:nth-child(3) {
    background-color: #D84F00;
}

.hero-avatars .avatar:nth-child(4) {
    background-color: #00B8D8;
}

.hero-avatars .avatar:nth-child(5) {
    background-color: #9E00D8;
}

.hero-avatars .avatar:nth-child(5) {
    background-color: #9E00D8;
}

.hero-avatars .avatar span{
    font-size: 0.6em;
    font-weight: 500;
    color: #fff;
}

.hero-avatars .avatar-count {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: #fff;
    font-family: var(--font-alt);
    font-size: 9px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
    border: 2px solid #fff;
}

.hero-social-proof .stars{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
}

.hero-social-proof .stars .star{
    width: 14px;
}

.hero-social-proof .stars{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
}

.hero-proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.hero-proof-text span {
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font-alt);
}

.hero-proof-text span.gray { font-weight: 300; color: var(--text-gray); }
.hero-proof-text span.blue { color: var(--blue-primary); }

.hero-right {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.hero-right img{
    object-fit: fill;
    max-width: 700px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -120px;
}

.hero-gradient-bar {
    position: absolute;
    bottom: -95px;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, #fff 100%);
    z-index: 1;
}

.hero-gradient-bar .wave{
    width: 100%;
    object-fit: cover;
}

/* === HOW IT WORKS === */
.how-works {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.how-works-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-container {
    display: flex;
    background: var(--bg-steps);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-steps);
    overflow: hidden;
    margin-top: 25px;
    position: relative;
}

.step {
    flex: 1;
    padding: 25px 20px;
    text-align: left;
    position: relative;
}

.curved-lines{
    position: absolute;
    width: 100%;
    height: 100%;
}

.step-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.step-icon img { width: 100%; height: 100%; filter: brightness(0) invert(1); }

.step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.step p {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    opacity: 0.85;
}

/* === FINTECH AI STATEMENT === */
.fintech-ai-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #f0f7ff 0%, #e8f4fd 30%, #fff 50%, #eef6ff 70%, #f5faff 100%);
}

/* Floating gradient orbs */
.fintech-ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.fintech-ai-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0071d8, transparent 70%);
    top: -10%;
    right: -8%;
    animation: fintechOrbFloat1 20s ease-in-out infinite;
}

.fintech-ai-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d0ff, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: fintechOrbFloat2 18s ease-in-out infinite;
}

.fintech-ai-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #0056b3, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fintechOrbFloat3 22s ease-in-out infinite;
}

@keyframes fintechOrbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 30px); }
    66% { transform: translate(20px, -20px); }
}

@keyframes fintechOrbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -25px); }
    66% { transform: translate(-20px, 15px); }
}

@keyframes fintechOrbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.15); }
}

/* Decorative shapes */
.fintech-ai-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.07;
    z-index: 0;
}

.fintech-ai-shape--circles {
    width: 220px;
    top: 8%;
    left: 5%;
    animation: fintechShapeRotate 30s linear infinite;
}

.fintech-ai-shape--triangle {
    width: 180px;
    bottom: 10%;
    right: 6%;
    animation: fintechShapeRotate 25s linear infinite reverse;
}

.fintech-ai-shape--midcircle-1 {
    width: 120px;
    top: 15%;
    right: 12%;
    opacity: 0.12;
    animation: fintechShapeBob 8s ease-in-out infinite;
}

.fintech-ai-shape--midcircle-2 {
    width: 100px;
    bottom: 18%;
    left: 10%;
    opacity: 0.12;
    animation: fintechShapeBob 10s ease-in-out infinite 2s;
}

@keyframes fintechShapeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fintechShapeBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.fintech-ai-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.fintech-ai-text {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0071d8 0%, #00d0ff 30%, #0056b3 50%, #00d0ff 70%, #0071d8 100%);
    background-size: 200% 200%;
    animation: fintechTextGradient 15s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fintechTextGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === TRASLADOS === */

.traslados-section {
    padding: 60px 0 80px;
    text-align: center;
    min-height: 850px;
    position: relative;
    overflow: hidden;
}

.traslados-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    text-align: left !important;
}

.traslados-inner .section-title {
    text-align: left !important;
}

.traslados-inner .section-subtitle {
    text-align: left !important;
}

.step-img{
    position: absolute;
    right: 50%;
    top: 100px;
    transform: translateX(50%);
    width: 100%;
    max-width: 1250px;
}

.step-img-mobile{
    display: none;
    width: 90%;
}


/* === CUENTAS DE AHORRO === */

.ahorro-section {
    padding: 60px 0 80px;
    text-align: center;
    min-height: 850px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #f0f7ff 0%, #fafafa 25%, #fff 50%, #f5faff 75%, #fafafa 100%);
}

/* Gradient orbs */
.ahorro-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.ahorro-orb--1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #0071d8, transparent 70%);
    top: -8%;
    right: -5%;
    animation: ahorroOrbFloat1 22s ease-in-out infinite;
}

.ahorro-orb--2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #00d0ff, transparent 70%);
    bottom: -5%;
    left: -6%;
    animation: ahorroOrbFloat2 18s ease-in-out infinite;
}

.ahorro-orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #0071d8, transparent 70%);
    top: 45%;
    left: 15%;
    opacity: 0.22;
    animation: ahorroOrbFloat3 25s ease-in-out infinite;
}

.ahorro-orb--4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00d0ff, transparent 70%);
    top: 20%;
    right: 10%;
    opacity: 0.20;
    animation: ahorroOrbFloat4 20s ease-in-out infinite;
}

@keyframes ahorroOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 25px) scale(1.05); }
    66% { transform: translate(15px, -15px) scale(0.95); }
}

@keyframes ahorroOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.08); }
    66% { transform: translate(-15px, 12px) scale(0.96); }
}

@keyframes ahorroOrbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -25px); }
}

@keyframes ahorroOrbFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-18px, 20px); }
}

/* Decorative shapes */
.ahorro-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
    z-index: 0;
}

.ahorro-shape--circles {
    width: 180px;
    top: 5%;
    left: 3%;
    animation: ahorroShapeRotate 35s linear infinite;
}

.ahorro-shape--triangle {
    width: 150px;
    bottom: 8%;
    right: 4%;
    animation: ahorroShapeRotate 28s linear infinite reverse;
}

.ahorro-shape--midcircle-1 {
    width: 130px;
    bottom: 12%;
    left: -30px;
    opacity: 0.1;
    animation: ahorroShapeBob 9s ease-in-out infinite;
}

.ahorro-shape--midcircle-2 {
    width: 110px;
    top: 10%;
    right: -20px;
    opacity: 0.1;
    animation: ahorroShapeBob 11s ease-in-out infinite 2s;
}

@keyframes ahorroShapeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ahorroShapeBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.ahorro-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.container-stepper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-stepper .stepper{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
}

.stepper-item{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
}

.stepper-item .stepper-img{
    width: 90%;
}

.stepper-item .stepper-img img{
    width: 100%;
}

.stepper-item .stepper-content{
    text-align: left !important;
    padding: 0 0 0 15px;
}

.stepper-item .stepper-content p{
    margin: 5px 0 0 0;
}

.stepper-item .stepper-content ul{
    list-style: none;
    margin: 10px 0 0 0;
}

.stepper-item .stepper-content ul li{
    margin: 5px 0 0 0;
}

/* === DATACREDITO === */

.datacredit {
    padding: 60px 0 80px;
    text-align: center;
    background: var(--footer-bg);
    min-height: 850px;
    position: relative;
    overflow: hidden;
}

.datacredit-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    color: #fff !important;
}

.datacredit-inner .section-label,
.datacredit-inner .section-title,
.datacredit-inner .section-subtitle{
    color: #fff !important;
}

.datacredit-info__container{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.datacredit-img{
    position: absolute;
    right: -5px;
    bottom: -125px;
    width: 100%;
    max-width: 1550px;
}

.datacredit-img-mobile{
    width: 100%;
    display: none;
}


.dt-midcircle-yellow{
    position: absolute;
    transform: rotate(125deg);
    top: -40px;
    left: -70px;
    width: 300px;
}

.dt-circles{
    position: absolute;
    right: 65px;
    top: 50px;
}

.btn-free-try.datacredit-btn-try{
    background: #fff !important;
}

.btn-free-try.datacredit-btn-try .gradient-text{
    background: var(--gradient-text);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.btn-free-try{
    display: flex !important;
    justify-content: center;
    align-items: center;
    border: none;
    height: 40px;
    padding: 0 20px;
    border-radius: 50px;
    white-space: nowrap;
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background: var(--gradient-cta-feature);
    width: min-content;
}

.btn-free-try .gradient-text{
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.btn-free-try:hover{
    transform: scale(1.05);
    filter: saturate(1.2);
}

/* === SERVICES === */
.services {
    padding: 60px 0 80px;
    text-align: center;
    background: #fff;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
    padding: 15px;
    text-align: left;
    transition: transform 0.3s;
    min-height: 185px;
}

.service-card:hover { transform: translateY(-3px); }

.service-card:last-child {
    grid-column: auto;
}

.service-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.service-card:nth-child(1) .service-card-icon {
    background-color: #1B85B815;
}

.service-card:nth-child(2) .service-card-icon {
    background-color: #A8E6CF15;
}

.service-card:nth-child(3) .service-card-icon {
    background-color: #BD677B15;
}

.service-card:nth-child(4) .service-card-icon {
    background-color: #AE5A4115;
}

.service-card:nth-child(5) .service-card-icon {
    background-color: #FFAAA515;
}

.service-card:nth-child(6) .service-card-icon {
    background-color: #68C4AF15;
}

.service-card:nth-child(7) .service-card-icon {
    background-color: #FF8B9415;
}

.service-card:nth-child(8) .service-card-icon {
    background-color: #6768B215;
}

.service-card:nth-child(9) .service-card-icon {
    background-color: #C3CB7115;
}

.service-card:nth-child(10) .service-card-icon {
    background-color: #FFBD7915;
}

.service-card-icon .icon-service{
    width: 20px;
    height: 20px;
}

.service-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 6px;
}

.service-card p {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-black);
    line-height: 1.6;
}

/* === FEATURE SHOWCASE === */
.feature-showcase {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.fs-triangles {
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 120px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.fs-circles {
    position: absolute;
    top: 8%;
    right: 5%;
    width: 150px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.fs-midcircle-yellow {
    position: absolute;
    top: 12%;
    left: -158px;
    width: 400px;
    pointer-events: none;
    z-index: 0;
    transform: rotate(90deg);
}

.fs-midcircle-blue {
    position: absolute;
    bottom: 10%;
    right: -168px;
    width: 350px;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-90deg);
}

.feature-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
    text-align: left;
}

.swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0071d8 !important;
    background: transparent !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.swiper-button-next { right: 12px; }
.swiper-button-prev { left: 12px; }

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #00d0ff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-next::after {
    content: '\203A';
}

.swiper-button-prev::after {
    content: '\2039';
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #ffffff;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 10px;
    padding: 25px;
}

.swiper-slide:not(.swiper-slide-active) {
    visibility: hidden;
}

.swiper-inner__content{
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-gap: 20px;
}

.swiper-inner__content .swiper-left{
    width: 100%;
    height: 450px;
    position: relative;
    overflow: visible;
}

.swiper-inner__content .swiper-left img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.fs-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 80px 30px rgba(0, 113, 216, 0.35), 0 0 150px 60px rgba(0, 208, 255, 0.2);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.08); }
}

.swiper-inner__content .swiper-right{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.swiper-inner__content .swiper-right .feature-title{
    font-size: 1.5em;
    font-weight: 700;
    width: 100%;
    text-align: left;
    line-height: 1.5;
    color: linear-gradient(90deg,rgba(0, 113, 216, 1) 25%, rgba(0, 208, 255, 1) 62%) !important;
}

.more-information{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 300px;
    margin: 10px 0 0 0;
}

.more-information a{
    width: 100%;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.more-information a:hover{
    transform: scale(1.05);
}

.more-information a img{
    width: 100%;
}

.feature-desc {
    font-size: 0.8em;
    font-weight: 300;
    color: var(--text-black);
    margin-bottom: 18px;
    text-align: left;
}

.feature-list {
    margin-bottom: 25px;
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    text-align: left !important;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.8em;
    font-weight: 300;
    color: var(--text-black);
    line-height: 1.6;
    margin-bottom: 4px;
}

.feature-list li::before {
    content: '◦';
    flex-shrink: 0;
    color: var(--blue-primary);
    font-size: 1.2em;
    line-height: 1.4;
}

.btn-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 30px;
    gap: 20px;
    border-radius: var(--radius-pill);
    background: var(--gradient-cta-feature);
    color: #fff;
    font-size: 0.7em;
    font-weight: 500;
    white-space: nowrap;
    width: 100%;
    grid-column: span 2;
}

.btn-feature img{
    width: 18px !important;
}


/* === AVAILABILITY === */
.availability {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    /* max-height: 900px; */
    height: 100vh;
    background-image: url('../imgs/countries.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.availability-mobile {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    max-height: 900px;
    display: none;
}

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

.availability-inner__mobile {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.countries-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.country{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.country .country-img__container{
    width: 40px;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    
}

.country .country-img__container img{
    width: 100%;
    object-fit: contain;
}

.country .c-title{
    font-size: 0.9em;
    white-space: nowrap;
}

/* === PRODUCTS === */
.products {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.products-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.products-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.product-img {
    flex: 1;
    max-width: 340px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}

.product-img:hover { transform: translateY(-3px); }

.slides-nav {
    margin-top: 20px;
}

.slides-nav img { margin: 0 auto; height: 10px; }

/* === TESTIMONIALS === */
.testimonials {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.testimonials-inner {
    margin: 0 auto;
    padding: 0 100px;
}

.testimonials-inner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 70px;
    margin-top: 25px;
}

.testimonial-left{
    min-width: 600px;
    position: relative;
    display: flex;
    justify-content: center;
}

.testimonial-left .resume{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    bottom: 30px;
}

.testimonial-left .resume .resume-item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
}

.testimonial-left .resume .resume-item .icon{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #ffffff20;
}

.testimonial-left .resume .resume-item .icon img{
    width: 26px;
}

.testimonial-left .resume .resume-item .item-title{
    font-size: 1.5em;
    color: #fff;
    font-weight: 600;
}

.testimonial-left .resume .resume-item .item-subtitle{
    font-size: 0.8em;
    color: #ffffff;
    font-weight: 400;
}

.testimonial-left img{
    width: 100%;
}

.testimonial-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
}

.testimonial-card {
    background: #fff;
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    box-shadow: var(--shadow-testimonial);
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: transform 0.3s;
    max-width: 485px;
    position: relative;
}

.testimonial-card::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: var(--gradient-border);
}

.testimonial-card:nth-child(2), 
.testimonial-card:nth-child(4) {
    margin: 0 0 0 -50px;
}

.testimonial-card:hover { transform: translateY(-2px); }

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info { flex: 1; }

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 6px;
    gap: 10px;
}

.testimonial-info-user {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.testimonial-top .stars{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 4px 0 0 0;
    gap: 2px;
}

.testimonial-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-black);
}

.testimonial-role {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-gray);
    display: block;
    text-align: left;
}

.testimonial-stars { height: 12px; width: auto; }

.testimonial-quote {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-black);
    line-height: 1.6;
    text-align: left;
}

/* === CTA SECTION === */
.cta-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 60px;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    background: var(--bg-steps);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-lines{
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    z-index: -1;
}

.cta-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-subheading{
    text-align: left;
    font-size: 0.8em !important;
}

.cta-subtitle{
    text-align: left;
    color: #fff;
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 28px;
    border-radius: 10px;
    background: var(--gradient-cta-hero);
    box-shadow: #ffffff33 0px 8px 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn-cta-primary:hover { 
    filter: saturate(1.5);
    transform: scale(1.05); 
}

/* === PRICING === */
.pricing {
    padding: 60px 0 80px;
    background: #F8F8F8;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.pricing .circles-shape{
    position: absolute;
    top: 30px;
    right: 90px;
}

.pricing .triangles-shape{
    position: absolute;
    bottom: 30px;
    left: 90px;
}

.pricing .shape-midcircle{
    position: absolute;
    width: 450px;
}

.pricing .shape-midcircle.shape-midcircle-1{
    position: absolute;
    left: 75%;
    bottom: 250px;
    transform: translate(-50%, -50%) rotate(120deg);
}

.pricing .shape-midcircle.shape-midcircle-2{
    position: absolute;
    right: 45%;
    bottom: 130px;
    transform: translate(-50%, -50%) rotate(-120deg);
}

.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-tabs {
    display: inline-flex;
    background: #e9e9e9;
    border-radius: 50px;
    padding: 4px;
    margin-top: 25px;
    gap: 4px;
}

.pricing-tab {
    padding: 10px 28px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.pricing-tab.active {
    background: var(--gradient-login);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 113, 216, 0.25);
}

.pricing-tab:hover:not(.active) {
    color: var(--text-black);
}

.pricing-scroll-wrapper {
    margin-top: 30px;
    position: relative;
}

.pricing-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 15px 5px 25px;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-primary) #e0e0e0;
}

.pricing-scroll::-webkit-scrollbar {
    height: 6px;
}

.pricing-scroll::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.pricing-scroll::-webkit-scrollbar-thumb {
    background: var(--blue-primary);
    border-radius: 10px;
}

.pricing-scroll > .pricing-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 240px;
    scroll-snap-align: start;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform 0.3s;
    /* overflow: hidden; */
    z-index: 2;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
    border: 2px solid var(--blue-primary);
    box-shadow: 0 10px 40px rgba(0,113,216,0.15);
}

.pricing-card.featured:hover { transform: translateY(-4px); }

.btn-pricing-cta {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--gradient-login);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-pricing-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.pricing-card-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    opacity: 0.3;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-login);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 16px;
    /* width: 100%; */
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    z-index: 1;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 2px;
    letter-spacing: 1px;
    text-align: left;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.currency { font-size: 20px; font-weight: 600; }
.amount { font-size: 48px; font-weight: 900; line-height: 1; }
.period { font-size: 14px; color: var(--text-gray); font-family: var(--font-alt); }

.plan-desc {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 300;
    text-align: left;
}

.plan-features { text-align: left; margin-bottom: 25px; }

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-black);
    font-weight: 400;
}

.plan-features li i.bx-check { color: #559E83; font-size: 18px; }
.plan-features li i.bx-x { color: #F00000; font-size: 18px; }

.btn-plan {
    display: block;
    width: 100%;
    height: 38px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    border: 1.5px solid var(--blue-primary);
    color: var(--blue-primary);
    transition: all 0.3s;
}

.btn-plan:hover { background: var(--blue-primary); color: #fff; }

.btn-plan.featured {
    background: var(--gradient-login);
    color: #fff;
    border: none;
}

.btn-plan.featured:hover { opacity: 0.9; }

/* === FAQ === */
.faq {
    padding: 60px 0 80px;
    background: #fff;
    position: relative;
}

.faq .faq-lines{
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    z-index: 1;
    transform: scale(1.1);
}

.faq .faq-lines-2{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    transform: scale(1.1) rotate(180deg);
}

.faq .question-icon{
    position: absolute;
    bottom: 150px;
    right: -10px;
    width: 150px;
}

.faq .question-icon-2{
    position: absolute;
    top: 190px;
    left: 80px;
    width: 60px;
}

.faq-inner {
    max-width: 700px;
    min-height: 650px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.faq-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 25px;
    text-align: left;
}

.faq-questions { 
    flex: 1; 
    z-index: 2;
}

.faq-item {
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover { box-shadow: var(--shadow-faq-icon); }

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover { background: rgba(0,113,216,0.03); }

.faq-icon-box {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-faq);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-faq-icon);
    background: #fff;
}

.faq-icon-box img { width: 20px; height: 20px; }

.faq-question span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-black);
}

.faq-question .chevron {
    font-size: 20px;
    color: var(--blue-primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question .chevron { transform: rotate(180deg); }

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

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 16px 16px 63px;
}

.faq-answer p {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-black);
    line-height: 1.7;
}

.faq-answer .prints-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    padding: 10px;
}

.faq-answer .prints-list .print{
    flex: 1;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    transition: all 0.3s ease-in-out;
}

.faq-answer .prints-list .print:hover{
    transform: scale(1.05);
}

.faq-answer .prints-list .print .img-print__container{
    border-radius: 10px;
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #BFBFBF15;
}

.faq-answer .prints-list .print .img-print__container img{
    width: 100px;
    object-fit: fill;
}

.faq-answer .prints-list .print .print-name{
    font-size: 0.8em;
    font-weight: 600;
    margin: 5px 0 0 0;
}

.faq-answer .prints-list .print .print-model{
    font-size: 0.7em;
    font-weight: 400;
    color: #494949;
}

/* === FOOTER === */
.footer {
    background: var(--footer-bg);
    color: #fff;
    padding: 50px 0 0;
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 35px;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 18px;
}

.social-links { display: flex; gap: 10px; }

.social-links a {
    background-color: #ffffff15;
    padding: 10px;
    border: 1px solid #ffffff25;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.social-links a img {
    width: 20px;
    height: 20px;
}

.social-links a:hover { 
    background-color: #ffffff30; 
    transform: scale(1.05);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    font-size: 12px;
    color: #ffffff;
    padding: 3px 0;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}

.footer-links a:hover { 
    transform: scale(1.05); 
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 300;
}

.contact-item img { width: 16px; height: 16px; }

.app-downloads { display: flex; gap: 8px; margin-top: 18px; }

.app-badge img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.app-badge:hover img { transform: scale(1.05); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: #fff;
    font-weight: 300;
}

/* === CLIENTES CAROUSEL === */
.clientes-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.clientes-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.clientes-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 150s linear infinite;
}

.cliente-logo {
    flex-shrink: 0;
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.cliente-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.cliente-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

/* === FACTURACION ELECTRONICA === */
.facturacion-section {
    padding: 120px 0;
    background: url('../imgs/fondo-facturacion.png') center center / cover no-repeat;
    position: relative;
    /* overflow-x: hidden; */
    overflow-y: visible;
    z-index: 2;
    display: none;
}

.facturacion-section.visible {
    display: block;
}

.facturacion-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.fe-cards-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.fe-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    flex: 1;
    max-width: 480px;
    min-height: 570px;
    overflow: visible;
}

.fe-card-left {
    transform: translateY(-30px);
    padding-top: 70px;
}

.fe-card-right {
    transform: translateY(150px);
}

.fe-card-content {
    position: static;
}

/* Sello DGII */
.fe-stamp-wrapper {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.fe-stamp-img {
    width: 170px;
    height: auto;
}

.fe-stamp-right {
    top: -100px;
    left: auto;
    right: -100px;
    transform: none;
}

.fe-stamp-right .fe-stamp-img {
    width: 200px;
}

/* Titulo tarjeta izquierda */
.fe-title {
    font-family: var(--font-main);
    font-size: 38px;
    font-weight: 900;
    color: #0a1e3d;
    text-align: center;
    line-height: 1.1;
    margin-top: 5px;
}

.fe-title-underline {
    width: 80%;
    height: 6px;
    background: #f1c40f;
    margin: 12px auto 25px;
    border-radius: 3px;
}

/* Costos */
.fe-costs {
    margin-bottom: 25px;
    text-align: center;
}

.fe-cost-item {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.fe-price-highlight {
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 16px;
}

.fe-gratis {
    color: var(--blue-primary);
    font-weight: 700;
    text-decoration: underline;
    font-size: 16px;
}

/* Paquetes titulo */
.fe-packages-title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 800;
    color: #0a1e3d;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Barras de paquetes */
.fe-packages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.fe-package-row {
    display: flex;
    align-items: stretch;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fe-package-bar {
    flex: 1;
    background: linear-gradient(90deg, var(--blue-primary) 0%, #3a9bd5 100%);
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    z-index: 2;
}

.fe-package-qty {
    font-weight: 800;
    font-size: 16px;
    color: #f1c40f;
}

.fe-package-price {
    background: #f1c40f;
    color: #0a1e3d;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 14px 10px 25px;
    min-width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin:  0 0 0 -17px;
    z-index: 1;
}

.fe-package-price span {
    font-size: 11px;
    font-weight: 600;
    text-transform: lowercase;
}

/* Tagline */
.fe-tagline {
    font-size: 16px;
    color: #0a1e3d;
    text-align: center;
    margin-bottom: 20px;
}

/* Logos */
.fe-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding-top: 15px;
}

.fe-logo {
    height: 28px;
    width: auto;
}

/* VentasCloud logo CSS */
.fe-ventascloud-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fe-vc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    border-radius: 4px;
}

.fe-vc-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.3px;
}

.fe-vc-text sup {
    font-size: 8px;
}

/* ===== TARJETA DERECHA ===== */
.fe-card-right .fe-card-content {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 520px;
}

.fe-promo-text {
    flex: 1;
    padding-right: 40%;
}

.fe-promo-line1 {
    font-size: 22px;
    color: #0a1e3d;
    line-height: 1.3;
    margin-bottom: 8px;
}

.fe-promo-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 900;
    color: var(--blue-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.fe-promo-underline {
    width: 220px;
    height: 6px;
    background: linear-gradient(90deg, var(--blue-primary) 60%, var(--cyan-accent) 100%);
    border-radius: 3px;
    margin-bottom: 20px;
}

.fe-promo-tagline {
    font-size: 26px;
    color: #0a1e3d;
    line-height: 1.2;
    margin-bottom: 15px;
}

.fe-contact-box {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 5px;
}

/* Ilustracion laptop */
.fe-illustration {
    position: absolute;
    bottom: 70px;
    right: -25px;
    width: 58%;
    pointer-events: none;
}

.fe-laptop-img {
    width: 100%;
    height: auto;
}

/* Logos tarjeta derecha */
.fe-logos-right {
    position: absolute;
    bottom: 30px;
    left: 35px;
    right: 35px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px 0;
    padding-top: 0;
}

.fe-logo-cs {
    height: 60px;
    margin: 0 0 10px 0;
}

.fe-logos-sub {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-free-try__facturation{
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 50px;
    background: var(--gradient-cta-feature);
    margin: 15px 0 0 0;
    white-space: nowrap;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.btn-free-try__facturation:hover{
    filter: saturate(1.2);
    transform: scale(1.03);
}

/* === RESPONSIVE === */

@media (width >= 1500px) {
    .hero-gradient-bar {
        bottom: -15px !important;
    }
}

@media (width >= 1281px){
    .hero-gradient-bar {
        bottom: -60px;
        height: 130px;
    }
}

@media (width >= 1120px){
    .lines-dashed {
        left: 320px;
    }
}

@media (width <= 1280px) {
    .hero-content { padding: 50px 40px 0 60px; }
    .hero-left { flex: 0 0 520px; }
    .hero-h1 { font-size: 2em; }
    .hero-h2 { font-size: 3.8em; }
    .hero-description { font-size: 13px; max-width: 460px; }
    .hero-right { min-height: 500px; }
    .hero-right img { max-width: 550px; bottom: -125px; }
    .hero-bg { min-height: 680px; }
    .hero-content { min-height: 580px; }
    .shape.rectangle-shape { width: 250px; bottom: -20px; }
    .hero-gradient-bar { bottom: -77px; height: 140px; }

}

@media(width <= 1120px){
    .testimonial-left {
        min-width: 485px;
    }
}

@media (max-width: 1024px) {
    .hero-content { flex-direction: column; padding: 40px 40px 0; }
    .hero-left { flex: none; width: 100%; text-align: center; }
    .hero-description { margin: 0 auto 25px; max-width: 538px; }
    .hero-cta { margin: 0 auto 30px; }
    .hero-social-proof { justify-content: center; }
    .hero-right { display: none; }
    .hero-bg { min-height: 600px; }
    .hero-content { min-height: auto; }
    .shape.rectangle-shape { width: 220px; bottom: -85px; }
    .hero-gradient-bar { bottom: -60px; height: 105px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:last-child { grid-column: auto; }
    .mega-menu-grid { grid-template-columns: repeat(5, 1fr); }
    .feature-content { flex-direction: column; }
    .feature-image { flex: none; width: 100%; max-width: 534px; margin: 0 auto; }
    .swiper-inner__content { grid-template-columns: 350px 1fr; }
    .swiper-inner__content .swiper-left { height: 400px; }
    .pricing-scroll > .pricing-card { flex: 0 0 calc((100% - 40px) / 3); }
    .faq-container { flex-direction: column; }
    .faq-illustration { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 550px; margin: 25px auto 0; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .fe-cards-container { gap: 25px; }
    .fe-card { padding: 30px 25px; }
    .fe-card-left { transform: translateY(-10px); }
    .fe-card-right { transform: translateY(25px); }
    .fe-title { font-size: 30px; }
    .fe-promo-title { font-size: 28px; }
    .fe-promo-tagline { font-size: 18px; }

}

@media (width <= 821px) {
    .menu-toggle { display: flex; }
    .header-actions { display: none; }

    .header-inner{
        justify-content: space-between;
    }

    .header-actions-mobile{
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .navbar {
        position: fixed;
        top: 50px;
        right: 0;
        width: 280px;
        height: calc(100vh - 50px);
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 20px 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar.open { transform: translateX(0); }

    .nav-link {
        font-size: 15px;
        padding: 14px 30px;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link:hover {
        background: #f5f9ff;
    }

    /* Mega menu mobile */
    .nav-dropdown {
        flex-direction: column;
        width: 100%;
    }

    .nav-link--dropdown {
        width: 100%;
        justify-content: space-between;
        padding-right: 30px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding: 0 16px 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .nav-dropdown.active .mega-menu {
        max-height: 500px;
        padding: 12px 16px 16px;
        overflow-y: auto;
    }

    .nav-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
    }

    .nav-dropdown:hover.active .mega-menu {
        max-height: 500px;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .mega-item img {
        height: 52px;
    }

    .mega-item span {
        font-size: 10px;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px 30px;
        margin-top: auto;
    }

    .nav-actions .btn-register-header {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    .nav-actions .btn-register-header::after { opacity: 1; }

    .nav-actions .btn-login-header {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    .hero-social-proof{
        align-items: center;
    }

    .hero-gradient-bar { 
        bottom: -75px; 
    }

    .availability {
        display: none;
    }

    .availability-mobile {
        display: block;
    }

    .swiper {
        height: auto;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }

    .swiper-slide {
        padding: 20px;
    }

    .swiper-inner__content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .swiper-inner__content .swiper-left {
        height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }

    .swiper-inner__content .swiper-right .feature-title {
        text-align: center;
    }

    .swiper-inner__content .swiper-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-desc {
        text-align: center;
        font-size: 0.85em;
    }

    .feature-list {
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .more-information {
        width: 100%;
        max-width: 300px;
    }

    .testimonials-inner{
        padding: 0 30px;
    }

    .testimonials-inner-content{
        flex-direction: column;
    }

    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(4){
        margin: 0 !important;
    }

    .testimonial-left{
        min-width: 400px;
        width: 100%;
    }

    .fe-stamp-img {
        width: 135px;
        height: auto;
    }

    .datacredit-img{
        display: none;
    }

    .datacredit-img-mobile{
        display: block;
    }

    /* Pricing - 1 card visible, centrada */
    .pricing-scroll-wrapper { margin-top: 20px; }
    .pricing-scroll > .pricing-card { flex: 0 0 min(450px, 80%); min-width: unset; }
    .pricing-scroll { scroll-padding: 0 10%; }
    .pricing-scroll > .pricing-card { scroll-snap-align: center; }

    .step-img {
        top: 200px;
    }

    .stepper-item .stepper-content h3{
        font-size: 0.9em;
    }
    .stepper-item .stepper-content p{
        font-size: 0.8em;
    }

    .stepper-item .stepper-img{
        width: 75%;
    }

}

@media (width <= 768px) {
    .hero-h1 { font-size: 28px; }
    .hero-h2 { font-size: 45px; }
    .section-title { font-size: 24px; }
    .steps-container { flex-direction: column; }
    .step:not(:last-child)::after { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .products-row { flex-direction: column; align-items: center; }
    .product-img { max-width: 300px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .fe-cards-container { flex-direction: column; align-items: center; }
    .fe-card { max-width: 450px; width: 100%; min-height: auto; }
    .fe-card-left { transform: none; padding-top: 70px; }
    .fe-card-right { transform: none; }
    .facturacion-section { padding: 80px 0 60px; }
    .fe-promo-text { padding-right: 0; }
    /* .fe-illustration { position: relative; bottom: auto; right: auto; width: 80%; margin: 20px auto 0; } */
    .fe-card-right .fe-card-content { min-height: auto; }
    .fe-logos-right { position: relative; margin-top: 35px; }
    .dt-circles{display: none;}
    .dt-midcircle-yellow{display: none;}

}

@media (width <= 575px){

    .traslados-inner {
        text-align: center !important;
        align-items: center;
    }

    .traslados-inner .section-title {
        text-align: center !important;
    }

    .traslados-inner .section-subtitle {
        text-align: center !important;
    }

    .stepper{
        display: none;
    }

    .stepper-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0 0 25px 0;
        background-color: #fff;
        padding: 20px 10px;
        border: 1px solid #fafafa;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    }

    .stepper-item:nth-child(3){
        flex-direction: column-reverse;
    }

    .stepper-item .stepper-content{
        text-align: center !important;
        padding: 0;
    }


    .step-img{
        display: none;
    }

    .step-img-mobile{
        display: block;
    }

    .fe-stamp-right {
        top: -60px;
        right: -60px;
    }

    .fe-stamp-right .fe-stamp-img {
        width: 160px;
    }

    .shape.rectangle-shape{
        bottom: -80px;
        right: 0;
        width: 200px;
    }

    .shape.triangle-shape{
        left: 70px;
    }

    .hero-gradient-bar {
        bottom: -60px;
    }

    .hero-gradient-bar .wave{
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .hero-bg{
        min-height: 550px;
    }

    .curved-lines{
        display: none;
    }

    .step{
        text-align: center;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .service-card{
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fs-circles{
        width: 75px;
        top: 3%;
    }

    .fs-midcircle-yellow{
        width: 200px;
        left: -80px;
    }

    .fs-midcircle-blue{
        width: 200px;
        right: -100px;
    }

    .swiper-inner__content{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .swiper-slide {
        padding: 15px;
    }

    .swiper-inner__content .swiper-left {
        height: 250px;
        max-width: 320px;
        margin: 0 auto;
    }

    .feature-desc, .feature-list{
        display: none;
    }

    .swiper {
        height: auto;
    }

    .swiper-inner__content .swiper-right .feature-title{
        text-align: center;
        font-size: 1.2em;
    }

    .swiper-inner__content .swiper-right{
        align-items: center;
    }

    .more-information {
        width: 100%;
        max-width: 280px;
    }

    .more-information a img {
        height: 35px;
    }

    .cta-section{
        padding: 60px 20px;
    }

    .cta-inner{
        padding: 30px;
        flex-direction: column;
    }

    .cta-info{
        align-items: center;
    }

    .cta-title{
        text-align: center;
        font-size: 1.2em;
        margin: 0 0 10px 0;
    }

    .cta-subtitle {
        text-align: center;
        font-size: 0.8em;
    }

    .btn-lines{
        display: none;
    }

    .pricing .circles-shape{
        width: 70px;
        top: 20px;
    }

    .faq .question-icon,
    .faq .question-icon-2,
    .faq .faq-lines,
    .faq .faq-lines-2{
        display: none;
    }

    .faq-item.active .faq-answer{
        padding-left: 16px;
    }

    .faq-answer .prints-list{
        flex-wrap: wrap;
    }

    .faq-item.active .faq-answer{
        max-height: 800px;
    }

    .testimonial-left .resume{
        gap: 20px;
    }

    .testimonial-left .resume .resume-item .icon{
        width: 35px;
        height: 35px;
    }

    .testimonial-left .resume .resume-item .icon img{
        width: 18px;
    }

    .testimonial-left .resume .resume-item .item-title{
        font-size: 1em;
    }

    .testimonial-left .resume .resume-item .item-subtitle{
        font-size: 0.6em;
    }

    .shape.circle-shape {
        top: 80px;
        right: 30px;
    }

    .country{
        padding: 3px 10px;
    }

    .country .country-img__container{
        width: 25px;
        
    }

    .pricing-tabs {
        margin-bottom: 10px;
    }



}

@media (width <= 480px) {
    .header-inner { padding: 0 10px; }
    .btn-register-header { width: 95px; font-size: 10px; }
    .btn-login-header { width: 110px; font-size: 10px; }
    .hero-content { padding: 30px 20px 0; }
    .hero-h1 { font-size: 22px; }
    .hero-h2 { font-size: 36px; }
    .section-title { font-size: 22px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .country-flags { gap: 8px; }
    .country-flag img { width: 28px; height: 28px; }
    .fe-card { padding: 25px 18px; }
    .fe-title { font-size: 26px; }
    .fe-promo-title { font-size: 24px; }
    .fe-promo-line1 { font-size: 16px; }
    .fe-promo-tagline { font-size: 16px; }
    .fe-package-bar { font-size: 12px; padding: 8px 12px; }
    .fe-package-price { font-size: 13px; padding: 8px 10px; min-width: 60px; }
    .fe-stamp-img { width: 130px; }
    /* .fe-stamp-right .fe-stamp-img { width: 75px; } */
    .facturacion-inner { padding: 0 20px; }
    .shape.triangle-shape {
        left: 20px;
    }


}

@media(width <= 430px){
    .shape.triangle-shape{
        display: none;
    }

    .cta-title{
        text-align: center;
        font-size: 0.9em;
    }
}

@media(width <= 395px){
    .shape.circle-shape {
        display: none;
    }
}

/* === ANNUAL DISCOUNT STYLING === */
.tab-discount-badge {
    display: inline-block;
    background: #00c853;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.price-original {
    font-size: 16px;
    color: #999;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2px;
}

.price-original s {
    color: #cc0000;
    font-weight: 500;
}

.pricing-card.yearly-active {
    border-color: #00c853;
}

.pricing-card.yearly-active::after {
    content: '15% OFF';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 3;
    animation: pulseBadge 2s ease-in-out infinite;
}

.pricing-card.featured.yearly-active {
    border-color: #00c853;
}

/* === CONTACT PHONE BUTTONS === */
.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.contact-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.contact-phone-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25d366;
    transform: translateX(4px);
}

.contact-phone-btn img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* === SERVICE CARD GRID FIX FOR 12 CARDS === */
.service-card:nth-child(11) .service-card-icon {
    background-color: #7B68EE15;
}

.service-card:nth-child(12) .service-card-icon {
    background-color: #FF634715;
}

/* Removed duplicate - services-grid already defined above */