/* ==========================================================================
   Psiconversa Landing Page - Premium Styles (Vanilla CSS)
   ========================================================================== */

/* --- Variables & Custom Properties --- */
:root {
    --bg-primary: #0A0915;
    --bg-secondary: #121026;
    --bg-card: rgba(26, 23, 56, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Harmonious Color Palette */
    --color-primary: #8257E5; /* Vibrant Violet */
    --color-primary-glow: rgba(130, 87, 229, 0.4);
    --color-secondary: #00D2DF; /* Neon Cyan */
    --color-secondary-glow: rgba(0, 210, 223, 0.3);
    --color-accent: #FFB703; /* Gold Premium Accent */
    --color-accent-glow: rgba(255, 183, 3, 0.3);
    
    /* Text Colors */
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #111827;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--color-secondary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(100px);
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography System --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* --- Shared Layout Classes --- */
section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #633bb9 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--color-primary-glow);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #00a4b3 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--color-secondary-glow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-secondary-glow);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* --- Header / Navbar (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 24px;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 9, 21, 0.75);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 24px;
}

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

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 42px;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    text-shadow: 0 0 15px var(--color-primary-glow);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 140px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tag-premium {
    background: rgba(130, 87, 229, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(130, 87, 229, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-premium.accent {
    background: rgba(0, 210, 223, 0.1);
    color: #4ef0fa;
    border: 1px solid rgba(0, 210, 223, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.download-badges-row {
    display: flex;
    gap: 12px;
}

.download-badges-row.center {
    justify-content: center;
    margin-top: 2rem;
}

.badge-link {
    display: block;
    transition: var(--transition-smooth);
}

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

.badge-img {
    height: 44px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- CSS Smartphone Simulator Mockup --- */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 640px;
    perspective: 1000px;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 700px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 65%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border: 12px solid #2d2b42;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px var(--color-primary-glow);
    overflow: hidden;
    z-index: 2;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
    animation: floatPhone 6s infinite alternate ease-in-out;
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-speaker {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 15px;
    background: #2d2b42;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0E0B1A;
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    color: #fff;
    font-size: 0.85rem;
}

/* Simulated App UI */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 5px 20px;
    font-weight: 500;
    opacity: 0.8;
    font-size: 0.75rem;
}

.app-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    overflow: hidden;
}

.app-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.avatar-indi {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px var(--color-secondary-glow);
}

.app-nav-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nav-name {
    font-weight: 600;
}

.nav-status {
    font-size: 0.65rem;
    color: var(--color-secondary);
}

.nav-badge-premium {
    font-size: 0.6rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #e67e22 100%);
    color: var(--bg-primary);
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Chat Simulator inside Phone */
.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    position: relative;
    animation: slideInUp 0.5s ease;
}

.chat-msg p {
    font-size: 0.8rem;
    color: #fff;
    margin: 0;
}

.msg-received {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.07);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-color);
}

.msg-sent {
    align-self: flex-end;
    background: var(--color-primary);
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 10px rgba(130, 87, 229, 0.3);
}

.msg-time {
    display: block;
    font-size: 0.6rem;
    opacity: 0.5;
    text-align: right;
    margin-top: 4px;
}

.app-input-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 20px;
    justify-content: space-between;
}

.input-placeholder {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.voice-mic-icon {
    font-size: 0.95rem;
    cursor: pointer;
    background: rgba(130, 87, 229, 0.2);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- AI Guides Section --- */
.guias-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.ali-theme::before {
    background: linear-gradient(90deg, var(--color-primary) 0%, #aa8bf5 100%);
}

.indi-theme::before {
    background: linear-gradient(90deg, var(--color-secondary) 0%, #3fe7fa 100%);
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.ali-theme:hover {
    box-shadow: 0 20px 40px -15px var(--color-primary-glow);
}

.indi-theme:hover {
    box-shadow: 0 20px 40px -15px var(--color-secondary-glow);
}

.guide-avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.ali-theme .guide-avatar-container {
    background: rgba(130, 87, 229, 0.1);
    border: 1px solid rgba(130, 87, 229, 0.2);
}

.indi-theme .guide-avatar-container {
    background: rgba(0, 210, 223, 0.1);
    border: 1px solid rgba(0, 210, 223, 0.2);
}

.guide-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-role {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.ali-theme .guide-role {
    color: #a78bfa;
}

.indi-theme .guide-role {
    color: var(--color-secondary);
}

.guide-card p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.guide-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-features li {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

/* --- Gamification & Economy Section --- */
.gamificacion {
    position: relative;
}

.gamificacion-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.gamificacion-visual {
    display: flex;
    justify-content: center;
}

.gamify-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: 380px;
}

.gamify-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: floatBadge 5s infinite ease-in-out;
}

.gamify-badge:nth-child(2) {
    animation-delay: 1.5s;
    margin-left: 30px;
}

.gamify-badge:nth-child(3) {
    animation-delay: 3s;
    margin-left: -15px;
}

.gamify-badge:hover {
    transform: scale(1.04) translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 2.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.streak-badge .badge-icon {
    background: rgba(230, 126, 34, 0.15);
}

.coin-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--color-accent-glow));
}

.features-preview-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    width: 100%;
}

.feature-preview-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.feature-preview-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.mini-feature-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
    animation: floatBadge 6s infinite ease-in-out;
}

.feature-preview-card:nth-child(2) .mini-feature-img {
    animation-delay: 1.5s;
}

.feature-preview-card:nth-child(3) .mini-feature-img {
    animation-delay: 3s;
}

.feature-preview-card span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.feature-preview-card:hover span {
    color: #fff;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

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

.gamify-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

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

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(130, 87, 229, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.step-item h4 {
    margin-bottom: 4px;
    font-size: 1.15rem;
    color: #fff;
}

.step-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* --- Premium Comparison & Cards --- */
.premium-cta {
    position: relative;
}

.premium-banner {
    background: radial-gradient(circle at top right, rgba(130, 87, 229, 0.15), transparent 60%), var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.premium-header-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.premium-logo-badge {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--color-accent-glow));
    animation: floatBadge 4s infinite ease-in-out;
}

.premium-banner h2 {
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.premium-banner p {
    margin-bottom: 40px;
}

.premium-banner strong {
    color: var(--color-accent);
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
    align-items: stretch;
}

.premium-plan-card {
    background: rgba(10, 9, 21, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.premium-plan-card.highlighted {
    background: rgba(130, 87, 229, 0.08);
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 30px var(--color-primary-glow);
}

.badge-card-top {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #e67e22 100%);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.05em;
}

.premium-plan-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 8px;
}

.plan-price-annual {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #e5e7eb;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    line-height: 1.3;
}

.save-badge {
    font-size: 0.75rem;
    color: var(--color-accent);
    background: rgba(255, 183, 3, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-top: 4px;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.premium-plan-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-plan-card ul li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.premium-plan-card.highlighted ul li {
    color: var(--text-main);
}

/* --- Download Section (CTA Final) --- */
.descargar {
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.descargar-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.descargar h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.mockup-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* --- Footer --- */
footer {
    background-color: #05040B;
    border-top: 1px solid var(--border-color);
    padding: 80px 24px 30px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 45px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-group h5 {
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.links-group a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.links-group a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Keyframe Animations --- */
@keyframes floatPhone {
    0% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(0px);
    }
    100% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(-15px);
    }
}

@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Media Queries --- */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .guias-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gamificacion-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gamify-card-wrapper {
        margin: 0 auto;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    section {
        padding: 60px 16px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        width: 80%;
    }
    
    /* Toggle active hamburger bars */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}
