:root {
    --primary: #008296;
    --primary-hover: #006b7a;
    --dark: #111111;
    --light: #f5f7f8;
    --border: #e6e9eb;
    --text: #111111;
    --text-muted: #5e6d77;
    --white: #ffffff;
    --success: #2b7d2b;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
}

/* Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: baseline;
    gap: 0;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
    font-weight: 800;
}

.brand-tagline {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #a0aab2;
    text-transform: uppercase;
    position: relative;
    top: -2px;
    margin-left: 12px;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.secure-badge svg {
    color: #2b7d2b;
}

/* Hero */
.hero {
    position: relative;
    height: 480px;
    background-color: #f9fbff; /* Subtle off-white to make the pattern pop more */
    background-image: url('business_pattern.png');
    background-repeat: repeat;
    background-size: 300px; /* Slightly larger for clearer icons */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* radial gradient for focus + very low opacity overlay for maximum pattern visibility */
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.domain-tag {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: var(--primary); /* Solid color as requested */
    text-shadow: none;
}

.highlight-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0, 130, 150, 0.2);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container & Grid */
.main-container {
    max-width: 1100px;
    margin: -60px auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .purchase-grid {
        grid-template-columns: 1fr;
    }

    .main-container {
        margin-top: 2rem;
    }

    .hero {
        height: 300px;
    }
}

/* Cards */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

/* Premium Buy Now Card Redesign */
.buy-now {
    background: #ffffff;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.buy-now::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 130, 150, 0.05) 50%);
    pointer-events: none;
}

.buy-now:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 130, 150, 0.3);
}

.card-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 2rem;
}

.header-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.direct-transfer-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.direct-transfer-text i {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.badge-premium {
    background: rgba(0, 130, 150, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 130, 150, 0.2);
}

.price-container-new {
    width: 100%;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid #edf2f7;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-tag small {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.escrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2b7d2b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.description-premium {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Benefit List Premium */
.benefit-list-premium {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    text-align: left;
    width: 100%;
}

.benefit-list-premium li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.ben-icon {
    width: 40px;
    height: 40px;
    background: #f0fdf9;
    color: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ben-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.ben-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Secure Checkout Premium */
.secure-checkout-premium {
    width: 100%;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.checkout-header i {
    color: #2b7d2b;
    font-size: 1.1rem;
}

.payment-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.payment-grid i {
    font-size: 1.8rem;
    color: #475569;
    transition: all 0.3s ease;
}

.payment-grid i:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.mexican-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.m-tag {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #475569;
}

/* Forms & Buttons */
/* Modernized Form Layout */
.form-group {
    margin-bottom: 1.8rem;
    position: relative;
    transition: transform 0.3s ease;
}

.form-group:focus-within {
    transform: translateX(5px);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary);
    letter-spacing: 2px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus {
    outline: none;
    border-color: var(--primary);
}

input[readonly] {
    background-color: #f0f2f5;
    color: var(--text-muted);
    cursor: not-allowed;
    border-style: dashed;
}

/* Offer Card - Premium UI/UX */
.offer-card {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    color: var(--white);
    border: 1px solid rgba(0, 130, 150, 0.4);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 130, 150, 0.15);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00d2ff, var(--primary));
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

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

    100% {
        background-position: 200% 50%;
    }
}

.input-group-premium {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.input-group-premium i {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.input-group-premium input {
    width: 100%;
    height: 60px;
    padding: 0 20px 0 55px !important;
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.input-group-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
    z-index: 3;
}

.input-group-premium:focus-within {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 130, 150, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.input-group-premium:focus-within i {
    color: var(--primary);
    transform: scale(1.2);
}

.input-group-premium:focus-within::after {
    width: 100%;
}

.offer-card .btn-outline {
    background: linear-gradient(135deg, var(--primary), #00d2ff);
    border: none;
    color: var(--white);
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 15px 30px rgba(0, 130, 150, 0.3);
    overflow: hidden;
    position: relative;
}

.offer-card .btn-outline::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.offer-card .btn-outline:hover::after {
    left: 120%;
}

.offer-card .btn-outline:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 130, 150, 0.5);
}

.offer-card .tender-info {
    border-left: 4px solid var(--primary);
    background: linear-gradient(90deg, rgba(0, 130, 150, 0.1), transparent);
    padding: 1.25rem 1.5rem 1.25rem 3.5rem; /* Increased padding-left to push text right as requested */
    border-radius: 0 12px 12px 0;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
}

.offer-card .tender-info::before {
    content: '\f0a1'; /* Megaphone icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

/* Feedback in Dark Card */
.offer-card .feedback.success {
    background: rgba(43, 125, 43, 0.2);
    color: #81c784;
    border-color: rgba(43, 125, 43, 0.3);
}

.offer-card .feedback.error {
    background: rgba(192, 24, 24, 0.2);
    color: #e57373;
    border-color: rgba(192, 24, 24, 0.3);
}

.btn {
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    margin-bottom: 1.5rem;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #333;
}

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

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

/* Trust Bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: #eefbff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Minimalist Zenith Footer with MAYAR Signature */
footer {
    background: #06080b;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-zen-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.mayar-signature {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.mayar-signature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 143, 154, 0.1);
}

.sig-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    background: rgba(0, 143, 154, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.sig-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.sig-title span {
    color: var(--primary);
}

.sig-link-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
}

.sig-offices {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
}

.sig-offices span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom-zen {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-zen p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.legal-minimal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-minimal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.legal-minimal a:hover {
    color: white;
}

/* Floating Contact Dock */
.floating-dock {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.dock-item {
    width: 54px;
    height: 54px;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dock-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.dock-item.wa:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.dock-label {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dock-item:hover .dock-label {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .sig-title { font-size: 1.4rem; }
    .sig-offices { flex-direction: column; gap: 10px; }
    .footer-bottom-zen { padding: 40px 20px; }
    .legal-minimal { flex-direction: column; gap: 10px; }
}

/* Global Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up { animation: slideUp 0.6s ease-out forwards; }
.slide-up-delayed { opacity: 0; animation: slideUp 0.6s ease-out 0.2s forwards; }
.slide-up-extra-delayed { opacity: 0; animation: slideUp 0.6s ease-out 0.4s forwards; }