:root {
    --primary: #ff9800;
    --primary-dark: #e68900;
    --primary-light: #fff3e0;
    --text-main: #111111;
    --text-muted: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border: #eeeeee;
    --radius: 16px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.brand {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.brand {
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reducido para que se vea más junto */
    line-height: 1;
}

.brand-tagline {
    font-size: 0.55rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-left: 8px;
    opacity: 0.7;
    display: inline-block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(255, 152, 0, 0.05), transparent);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-img {
    margin-top: 60px;
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 8px solid var(--white);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Why Section */
.why {
    padding: 100px 0;
}

.why-row {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.why-text {
    flex: 1;
    min-width: 400px;
}

.why-img {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.mockup-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefits-list i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Subscription Section */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.pricing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.02);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
}

.subscription {
    padding: 120px 0;
    background: #111;
    color: var(--white);
    text-align: center;
    position: relative;
}

.subscription h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-white:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    background: #000;
}

footer a {
    text-decoration: none !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.1fr 1fr 1.3fr;
    gap: 25px;
    margin-bottom: 60px;
}

.footer-brand .brand {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 300px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.socials a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-menu-icons,
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-links ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

/* Button-style links for Footer Menu Icons */
.footer-links .footer-menu-icons li a,
.footer-contact .footer-menu-icons li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    /* Full width buttons */
}

.footer-links ul li a i,
.footer-contact ul li a i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.footer-links .footer-menu-icons li a i,
.footer-contact .footer-menu-icons li a i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    /* Removing box style from icon for cleaner button look */
    background: transparent;
    border: none;
    height: auto;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links .footer-menu-icons li a:hover,
.footer-contact .footer-menu-icons li a:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: white;
}

/* Contact Specific Labels & Icons */
.contact-country-label {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 4px;
    color: white;
}

.contact-country-label.mex {
    background: var(--primary);
}

.contact-country-label.usa {
    background: #D32F2F;
}

.footer-contact .fa-envelope {
    color: var(--primary);
}

.footer-contact .fa-whatsapp {
    color: #25D366;
}

.footer-contact .verified-icon {
    color: #1877F2;
    font-size: 0.8rem;
    margin-left: 5px;
}

.footer-contact .footer-menu-icons li a:hover .fa-envelope {
    color: var(--primary);
    transform: scale(1.1);
}

.footer-contact .footer-menu-icons li a:hover .fa-whatsapp {
    color: #25D366;
    transform: scale(1.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.contact-info-item i {
    color: var(--primary);
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-links ul li a:hover i {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.footer-menu-icons li a:hover i {
    transform: scale(1.1);
}

/* Sitemap & Tools Icon Colors */
.footer-menu-icons .fa-lightbulb {
    color: #FFD700;
}

.footer-links .footer-menu-icons li a:hover .fa-lightbulb {
    color: #FFD700;
    transform: scale(1.1);
}

.footer-menu-icons .fa-briefcase {
    color: #FFFFFF;
}

.footer-links .footer-menu-icons li a:hover .fa-briefcase {
    color: #000000;
    transform: scale(1.1);
}

.footer-menu-icons .fa-globe {
    color: #E91E63;
}

.footer-links .footer-menu-icons li a:hover .fa-globe {
    color: #E91E63;
    transform: scale(1.1);
}

.footer-menu-icons .fa-chart-line {
    color: #00BCD4;
}

.footer-links .footer-menu-icons li a:hover .fa-chart-line {
    color: #00BCD4;
    transform: scale(1.1);
}

.footer-menu-icons .fa-server {
    color: #FF9800;
}

.footer-links .footer-menu-icons li a:hover .fa-server {
    color: #FF9800;
    transform: scale(1.1);
}

.footer-links .fa-money-bill-trend-up {
    color: #4CAF50;
}

.footer-links .footer-menu-icons li a:hover .fa-money-bill-trend-up {
    color: #4CAF50;
    transform: scale(1.1);
}

.footer-menu-icons .fa-circle-question {
    color: #448AFF;
}

.footer-links .footer-menu-icons li a:hover .fa-circle-question {
    color: #448AFF;
    transform: scale(1.1);
}

.footer-links .fa-calculator {
    color: #FF9800;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .nav-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .nav-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 15px;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .why-row {
        gap: 40px;
    }

    .why-text,
    .why-img {
        min-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-contact {
        border-bottom: none;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .footer-brand p {
        margin-left: 0;
        margin-right: 0;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .socials {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .footer-menu-icons,
    .footer-links ul {
        width: 100%;
        gap: 8px;
    }

    .footer-menu-icons li,
    .footer-links ul li {
        width: 100%;
    }

    .footer-menu-icons li a,
    .footer-links ul li a {
        justify-content: flex-start;
        width: 100%;
        padding: 10px 14px;
    }

    .footer-contact .contact-info-item {
        justify-content: flex-start;
        padding: 8px 14px;
    }

    .footer-menu-icons li a:hover,
    .footer-links ul li a:hover {
        transform: translateX(5px);
    }

    footer {
        padding-left: 6%;
        padding-right: 6%;
    }
}

/* Floating Dock iPhone Style - Bottom Right Vertical */
.floating-dock {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 152, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 9995;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-item {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 14px;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.dock-item:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.15) translateX(-5px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
}

.dock-label {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dock-item:hover .dock-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .floating-dock {
        right: 15px;
        bottom: 20px;
        padding: 8px;
        gap: 10px;
    }

    .dock-item {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 12px;
    }

    .dock-label {
        display: none;
    }
}
/* --- Floating Brand Tag (Bottom Left - Compact Dark Turquoise) --- */
.brand-tag-vertical {
    position: fixed;
    left: 0;
    bottom: 20px;
    top: auto;
    transform: none;
    background: #003d42;
    /* Dark Turquoise */
    color: white;
    padding: 8px 3px;
    border-radius: 0 5px 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    z-index: 9999;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: sans-serif;
    transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.brand-tag-vertical:hover {
    padding-left: 6px;
    box-shadow: 3px 0 12px rgba(0, 0, 0, 0.5);
    background: #00545c;
    /* Lighter Turquoise on hover */
}

.tag-text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 6px 0;
    white-space: nowrap;
    opacity: 0.9;
}

.tag-icon-vertical {
    margin-top: 5px;
    font-size: 0.6rem;
    color: #D4AF37;
    /* Gold Icon */
}
