/* Variables del Sistema de Diseño (Estilo Profe te ayudo) */
:root {
    --primary-color: #1F3A5F;       /* Azul Noche */
    --secondary-color: #2D7FF9;     /* Azul Claro */
    --accent-color: #09B1A8;        /* Teal/Cian */
    --accent-yellow: #F1C40F;       /* Amarillo alertas */
    --bg-light: #F8F9FA;            /* Blanco Hueso */
    --bg-white: #FFFFFF;            /* Blanco Puro */
    --text-dark: #1E293B;           /* Slate 800 */
    --text-muted: #64748B;          /* Slate 500 */
    --border-color: #E2E8F0;        /* Border */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografía */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.cursive {
    font-family: 'Pacifico', cursive;
}

/* Botones (Consistentes con el Panel de la App) */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(31, 58, 95, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 127, 249, 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(31, 58, 95, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

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

/* Corregir especificidad de botones en el menú de navegación */
.nav-links a.btn-primary,
.mobile-buttons a.btn-primary {
    color: var(--bg-white);
}

.nav-links a.btn-primary:hover,
.mobile-buttons a.btn-primary:hover {
    color: var(--bg-white);
    background-color: var(--secondary-color);
}

.nav-links a.btn-secondary,
.mobile-buttons a.btn-secondary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.nav-links a.btn-secondary:hover,
.mobile-buttons a.btn-secondary:hover {
    color: var(--primary-color);
    background-color: rgba(31, 58, 95, 0.05);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Menú Móvil */
.mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(45, 127, 249, 0.06) 0%, transparent 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--border-color) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(9, 177, 168, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-trial-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-inline {
    width: 16px;
    height: 16px;
}

/* Mockup Window Frame con Animación y Efecto 3D */
.hero-mockup {
    position: relative;
    z-index: 10;
}

.hero-mockup:hover .window-frame {
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 35px 60px -15px rgba(31, 58, 95, 0.22);
}

.window-frame {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glowing Background Blobs */
.glowing-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.blob-1 {
    background-color: var(--secondary-color);
    top: 10%;
    right: 5%;
}

.blob-2 {
    background-color: var(--accent-color);
    top: 40%;
    left: 2%;
}

/* Floating Glassmorphic Badges in Hero */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(31, 58, 95, 0.08);
    z-index: 20;
    max-width: 250px;
    pointer-events: none;
}

.badge-top-right {
    top: -24px;
    right: -24px;
}

.badge-bottom-left {
    bottom: 24px;
    left: -32px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon.green {
    background-color: rgba(9, 177, 168, 0.1);
    color: var(--accent-color);
}

.badge-icon.gold {
    background-color: rgba(241, 196, 15, 0.1);
    color: #D68910;
}

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

.badge-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.badge-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Floating Animations */
@keyframes float-slow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

.animate-float-slow {
    animation: float-slow 5s ease-in-out infinite;
}

.animate-float-medium {
    animation: float-medium 4.2s ease-in-out infinite;
}

.window-header {
    background-color: #F1F5F9;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
}

.window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.window-header .dot.red { background-color: #EF4444; }
.window-header .dot.yellow { background-color: #F59E0B; }
.window-header .dot.green { background-color: #10B981; }

.window-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 12px;
}

.window-body {
    display: grid;
    grid-template-columns: 80px 1fr;
    height: 320px;
    background-color: var(--bg-white);
}

/* Sidebar mockup */
.mock-sidebar {
    background-color: var(--primary-color);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-logo {
    margin-bottom: 12px;
    text-align: center;
}

.mock-menu-item {
    height: 12px;
    border-radius: 3px;
    background-color: rgba(255,255,255,0.15);
    width: 80%;
    margin: 0 auto;
}

.mock-menu-item.active {
    background-color: var(--accent-color);
}

/* Mockup Content */
.mock-content {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--text-dark) !important;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.mock-h {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color) !important;
}

.mock-date {
    font-size: 0.75rem;
    color: var(--text-muted) !important;
}

.mock-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-tr {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 8px;
    background-color: var(--bg-light);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-dark) !important;
}

.mock-tr span {
    color: var(--text-dark) !important;
}

.mock-tr.table-header {
    background-color: transparent;
    font-weight: 600;
    color: var(--text-muted) !important;
    padding: 4px 8px;
}

.mock-tr.table-header span {
    color: var(--text-muted) !important;
}

.status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
}

.status.present {
    background-color: rgba(39, 174, 96, 0.15);
    color: #27AE60;
}

.status.absent {
    background-color: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.val-tea { color: #27AE60; font-weight: bold; }
.val-tep { color: #F1C40F; font-weight: bold; }

/* Mascot Nico in Mockup */
.mock-nico {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.nico-bubble {
    background-color: #1F3A5F;
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px 12px 0 12px;
    font-size: 0.72rem;
    max-width: 160px;
    box-shadow: var(--shadow-md);
    line-height: 1.3;
}

.nico-character {
    width: 60px;
    height: 60px;
}

.nico-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: hoverNico 3s ease-in-out infinite;
}

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

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

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Características con Pestañas e Interactividad */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(31, 58, 95, 0.15);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeEffect 0.4s ease-in-out;
}

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

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

.feature-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(9, 177, 168, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-card-header h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--primary-color);
}

.feature-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.solution-primary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.solution-primary p {
    margin: 0;
}

.problem-toggle {
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
    margin-top: auto;
}

.btn-toggle-problem {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
}

.btn-toggle-problem:hover {
    color: #EF4444;
}

.btn-toggle-problem .toggle-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.problem-toggle.open .btn-toggle-problem {
    color: #EF4444;
}

.problem-toggle.open .toggle-icon {
    transform: rotate(180deg);
}

.problem-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.problem-toggle.open .problem-content {
    max-height: 200px;
    margin-top: 10px;
}

.problem-content p {
    background-color: rgba(239, 68, 68, 0.03);
    border-left: 3px solid #EF4444;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* PWA Highlight Section - Light Background for transparent PNG mascot */
.pwa-highlight {
    position: relative;
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow: hidden;
}

.pwa-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--border-color) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.pwa-highlight .container {
    position: relative;
    z-index: 2;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.pwa-highlight .grid-2 {
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
}

.pwa-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pwa-nico-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(31, 58, 95, 0.08));
}

.pwa-text h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.pwa-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.pwa-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.bullet-check {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

/* Pricing Section - Dark Background (Moved here!) with Login doodle pattern */
.pricing {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1F274B 0%, #2559A4 100%);
    color: var(--bg-white);
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 57c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM27 31c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm10 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

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

.pricing-header h2 {
    color: var(--bg-white);
    font-size: 2.25rem;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 12px;
}

/* Pricing Period Toggle */
.price-toggle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--bg-white);
}

.discount-badge {
    background-color: rgba(39, 174, 96, 0.2);
    color: #2ECC71;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

.toggle-btn {
    width: 50px;
    height: 26px;
    background-color: var(--accent-color);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.toggle-btn::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--bg-white);
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: var(--transition);
}

.toggle-btn.yearly::after {
    left: 28px;
}

.pricing-card-container {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 48px;
    border: 2px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: var(--text-dark) !important;
}

.pricing-card.premium {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px -10px rgba(45, 127, 249, 0.15);
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(45, 127, 249, 0.1);
    color: var(--secondary-color) !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color) !important;
}

.price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    color: var(--primary-color) !important;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.price-box .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    line-height: 1;
}

.price-box .period {
    font-size: 1rem;
    color: var(--text-muted) !important;
    margin-left: 6px;
}

.price-description {
    font-size: 0.95rem;
    color: var(--text-muted) !important;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
}

.pricing-features li span {
    color: var(--text-dark) !important;
}

.check-icon {
    color: #27AE60 !important;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted) !important;
    margin-top: 16px;
}

/* FAQ Section (Accordion) */
.faq {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #0F172A;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.95rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trial-note {
        justify-content: center;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pwa-highlight .grid-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pwa-visual {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}
