/* Main Styles for ScribeShot Website */

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

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

/* Header */
.header {
    background: rgba(24, 26, 27, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EAED;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #E8EAED;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #007AFF;
}

.nav .buy-cta {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: #0b1b11;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
}
.nav .buy-cta:hover { color: #052d1e; }

/* Hero Section */
.hero {
    background: #181A1B;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(144, 202, 249, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.badge-text {
    color: #90CAF9;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #E8EAED;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-benefits {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    color: #C7D2FE;
}
.hero-benefits li { margin: 0.25rem 0; }

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.cta-button.primary.alt {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: #062016;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #E8EAED;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating span {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.download-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: #9CA3AF;
}

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

.hero-image-container {
    position: relative;
    max-width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(35, 39, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    color: #E8EAED;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.laptop {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.laptop-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
}

.video-player {
    flex: 1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.notes-panel {
    flex: 1;
    background: #fff;
    padding: 1rem;
    border-left: 1px solid #e0e0e0;
}

.note-item {
    background: #f8f9fa;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

.desk {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 20px;
    background: #8B4513;
    border-radius: 0 0 10px 10px;
}

.coffee-cup {
    position: absolute;
    bottom: -30px;
    right: 20%;
    width: 30px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
}

.notebook {
    position: absolute;
    bottom: -25px;
    left: 20%;
    width: 40px;
    height: 30px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
}

/* Features Section */
.features {
    background: #000;
    color: white;
    padding: 6rem 2rem;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

.features-description {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #007AFF;
}

/* Testimonials Section */
.testimonials-section {
    background: #181A1B;
    padding: 6rem 2rem;
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #E8EAED;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #23272A;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #90CAF9);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-name {
    color: #E8EAED;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.user-title {
    color: #90CAF9;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.user-handle {
    color: #9CA3AF;
    font-size: 0.8rem;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-text {
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Features Section */
.features-section {
    background: #181A1B;
    padding: 6rem 2rem;
}

.features-section .features-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.features-header {
    text-align: center;
    max-width: 100%;
}

.features-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #E8EAED;
    line-height: 1.2;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #2563EB 0%, #90CAF9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Masonry layout using columns */
.features-carousel {
    column-count: 3;
    column-gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #23272A;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 2rem;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #90CAF9);
}

.ai-notes-card::before {
    background: linear-gradient(90deg, #2563EB, #3B82F6);
}

.screenshots-card::before {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.storage-card::before {
    background: linear-gradient(90deg, #8B5CF6, #A78BFA);
}

.speed-card::before {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.sidebar-card::before {
    background: linear-gradient(90deg, #EF4444, #F87171);
}

.feature-image-container {
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

/* How it works */
.how-it-works {
    padding: 4rem 2rem;
    background: #0B0C0E;
}
.hiw-content { max-width: 1100px; margin: 0 auto; }
.hiw-tabs { margin-top: 2rem; }
.hiw-tablist { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hiw-tab { background: #111418; color: #E8EAED; border: 1px solid #1f242b; border-radius: 10px; padding: 0.5rem 0.9rem; cursor: pointer; font-weight: 600; font-size: 0.95rem; }
.hiw-tab.is-active { background: #2563EB; border-color: #2563EB; color: #fff; }
.hiw-panes { margin-top: 1rem; }
.hiw-pane { display: none; background: #121417; border: 1px solid #1f242b; border-radius: 16px; overflow: hidden; }
.hiw-pane.is-active { display: block; }
.hiw-text { padding: 1.25rem; text-align: left; }
.hiw-text .step-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.hiw-text h3 { color: #E8EAED; font-size: 1.25rem; margin: 0 0 0.5rem 0; }
.hiw-text p { color: #9CA3AF; margin: 0; }
.hiw-image-frame { width: 100%; height: 420px; background: #0d0f12; border-top: 1px solid #1f242b; display: flex; align-items: center; justify-content: center; }
.hiw-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }

/* Larger images on bigger screens */
@media (min-width: 768px) {
    .hiw-image-frame { height: 520px; }
}

/* Privacy */
.privacy-section { padding: 4rem 2rem; background: #0E1012; }
.privacy-content { max-width: 900px; margin: 0 auto; text-align: center; }
.privacy-content h2 { color: #E8EAED; margin-bottom: 0.75rem; }
.privacy-content p { color: #9CA3AF; }

/* FAQ */
.faq-section { padding: 4rem 2rem; background: #0B0C0E; }
.faq-content { max-width: 900px; margin: 0 auto; }
.faq-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 1rem; }
.faq-item { background: #121417; border: 1px solid #1f242b; border-radius: 12px; padding: 1rem; }
.faq-item h3 { color: #E8EAED; font-size: 1rem; margin: 0 0 0.5rem 0; }
.faq-item p { color: #9CA3AF; margin: 0; }

/* Coupon timer */
.coupon-timer { margin-top: 0.75rem; color: #90CAF9; font-weight: 600; }
.coupon-timer .label { color: #E8EAED; margin-right: 0.25rem; }

.feature-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8EAED;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.feature-card p {
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Large Demo Elements */
.demo-task-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
}

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

.task-title {
    color: #E8EAED;
    font-size: 1rem;
    font-weight: 500;
}

.task-status {
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 600;
}

.progress-container {
    background: #374151;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-bar-large {
    background: linear-gradient(90deg, #2563EB, #3B82F6);
    height: 100%;
    width: 30%;
    border-radius: 4px;
    animation: progress 2s ease-in-out infinite;
}

.task-timing {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #9CA3AF;
}

.demo-settings-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
}

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

.setting-header span {
    color: #E8EAED;
    font-size: 1rem;
    font-weight: 500;
}

.toggle-switch-large {
    width: 50px;
    height: 28px;
    background: #374151;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch-large.active {
    background: #10B981;
}

.toggle-switch-large::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch-large.active::after {
    transform: translateX(22px);
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.setting-name {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.setting-value {
    color: #E8EAED;
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-storage-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.storage-stats-large {
    margin-bottom: 1.5rem;
}

.storage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E8EAED;
    margin-bottom: 0.5rem;
}

.storage-label {
    color: #9CA3AF;
    font-size: 1rem;
}

.security-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #9CA3AF;
}

.status-dot-large {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #374151;
}

.status-dot-large.online {
    background: #10B981;
    animation: pulse 2s infinite;
}

.demo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.demo-label {
    color: #E8EAED;
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-status {
    color: #10B981;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-progress {
    background: #374151;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #2563EB, #3B82F6);
    height: 100%;
    width: 30%;
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0%, 100% { width: 30%; }
    50% { width: 70%; }
}

.demo-result {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9CA3AF;
}

.demo-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: #374151;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #10B981;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active::after {
    transform: translateX(20px);
}

.demo-settings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9CA3AF;
}

.demo-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EAED;
}

.stat-label {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.demo-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #9CA3AF;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #374151;
}

.status-dot.online {
    background: #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Subscription Section */
.subscription {
    background: #000;
    padding: 6rem 2rem;
    text-align: center;
}

.subscription-content {
    max-width: 600px;
    margin: 0 auto;
}

.subscription h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.subscription p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.subscription-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.subscription-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 8px;
    background: #333;
    color: white;
    font-size: 1rem;
}

.subscription-input::placeholder {
    color: #999;
}

.subscription-button {
    background: #007AFF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscription-button:hover {
    background: #0056b3;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-middle {
    color: #666;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007AFF;
}

/* Pricing Section */
.pricing-section {
    background: #181A1B;
    padding: 6rem 2rem;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #E8EAED;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-card {
    background: #23272A;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.pricing-card.single {
    border: 2px solid transparent;
    background: linear-gradient(#23272A, #23272A) padding-box,
                linear-gradient(135deg, #2563EB, #90CAF9, #10B981) border-box;
    max-width: 500px;
    width: 100%;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB, #90CAF9);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #E8EAED;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    color: #E8EAED;
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    color: #9CA3AF;
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #10B981;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: #9CA3AF;
    font-size: 1rem;
}

.pricing-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.starter-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #E8EAED;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.starter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.single-btn {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.single-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.download-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.download-section h3 {
    color: #E8EAED;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #E8EAED;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.version-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.version-info h4 {
    color: #E8EAED;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.changelog {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.changelog h5 {
    color: #90CAF9;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.changelog ul {
    list-style: none;
    padding: 0;
}

.changelog li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
}

.changelog li:last-child {
    border-bottom: none;
}

/* Asset-specific styles */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Lazy loading for better performance */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-carousel {
        column-count: 2;
        column-gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .features-content,
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-social-proof {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-card {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-carousel {
        column-count: 1;
        column-gap: 1rem;
        padding: 1rem 0;
    }
    
    .features-section h2 {
        font-size: 2rem;
    }
    
    .features-header {
        text-align: center;
        max-width: 100%;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    
    .pricing-cards {
        justify-content: center;
    }
    
    .pricing-card {
        padding: 2rem;
        max-width: 100%;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        display: none;
    }
}
