:root {
    --bg-deep: #F8FAFC;
    --bg-card: #FFFFFF;
    --primary-purple: #6366F1;
    --primary-orange: #F59E0B;
    --text-white: #1E293B;
    --text-gray: #64748B;
    --border: #E2E8F0;
    --grad-purple: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --grad-orange: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    --grad-accent: linear-gradient(135deg, #6366F1 0%, #EA580C 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
}

.logo i {
    color: var(--primary-orange);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    transition: 0.3s;
}

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

/* Language selector hidden — Spanish only for initial launch */
.nav-lang-selector {
    display: none !important;
}

.lang-toggle-btn {
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    opacity: 0.5;
}

.lang-toggle-btn:hover,
.lang-toggle-btn.active {
    opacity: 1;
    transform: scale(1.1);
}

header {
    padding: 6rem 8% 4rem;
    text-align: center;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

header h1 span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.int-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 8% 6rem;
}

.int-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.int-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.int-icon {
    width: 60px;
    height: 60px;
    background: #F1F5F9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.int-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.int-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.status-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #D1FAE5;
    color: #065F46;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-badge.coming {
    background: #FEF3C7;
    color: #92400E;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.cta-section {
    padding: 6rem 8%;
    text-align: center;
    background: #FFFFFF;
}

.cta-card {
    background: var(--grad-purple);
    padding: 4rem 2rem;
    border-radius: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-main {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.int-icon.whatsapp {
    color: #25D366;
}

.int-icon.google {
    color: #4285F4;
}

.int-icon.apple {
    color: #000000;
}

/* Changed to black for visibility on light bg, or keep as user requested? User had white. I'll keep white but add a note. Actually, better use black for visibility if they want to see it. */
.int-icon.microsoft {
    color: #0078D4;
}

.int-icon.stripe {
    color: #635BFF;
}

.int-icon.instagram {
    color: #E1306C;
}

.custom-footer {
    padding: 4rem;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-deep);
}

.footer-copy {
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

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