/* Olaf Motion V2 - Main CSS - 1:1 Match */

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.pb-20 {
    padding-bottom: 5rem;
}

/* ========== PAGES ========== */
.pricing-page,
.contact-page,
.archive-page {
    padding: 5rem 0;
    min-height: 60vh;
}

/* ========== PRICING PAGE ========== */
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pricing-description {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
}

.toggle-label.active {
    color: #1e293b;
}

.toggle-switch {
    width: 3rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-switch.active {
    background: #3b82f6;
}

.toggle-thumb {
    position: absolute;
    top: 0.125rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    background: #1e293b;
    transition: all 0.3s;
}

.toggle-switch.active .toggle-thumb {
    left: 1.625rem;
}

.toggle-badge {
    font-size: 0.75rem;
    color: #10b981;
    background: #d1fae5;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    margin-left: 0.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 2.5rem;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.pricing-card.popular {
    border-color: #1e293b;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 2.25rem;
    font-weight: 700;
}

.price-period {
    color: #64748b;
    font-size: 0.875rem;
}

.hidden {
    display: none;
}

.plan-downloads {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
    background: #f1f5f9;
    color: #1e293b;
}

.plan-button:hover {
    background: #e2e8f0;
}

.popular-button {
    background: #1e293b;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.popular-button:hover {
    opacity: 0.9;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #1e293b;
}

.check-icon.green {
    color: #10b981;
}

.save-text {
    color: #10b981;
    font-weight: 600;
}

.plan-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: #dbeafe;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-muted {
    color: #64748b;
}

.contact-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 700;
}

.info-value {
    font-size: 0.875rem;
    color: #64748b;
}

.contact-form {
    background: white;
    border-radius: 2.5rem;
    padding: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(241, 245, 249, 0.3);
    border: 1px solid transparent;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: white;
    border-color: #cbd5e1;
}

.form-group textarea {
    resize: none;
    padding: 1rem;
}

.form-button {
    width: 100%;
    height: 3.5rem;
    background: #1e293b;
    color: white;
    border-radius: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-button:hover {
    opacity: 0.9;
}

/* ========== ARCHIVE PAGE ========== */
.archive-header {
    margin-bottom: 4rem;
}

.archive-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title-italic {
    font-style: italic;
}

.archive-description {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 48rem;
}

.archive-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.search-box input {
    width: 100%;
    background: white;
    border: 1px solid #cbd5e1;
    height: 3.5rem;
    padding-left: 3rem;
    padding-right: 1rem;
    border-radius: 1rem;
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-button {
    height: 3.5rem;
    padding: 0 1.5rem;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-button:hover {
    background: rgba(241, 245, 249, 0.5);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.video-section-header {
    grid-column: 1 / -1;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.section-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: #1e293b;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.video-card-media {
    position: relative;
    background: #f1f5f9;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.video-card-media.ratio-9-16 {
    aspect-ratio: 9 / 16;
}

.video-card-media.ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.no-videos {
    grid-column: 1 / -1;
    text-align: center;
    color: #64748b;
    padding: 4rem 0;
    font-size: 1.125rem;
}

.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: white;
    border: 1px solid #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.pagination .current {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
}

/* ========== SINGLE VIDEO PAGE ========== */
.back-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #1e293b;
}

.back-link svg {
    margin-right: 0.5rem;
}

.single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.video-preview-box {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 28rem;
    margin: 0 auto;
}

.video-preview-box.ratio-9-16 {
    aspect-ratio: 9 / 16;
}

.video-preview-box.ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.video-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.video-preview-box:hover .preview-overlay {
    opacity: 1;
}

.preview-button {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(1rem);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.video-preview-box:hover .preview-button {
    transform: translateY(0);
}

.single-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category {
    margin-bottom: 1.5rem;
}

.category-badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #dbeafe;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #fbbf24;
}

.rating-count {
    color: rgba(59, 130, 246, 0.6);
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.product-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.product-info-box {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
}

.info-icon-text {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.75rem;
    border: 1px solid #1e293b;
    border-radius: 0.25rem;
}

.info-item svg {
    flex-shrink: 0;
    color: #1e293b;
}

.info-item strong {
    color: #1e293b;
    font-weight: 500;
}

.product-actions {
    margin-bottom: 1rem;
}

.download-button,
.buy-button {
    width: 100%;
    height: 3.5rem;
    background: #3b82f6;
    color: white;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

.download-button:hover,
.buy-button:hover {
    background: #2563eb;
    box-shadow: 0 20px 30px -5px rgba(59, 130, 246, 0.4);
    transform: translateY(-0.125rem);
}

.or-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.or-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.or-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.owns-video-text {
    text-align: center;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.75rem;
}

.secure-text {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
}

/* ========== AUTH PAGES ========== */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-center;
    padding: 5rem 1.5rem;
}

.auth-container {
    width: 100%;
    max-width: 28rem;
    animation: fadeIn 0.7s ease;
}

.auth-card {
    background: white;
    border-radius: 2.5rem;
    padding: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.auth-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    transition: opacity 0.3s;
}

.auth-logo:hover {
    opacity: 0.8;
}

.auth-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.title-accent {
    color: #64748b;
}

.auth-description {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.success-message svg {
    flex-shrink: 0;
    color: #10b981;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.error-message svg {
    flex-shrink: 0;
    color: #ef4444;
}

.auth-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.25rem;
}

.forgot-link {
    font-size: 0.625rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.forgot-link:hover {
    color: #2563eb;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.input-wrapper input {
    width: 100%;
    background: rgba(241, 245, 249, 0.3);
    border: 1px solid transparent;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.input-wrapper input:focus {
    background: white;
    border-color: #cbd5e1;
}

.auth-button {
    width: 100%;
    height: 3.5rem;
    background: #1e293b;
    color: white;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.auth-button:hover {
    opacity: 0.9;
}

.auth-divider {
    position: relative;
    margin: 2.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(226, 232, 240, 0.6);
}

.auth-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3rem;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.social-button:hover {
    background: rgba(241, 245, 249, 0.3);
}

.auth-footer {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.auth-footer a {
    font-weight: 700;
    color: #3b82f6;
}

.auth-footer a:hover {
    color: #2563eb;
}

.terms-box {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(219, 234, 254, 0.5);
    border-radius: 1rem;
    border: 1px solid rgba(147, 197, 253, 0.5);
}

.terms-box svg {
    flex-shrink: 0;
    color: #3b82f6;
    margin-top: 0.125rem;
}

.terms-text {
    font-size: 0.625rem;
    color: #1e40af;
    line-height: 1.6;
    font-style: italic;
}

.terms-text a {
    text-decoration: underline;
    font-weight: 700;
}

/* ========== DASHBOARD ========== */
.dashboard-page {
    background: rgba(241, 245, 249, 0.3);
    min-height: 100vh;
    padding: 3rem 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.user-avatar {
    width: 5rem;
    height: 5rem;
    background: #dbeafe;
    color: #3b82f6;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.user-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.user-email {
    font-size: 0.875rem;
    color: #64748b;
}

.dashboard-nav {
    background: white;
    border-radius: 2rem;
    padding: 0.5rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    color: #64748b;
}

.nav-item:hover {
    background: rgba(241, 245, 249, 0.8);
}

.nav-item.active {
    background: #1e293b;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-item.logout {
    color: #ef4444;
}

.nav-item.logout:hover {
    background: rgba(254, 226, 226, 0.5);
}

.nav-divider {
    height: 1px;
    background: rgba(226, 232, 240, 0.4);
    margin: 0.5rem 1rem;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-icon {
    padding: 0.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.stat-icon.purple {
    background: #f3e8ff;
    color: #a855f7;
}

.stat-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #3b82f6;
    background: #dbeafe;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-style: italic;
}

.stat-badge.purple {
    color: #a855f7;
    background: #f3e8ff;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.value-main {
    font-size: 2.25rem;
    font-weight: 700;
}

.value-sub {
    color: #64748b;
    font-size: 1.125rem;
}

.stat-progress {
    width: 100%;
    height: 0.5rem;
    background: #f1f5f9;
    border-radius: 9999px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #3b82f6;
    border-radius: 9999px;
    transition: width 1s ease;
}

.stat-plan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.stat-refill {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 1rem;
    font-style: italic;
    font-weight: 500;
}

.lab-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lab-icon {
    width: 3rem;
    height: 3rem;
    background: #3b82f6;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.lab-card:hover .lab-icon {
    transform: scale(1.1);
}

.lab-title {
    font-weight: 700;
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.lab-description {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    max-width: 11.25rem;
}

.lab-button {
    width: 100%;
    background: #1e293b;
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.lab-button:hover {
    opacity: 0.9;
}

.recent-section {
    background: white;
    border-radius: 2.5rem;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.recent-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
}

.view-all-button {
    font-size: 0.75rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    cursor: pointer;
}

.view-all-button:hover {
    color: #2563eb;
}

.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.subscription-plan{
    color: #1e293b !important;

}
.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: 1.5rem;
    background: rgba(241, 245, 249, 0.2);
    border: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.3s;
}

.download-item:hover {
    background: rgba(241, 245, 249, 0.4);
}

.download-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.download-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.4);
    font-style: italic;
    transition: border-color 0.3s;
}

.download-item:hover .download-icon {
    border-color: #bfdbfe;
}

.download-info {
    display: flex;
    flex-direction: column;
}

.download-name {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.download-meta {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0;
}

.library-download-btn {
    height: 2.5rem;
    padding: 0 1.25rem;
    background: white;
    color: #1e293b;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.4);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.library-download-btn:hover {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tab-header svg {
    color: #3b82f6;
}

.tab-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.library-item {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(241, 245, 249, 0.2);
    border: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.library-item:hover {
    border-color: #bfdbfe;
}

.library-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.library-item-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.4);
    font-style: italic;
}

.library-item-info {
    flex: 1;
}

.library-item-name {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0;
}

.library-item-type {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin: 0;
}

.library-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.2);
}

.library-item-date {
    font-size: 0.625rem;
    color: #64748b;
    font-weight: 500;
}

.library-item-download {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #3b82f6;
    transition: color 0.3s;
    text-decoration: none;
}

.library-item-download:hover {
    color: #2563eb;
}

.subscription-card {
    background: linear-gradient(135deg, #1e293b 0%, #64748b 100%);

    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.subscription-main {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.subscription-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

.subscription-plan {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    font-style: italic;
    margin-top: 0.25rem;
}

.subscription-price {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.subscription-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    z-index: 10;
}

.subscription-next-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
    margin: 0;
}

.subscription-next-date {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.subscription-manage-button {
    background: white;
    color: #1e293b;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.subscription-manage-button:hover {
    opacity: 0.9;
}

.subscription-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(50%, -50%);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.payment-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(241, 245, 249, 0.2);
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.payment-title {
    font-weight: 700;
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-dots {
    display: flex;
    gap: -0.25rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    opacity: 0.8;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.payment-number {
    font-family: 'Monaco', monospace;
    font-size: 0.875rem;
    margin: 0;
}

.cancel-button {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.cancel-button:hover {
    color: #dc2626;
}

.settings-form {
    max-width: 36rem;
}

.settings-save-button {
    padding: 0.75rem 2rem;
    background: #1e293b;
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.settings-save-button:hover {
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 5rem 0;
    min-height: 100vh;
}

.legal-container {
    max-width: 48rem;
}

.legal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.legal-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-date {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: #64748b;
}

.legal-intro {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 500;
    font-style: italic;
}

.legal-text {
    color: #1e293b;
    line-height: 1.8;
}

.legal-section {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.legal-section.success {
    background: white;
}

.legal-section.danger {
    background: rgba(254, 226, 226, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-header-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-icon {
    flex-shrink: 0;
}

.section-icon.success {
    color: #10b981;
}

.section-icon.danger {
    color: #ef4444;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    font-style: italic;
    margin: 0;
}

.section-title-small {
    font-weight: 700;
    font-style: italic;
    color: #1e293b;
    margin: 0;
}

.danger-title {
    color: #ef4444;
}

.legal-list {
    list-style: disc;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.danger-list {
    color: rgba(239, 68, 68, 0.9);
}

.small-text {
    font-size: 0.875rem;
    margin: 0;
}

.italic-text {
    font-style: italic;
}

.danger-text {
    font-weight: 700;
    color: #ef4444;
}

.highlight-box {
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    background: rgba(241, 245, 249, 0.3);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
}

.legal-section-small {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.legal-section-alt {
    background: rgba(241, 245, 249, 0.3);
    padding: 2rem;
    border-radius: 1.5rem;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.legal-footer {
    padding-top: 3rem;
    text-align: center;
    border-top: 1px solid #cbd5e1;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
}

/* ========== THANK YOU PAGE ========== */
.thankyou-page {
    min-height: 80vh;
    display: flex;
    flex-col: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem;
    background: rgba(241, 245, 249, 0.3);
}

.thankyou-container {
    width: 100%;
    max-width: 28rem;
    animation: fadeInZoom 0.7s ease;
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.receipt-card {
    background: white;
    border-radius: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.receipt-top {
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px dashed #cbd5e1;
    position: relative;
}

.receipt-notch {
    position: absolute;
    bottom: -0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(241, 245, 249, 0.3);
    border-radius: 50%;
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.receipt-notch.left {
    left: -0.75rem;
}

.receipt-notch.right {
    right: -0.75rem;
}

.receipt-icon {
    width: 4rem;
    height: 4rem;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #f59e0b;
}

.receipt-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.receipt-subtitle {
    color: #64748b;
    font-size: 0.875rem;
}

.receipt-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.receipt-field {
    display: flex;
    flex-direction: column;
}

.receipt-field.right {
    text-align: right;
}

.field-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.field-value {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.field-value.mono {
    font-family: 'Monaco', monospace;
    font-weight: 700;
}

.field-value.large {
    font-size: 1.125rem;
    font-weight: 700;
}

.payment-method-box {
    background: rgba(241, 245, 249, 0.3);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-dots {
    display: flex;
    gap: -0.25rem;
}

.payment-name {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.payment-card {
    font-size: 0.625rem;
    color: #64748b;
    line-height: 1.3;
    margin: 0;
}

.barcode-section {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.barcode {
    display: flex;
    gap: 0.125rem;
    height: 4rem;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    padding: 0 1rem;
    overflow: hidden;
}

.barcode-line {
    background: #1e293b;
    flex: 1;
    min-width: 1px;
}

.barcode-text {
    font-size: 0.625rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5em;
    color: #64748b;
}

.mono {
    font-family: 'Monaco', monospace;
}

.receipt-bottom-scallops {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
    margin-bottom: -0.5rem;
}

.scallop {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(241, 245, 249, 0.3);
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.action-button {
    flex: 1;
    height: 3.5rem;
    border-radius: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.action-button.primary {
    background: #1e293b;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.action-button.primary:hover {
    opacity: 0.9;
}

.action-button.secondary {
    background: white;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.action-button.secondary:hover {
    background: rgba(241, 245, 249, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .contact-grid,
    .single-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-title,
    .contact-title,
    .archive-title {
        font-size: 2.5rem;
    }

    
        .logo img {
         width: 25% !important;
        max-width: 15vh;
    }
    .product-title {
        font-size: 2rem;
    }

    .archive-filters {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* ========== LAYOUT ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER (from original) ========== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    transition: color 0.2s;
}

.nav a:hover {
    color: #1e293b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #1e293b;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.btn-lg {
    height: 4rem;
    padding: 0 3rem;
    font-size: 1.125rem;
}

.btn-search {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.2s;
}

.btn-search:hover {
    background: #f1f5f9;
    color: #1e293b;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    padding: 5rem 1rem 6rem;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0.4;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 1.5rem 10rem;
    }
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    color: #3b82f6;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.hero-badge span {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.icon-sparkles {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: #1e293b;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title-accent {
    color: #3b82f6;
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.avatar-group {
    display: flex;
    gap: 0;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 4px solid white;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    margin-left: -0.75rem;
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.highlight {
    color: #1e293b;
    font-weight: 700;
    font-style: italic;
}

.hero-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.4);
    max-width: 20rem;
    margin: 0 auto;
}

.social-link {
    padding: 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    color: #64748b;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #3b82f6;
    border-color: #bfdbfe;
    transform: scale(1.1);
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: rgba(191, 219, 254, 0.4);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.blob-1 {
    top: 25%;
    left: -12rem;
}

.blob-2 {
    bottom: 0;
    right: -12rem;
}

/* ========== WHY SECTION ========== */
.why-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(226, 232, 240, 0.4);
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-italic {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title-italic {
        font-size: 3rem;
    }
}

.section-subtitle {
    color: #64748b;
    max-width: 36rem;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: white;
    border-radius: 2.5rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.why-card-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.7s;
    overflow: hidden;
}

.why-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card:hover .why-card-visual {
    transform: scale(1.05);
}

.bg-blue {
    background-color: #eff6ff;
}

.bg-purple {
    background-color: #faf5ff;
}

.bg-pink {
    background-color: #fdf2f8;
}

.why-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.why-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
}

.why-card-text {
    color: #64748b;
    line-height: 1.6;
}

/* ========== LIBRARY SECTION ========== */
.library-section {
    padding: 8rem 0;
}

.library-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .library-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.library-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.library-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: #3b82f6;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.library-icon-box svg {
    stroke: white;
}

.library-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.library-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    font-style: italic;
    max-width: 36rem;
}

.library-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #3b82f6;
    transition: gap 0.3s;
}

.library-link:hover {
    gap: 0.75rem;
}

/* ========== VIDEO GRID ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem 2rem;
}

.video-card {
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-8px);
}

.video-card a {
    display: block;
}

.video-card-media {
    position: relative;
    background: #f1f5f9;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Default aspect ratio - vertical for reels */
.video-card-media:not(.ratio-1-1):not(.ratio-9-16) {
    aspect-ratio: 9 / 16;
}

.video-card-media.ratio-9-16 {
    aspect-ratio: 9 / 16;
}

.video-card-media.ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.video-card:hover .video-card-media {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.video-direct {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-media img,
.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-preview {
    opacity: 1;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-card-content {
    padding: 0 0.5rem;
}

.video-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.video-card-price {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    color: #1e293b;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 8rem 0;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.testimonials-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 4.5rem;
    }
}

.text-blue {
    color: #3b82f6;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-style: italic;
    max-width: 32rem;
}

.testimonials-rating {
    display: none;
}

@media (min-width: 768px) {
    .testimonials-rating {
        display: block;
    }
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-value {
    margin-left: 0.5rem;
    font-weight: 700;
}

.rating-label {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: #eff6ff;
    color: #3b82f6;
    border: 1px solid rgba(191, 219, 254, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.5s;
}

.testimonial-card:hover .testimonial-avatar {
    background: #3b82f6;
    color: white;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.875rem;
    margin: 0;
}

.testimonial-role {
    font-size: 0.625rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0.25rem 0 0 0;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    color: #64748b;
    flex: 1;
    margin-bottom: 2rem;
    transition: color 0.5s;
}

.testimonial-card:hover .testimonial-text {
    color: #1e293b;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars .star {
    font-size: 0.75rem;
}

/* ========== FINAL CTA ========== */
.final-cta-section {
    padding: 10rem 0;
}

.final-cta-card {
    max-width: 64rem;
    margin: 0 auto;
    background: white;
    border-radius: 3rem;
    padding: 4rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-card {
        padding: 6rem;
    }
}

.cta-blob {
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 16rem;
    height: 16rem;
    background: rgba(191, 219, 254, 0.5);
    border-radius: 50%;
    filter: blur(60px);
    transition: transform 1s;
}

.final-cta-card:hover .cta-blob {
    transform: scale(1.5);
}

.final-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 4.5rem;
    }
}

.final-cta-text {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.final-cta-footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.final-cta-footer svg {
    stroke: #10b981;
}

.separator {
    opacity: 0.3;
}

/* ========== FOOTER ========== */
.footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #1e293b;
}

.footer-col p {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #64748b;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    padding: 2rem;
    transition: right 0.3s;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #64748b;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #1e293b;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.mobile-nav a {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: #3b82f6;
}

.mobile-menu-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}

.mobile-nav .btn {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
        padding: 4px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .header-actions {
        display: none;
    }
    
    .logo {
        flex-shrink: 0;
    }
    

}

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== LAYOUT ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.main {
    min-height: 100vh;
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    transition: color 0.2s;
}

.nav a:hover {
    color: #1e293b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    background: none;
}

.btn-primary {
    background: #1e293b;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-search {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.2s;
}

.btn-search:hover {
    background: #f1f5f9;
    color: #1e293b;
}

/* ========== HERO ========== */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-text {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== VIDEOS SECTION ========== */
.videos {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* ========== VIDEO CARD ========== */
.video-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.video-card-media {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #f1f5f9;
    overflow: hidden;
}

.video-card-media img,
.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-preview {
    opacity: 1;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-card-content {
    padding: 1.25rem;
}

.video-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.video-card-price {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    color: #1e293b;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========== CTA SECTION ========== */
.cta {
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #1e293b;
}

.footer-col p {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #64748b;
}

.plan-features{ margin-top: 2rem}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

/* ========== DOWNLOAD MODAL ========== */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-modal.show {
    display: flex;
    opacity: 1;
}

.download-modal-content {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    animation: modalSlideIn 0.3s ease forwards;
}

@keyframes modalSlideIn {
    to {
        transform: translateY(0);
    }
}

.download-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-modal-icon.success {
    background: #d1fae5;
    color: #10b981;
}

.download-modal-icon.error {
    background: #fee2e2;
    color: #ef4444;
}

.download-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.download-modal-message {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-modal-close {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.download-modal-close:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* AI Buttons Share Styles */
.ai-buttons-share-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
}

.ai-buttons-share-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ai-buttons-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ai-buttons-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.ai-buttons-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ChatGPT */
.ai-buttons-chatgpt {
    background: #10a37f;
    color: #ffffff;
}

.ai-buttons-chatgpt:hover {
    background: #0d8a6b;
}

/* Perplexity */
.ai-buttons-perplexity {
    background: #0ea5e9;
    color: #ffffff;
}

.ai-buttons-perplexity:hover {
    background: #0284c7;
}

/* Grok */
.ai-buttons-grok {
    background: #000000;
    color: #ffffff;
}

.ai-buttons-grok:hover {
    background: #1c1c1c;
}

/* Claude AI */
.ai-buttons-claude {
    background: #d97757;
    color: #ffffff;
}

.ai-buttons-claude:hover {
    background: #c96643;
}

/* Gemini */
.ai-buttons-gemini {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 100%);
    color: #ffffff;
}

.ai-buttons-gemini:hover {
    opacity: 0.9;
}

/* Google AI */
.ai-buttons-google-ai {
    background: #4285f4;
    color: #ffffff;
}

.ai-buttons-google-ai:hover {
    background: #3367d6;
}

/* Responsive */
@media (max-width: 640px) {
    .ai-buttons-buttons-row {
        flex-direction: column;
    }
    
    .ai-buttons-share-button {
        width: 100%;
    }
}
