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

/* === CSS VARIABLES === */
:root {
    --blue-primary: #02AA56;
    --cyan-accent: #00CF67;
    --bg-header: #e2e8f0;
    --bg-steps: radial-gradient(circle, rgba(2,86,43,1) 33.654%, rgba(1,70,35,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(2, 170, 86, 1) 49%, rgba(0, 207, 103, 1) 100%);

    --gradient-text: linear-gradient(90deg, #02AA56 18.269%, #00CF67 68.269%);
    --gradient-border: linear-gradient(155deg, rgba(2, 170, 86, 1) 39%, rgba(0, 207, 103, 1) 100%);
    --gradient-login: linear-gradient(108.307deg, #02AA56 23.927%, #00CF67 105.89%);
    --gradient-cta-hero: linear-gradient(-90deg, #00CF67 14.63%, #02AA56 57.846%);
    --gradient-cta-feature: linear-gradient(101.31deg, #02AA56 14.904%, #00CF67 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.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.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: #02AA56;
    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; }
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 cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.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; }

.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.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 30px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2,170,86,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 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-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: contain;
    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, #f0fdf5 0%, #e8faf0 30%, #fff 50%, #eefbf3 70%, #f5fdf9 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, #02AA56, 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, #00CF67, 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, #018a45, 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, #02AA56 0%, #00CF67 30%, #018a45 50%, #00CF67 70%, #02AA56 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, #f0fdf5 0%, #fafafa 25%, #fff 50%, #f5fdf9 75%, #fafafa 100%);
    display: none !important;
}

/* 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, #02AA56, transparent 70%);
    top: -8%;
    right: -5%;
    animation: ahorroOrbFloat1 22s ease-in-out infinite;
}

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

.ahorro-orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #02AA56, 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, #00CF67, 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;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.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{
    width: 100%;
    max-width: 1250px;
}

.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{
    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;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: min-content;
    background: var(--gradient-cta-feature);
}

.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);
}

.btn-free-try--centered {
    margin: 10px auto;
}

/* === 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.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 185px;
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0px 8px 25px -10px rgba(0,0,0,0.18); }

.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: -175px;
    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: auto;
    min-height: 520px;
    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: #02AA56 !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: #00CF67 !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: 480px 1fr;
    grid-gap: 30px;
    align-items: center;
}

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

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

.fs-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 120px 60px rgba(2, 170, 86, 0.18), 0 0 200px 100px rgba(0, 207, 103, 0.10);
    filter: blur(40px);
    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(2, 170, 86, 1) 25%, rgba(0, 207, 103, 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;
    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.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    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: filter 0.3s;
    cursor: pointer;
}

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

/* === 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(2, 170, 86, 0.25);
}

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

.tab-discount {
    font-size: 0.75em;
    font-weight: 700;
    color: #02AA56;
}

.pricing-tab.active .tab-discount {
    color: #fff;
}

.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.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: 0px 12px 30px -10px rgba(0,0,0,0.18); }

.pricing-card.featured {
    border: 2px solid var(--blue-primary);
    box-shadow: 0 10px 40px rgba(2,170,86,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;
    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); }

/* Pricing annual savings */
.price-savings {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    animation: savingsFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pricing-yearly .price-savings { display: flex; }

.price-original {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: line-through;
    text-decoration-color: #e53e3e;
    text-decoration-thickness: 2px;
}

.price-discount-badge {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #02AA56, #00CF67);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

@keyframes savingsFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.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;
    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(2,170,86,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 cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.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;
}

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

.footer-address {
    font-size: 0.95em;
}

.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; }

a.contact-wa {
    color: #fff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

a.contact-wa:hover {
    background: rgba(255,255,255,0.12);
}

.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;
    display: none;
}

.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;
    position: relative;
    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 {
    position: absolute;
    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%, #33c474 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;
    align-items: center;
    justify-content: center;
}

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

/* === FOCUS STATES === */
.nav-link:focus-visible,
.hero-cta:focus-visible,
.btn-register-header:focus-visible,
.btn-login-header:focus-visible,
.btn-free-try:focus-visible,
.btn-free-try--centered:focus-visible,
.btn-free-try__facturation:focus-visible,
.btn-cta-primary:focus-visible,
.btn-pricing-cta:focus-visible,
.btn-feature:focus-visible,
.faq-question:focus-visible,
.pricing-tab:focus-visible,
.footer-links a:focus-visible,
.social-links a:focus-visible,
.app-badge:focus-visible {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* === PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .clientes-track {
        animation: none;
    }

    .page-loader {
        transition: none;
    }
}

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

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

/* === RESPONSIVE === */
@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 (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; }
    .feature-content { flex-direction: column; }
    .feature-image { flex: none; width: 100%; max-width: 534px; margin: 0 auto; }
    .swiper-inner__content { grid-template-columns: 380px 1fr; }
    .swiper-inner__content .swiper-left { height: 420px; }
    .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; }
    .fe-cards-container { flex-direction: column; align-items: center; }
    .fe-card { max-width: 450px; width: 100%; min-height: auto; }

    .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;
    }

    .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 !important;
        height: 36px !important;
    }

    .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: 380px;
        max-width: 450px;
        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.9em;
    }

    .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;
    }

    .dt-circles{
        top: 400px;
        width: 200px;
    }

    /* 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; }
}

@media (max-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; }
    .pricing-scroll > .pricing-card { flex: 0 0 min(450px, 80%); }
    .cta-buttons { flex-direction: column; align-items: center; }
    .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-card-right .fe-card-content { min-height: auto; }
    .fe-logos-right { position: relative; margin-top: 35px; }
}

@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;
    }

    .fe-illustration {
        bottom: 130px;
        width: 50%;
    }

    .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: 300px;
        max-width: 360px;
        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 <= 570px){
    .dt-midcircle-yellow{
        bottom: -60px;
        top: auto;
        right: -60px;
        left: auto;
        transform: rotate(-40deg);
    }

    .dt-circles {
        width: 140px;
    }
}

@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; }
    .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;
    }

    .dt-circles {
        top: 500px;
        right: 20px;
    }
}

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

/* ============================================
   NAV DROPDOWN - Funcionalidades
   ============================================ */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

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

.nav-dropdown-toggle i {
    font-size: 16px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    min-width: 250px;
    background: #ffffff;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 1001;
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-black);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(2,170,86,0.08) 0%, transparent 100%);
    color: var(--blue-primary);
}

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


/* ============================================
   INNER PAGES - Unified Design System
   ============================================ */

/* --- Base --- */
.inner-page {
    padding-top: 80px;
    font-family: var(--font-main);
    color: var(--text-black);
}

/* --- Breadcrumb --- */
.ip-breadcrumb {
    padding: 16px 24px;
    background: #f8faf9;
    border-bottom: 1px solid #f0f2f1;
}

.ip-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    font-size: 13px;
    flex-wrap: wrap;
}

.ip-breadcrumb ol li a {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease-out;
}

.ip-breadcrumb ol li a:hover {
    opacity: 0.7;
}

.ip-breadcrumb ol li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-gray-light);
}

.ip-breadcrumb ol li:last-child {
    color: var(--text-gray);
}

/* --- Hero --- */
.ip-hero {
    padding: 72px 24px 64px;
    text-align: center;
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 50%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.ip-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(2,170,86,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ip-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,207,103,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ip-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2,170,86,0.08);
    border: 1px solid rgba(2,170,86,0.18);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 24px;
}

.ip-hero-badge i {
    font-size: 16px;
}

.ip-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-black);
    margin: 0 0 18px;
}

.ip-hero-subtitle {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 36px;
}

.ip-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ip-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--gradient-cta-hero);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 4px 20px rgba(2,170,86,0.25);
}

.ip-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(2,170,86,0.35);
}

.ip-hero-cta i {
    font-size: 18px;
}

.ip-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: var(--blue-primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid var(--blue-primary);
    transition: background 0.2s ease-out, color 0.2s ease-out;
}

.ip-hero-secondary:hover {
    background: var(--blue-primary);
    color: #fff;
}

.ip-hero-trust {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ip-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.ip-hero-trust i {
    font-size: 16px;
    color: var(--blue-primary);
}

/* --- Section Headers (shared) --- */
.ip-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ip-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.25;
    margin: 0 0 12px;
}

.ip-section-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 48px;
}

/* --- Benefits --- */
.ip-benefits {
    padding: 80px 24px;
    background: #fff;
}

.ip-benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.ip-benefit-card {
    background: #fff;
    border: 1px solid #eef2f0;
    border-radius: var(--radius-card);
    padding: 36px 28px;
    text-align: left;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.ip-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(2,170,86,0.1);
}

.ip-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(2,170,86,0.1) 0%, rgba(0,207,103,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ip-benefit-icon i {
    font-size: 24px;
    color: var(--blue-primary);
}

.ip-benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 10px;
    line-height: 1.3;
}

.ip-benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* --- Feature Detail --- */
.ip-detail {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fdf9 0%, #fff 100%);
}

.ip-detail-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.ip-detail-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Two-column layout */
.ip-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ip-detail-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 14px;
    line-height: 1.3;
}

.ip-detail-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 20px;
}

.ip-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ip-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.ip-detail-list li i {
    color: var(--blue-primary);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Sidebar feature box */
.ip-detail-sidebar {
    background: #fff;
    border: 1px solid #eef2f0;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.ip-detail-sidebar h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 16px;
}

.ip-detail-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ip-detail-sidebar li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f3f3f3;
}

.ip-detail-sidebar li:last-child {
    border-bottom: none;
}

.ip-detail-sidebar li i {
    color: var(--blue-primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* Alternating feature rows */
.ip-feature-rows {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.ip-feature-row {
    display: flex;
    align-items: center;
    gap: 56px;
}

.ip-feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.ip-feature-visual {
    flex: 0 0 360px;
    height: 260px;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(2,170,86,0.08) 0%, rgba(0,207,103,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(2,170,86,0.1);
}

.ip-feature-visual i {
    font-size: 72px;
    color: var(--blue-primary);
    opacity: 0.4;
}

.ip-feature-text {
    flex: 1;
}

.ip-feature-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 14px;
    line-height: 1.3;
}

.ip-feature-text p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 18px;
}

.ip-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ip-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
    line-height: 1.5;
}

.ip-check-list li i {
    color: var(--blue-primary);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* --- Prose content --- */
.ip-prose {
    max-width: 900px;
    margin: 0 auto;
}

.ip-prose h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 20px;
    text-align: center;
}

.ip-prose p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 16px;
}

.ip-prose ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ip-prose ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.ip-prose ul li::before {
    content: '\ea52';
    font-family: 'boxicons';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-size: 18px;
}

/* --- Highlight Box --- */
.ip-highlight {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f7ef 100%);
    border-left: 4px solid var(--blue-primary);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    padding: 24px 28px;
    margin: 28px 0;
}

.ip-highlight p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.ip-highlight strong {
    color: var(--blue-primary);
}

/* --- Steps (Dark Grid) --- */
.ip-steps {
    padding: 80px 24px;
    background: var(--bg-steps);
}

.ip-steps-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ip-steps .ip-section-label {
    color: rgba(255,255,255,0.7);
}

.ip-steps .ip-section-title {
    color: #fff;
}

.ip-steps .ip-section-subtitle {
    color: rgba(255,255,255,0.8);
}

.ip-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ip-step-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-card);
    padding: 36px 20px 28px;
    text-align: center;
    transition: transform 0.25s ease-out, background 0.25s ease-out;
}

.ip-step-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

.ip-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.ip-step-icon {
    font-size: 36px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.ip-step-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ip-step-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin: 0;
}

/* Steps (Light / Vertical) */
.ip-steps--light {
    background: #fff;
}

.ip-steps--light .ip-section-label { color: inherit; }
.ip-steps--light .ip-section-title { color: var(--text-black); }
.ip-steps--light .ip-section-subtitle { color: #666; }

.ip-steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.ip-step-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ip-step-row .ip-step-number {
    background: var(--gradient-cta-hero);
    border: none;
    color: #fff;
    flex-shrink: 0;
}

.ip-step-row h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 6px;
}

.ip-step-row p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* --- FAQ Accordion --- */
.ip-faq {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fdf9 0%, #fff 100%);
}

.ip-faq-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ip-faq-list {
    text-align: left;
    margin-top: 8px;
}

.ip-faq-item {
    border: 1px solid #eef2f0;
    border-radius: var(--radius-card);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.25s ease-out;
}

.ip-faq-item:hover {
    box-shadow: 0 4px 20px rgba(2,170,86,0.06);
}

.ip-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    line-height: 1.4;
    transition: background 0.15s ease-out;
}

.ip-faq-trigger:hover {
    background: rgba(2,170,86,0.02);
}

.ip-faq-trigger i {
    font-size: 22px;
    color: var(--blue-primary);
    transition: transform 0.3s ease-out;
    flex-shrink: 0;
}

.ip-faq-item.active .ip-faq-trigger i {
    transform: rotate(180deg);
}

.ip-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.ip-faq-item.active .ip-faq-body {
    max-height: 500px;
}

.ip-faq-body p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* --- CTA Section (Green Gradient) --- */
.ip-cta {
    padding: 80px 24px;
    background: var(--gradient-cta-hero);
    text-align: center;
}

.ip-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.ip-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.3;
}

.ip-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin: 0 0 32px;
}

.ip-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ip-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #fff;
    color: var(--blue-primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.ip-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}

.ip-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6);
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.ip-cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* CTA Light variant */
.ip-cta--light {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

.ip-cta--light h2 { color: var(--text-black); }
.ip-cta--light p { color: #555; }

.ip-cta--light .ip-cta-primary {
    background: var(--gradient-cta-hero);
    color: #fff;
    box-shadow: 0 4px 20px rgba(2,170,86,0.25);
}

.ip-cta--light .ip-cta-primary:hover {
    box-shadow: 0 6px 28px rgba(2,170,86,0.35);
}

.ip-cta--light .ip-cta-secondary {
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.ip-cta--light .ip-cta-secondary:hover {
    background: var(--blue-primary);
    color: #fff;
}

/* --- Tags (Ideal Para) --- */
.ip-tags {
    padding: 64px 24px;
    background: #fff;
    text-align: center;
}

.ip-tags-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ip-tags-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.ip-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2,170,86,0.06);
    border: 1px solid rgba(2,170,86,0.14);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: background 0.2s ease-out;
}

.ip-tag:hover {
    background: rgba(2,170,86,0.12);
}

.ip-tag i {
    font-size: 18px;
    color: var(--blue-primary);
}

/* --- Use Cases Grid --- */
.ip-cases {
    padding: 80px 24px;
}

.ip-cases-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ip-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 8px;
    text-align: left;
}

.ip-case-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-card);
    border: 1px solid #eef2f0;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.ip-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(2,170,86,0.08);
}

.ip-case-card > i {
    font-size: 32px;
    color: var(--blue-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ip-case-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 6px;
}

.ip-case-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* --- Legal Pages --- */
.legal-page {
    padding: 80px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-main);
}

.legal-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--text-black);
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 12px;
    color: var(--text-black);
}

.legal-page p, .legal-page li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; }
    .ip-benefit-card,
    .ip-step-card,
    .ip-case-card,
    .ip-faq-item,
    .ip-hero-cta,
    .ip-hero-secondary,
    .ip-cta-primary,
    .ip-cta-secondary,
    .ip-faq-trigger i,
    .ip-faq-body,
    .nav-dropdown-toggle i,
    .nav-dropdown-menu {
        transition: none !important;
    }
}

/* ============================================
   NAV DROPDOWN - Responsive
   ============================================ */
@media (max-width: 821px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease-out;
        background: #f8f8f8;
        border-radius: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px;
        padding: 4px 0;
    }

    .nav-dropdown {
        flex-direction: column;
        width: 100%;
    }

    .nav-dropdown-toggle {
        font-size: 15px;
        padding: 14px 30px;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        justify-content: space-between;
    }

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

    .nav-dropdown-menu a {
        padding: 10px 20px 10px 45px;
        font-size: 14px;
    }
}

/* ============================================
   INNER PAGES - Responsive
   ============================================ */
@media (max-width: 1024px) {
    .ip-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ip-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ip-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ip-feature-row,
    .ip-feature-row:nth-child(even) {
        flex-direction: column;
    }

    .ip-feature-visual {
        flex: none;
        width: 100%;
        max-width: 450px;
        height: 220px;
    }
}

@media (max-width: 821px) {
    .ip-hero {
        padding: 48px 20px 40px;
    }

    .ip-hero h1 {
        font-size: 30px;
    }

    .ip-hero-subtitle {
        font-size: 15px;
    }

    .ip-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ip-section-title {
        font-size: 26px;
    }

    .ip-cta h2 {
        font-size: 26px;
    }

    .ip-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ip-hero {
        padding: 40px 16px 32px;
    }

    .ip-hero h1 {
        font-size: 26px;
    }

    .ip-benefits, .ip-detail, .ip-faq, .ip-tags, .ip-cases {
        padding: 56px 16px;
    }

    .ip-steps {
        padding: 56px 16px;
    }

    .ip-steps-grid {
        grid-template-columns: 1fr;
    }

    .ip-cta {
        padding: 56px 16px;
    }

    .ip-cta h2 {
        font-size: 24px;
    }

    .ip-hero-buttons {
        flex-direction: column;
    }

    .ip-hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .ip-section-title {
        font-size: 24px;
    }

    .ip-faq-trigger {
        padding: 18px 20px;
        font-size: 14px;
    }

    .ip-faq-body p {
        padding: 0 20px 18px;
    }

    .ip-breadcrumb {
        padding: 12px 16px;
    }

    .ip-cta-buttons {
        flex-direction: column;
    }

    .ip-cta-primary,
    .ip-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .ip-hero-cta,
    .ip-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .legal-page {
        padding: 60px 16px 40px;
    }

    .legal-page h1 {
        font-size: 26px;
    }
}
