/* ServerBuddy V3 - Professional & Refined Design */

:root {
    /* Professional color palette */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --secondary: #059669;
    --accent: #7C3AED;
    
    /* Neutral colors */
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

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

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--gray-900);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: background-color 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, transparent 100%);
    z-index: -1;
}

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

.hero-tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--primary);
}

.hero-description {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-900);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.hero-meta {
    display: flex;
    gap: 32px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--gray-600);
}

.meta-item i {
    color: var(--secondary);
}

/* Hero Visual */
.app-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-icon {
    width: 360px;
    height: 360px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.app-screenshot {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.icon-reflection {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    filter: blur(20px);
}

/* Trust Section */
.trust {
    padding: 30px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.trust-label {
    font-size: 14px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Workflow Section */
.workflow {
    padding: 80px 0;
    background: var(--gray-50);
}

.workflow-showcase {
    margin-top: 60px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse .showcase-content {
    direction: ltr;
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 20px;
}

.showcase-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.showcase-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.showcase-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.author strong {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author span {
    font-size: 14px;
    color: var(--gray-600);
}

/* Workflow CTA */
.workflow-cta {
    text-align: center;
    margin-top: 60px;
    margin-bottom: -20px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--gray-50);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 60px auto;
}

.price-column {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-column.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 32px;
}

.price-header h3 {
    margin-bottom: 16px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
}

.period {
    font-size: 18px;
    color: var(--gray-600);
}

.price-features {
    flex: 1;
    text-align: center;
}

.price-features ul {
    list-style: none;
    margin: 0 auto 12px;
    display: inline-block;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-features i {
    color: var(--secondary);
}

.price-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
}

.update-note {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.pricing-faq {
    margin-top: 80px;
}

.pricing-faq h4 {
    text-align: center;
    margin-bottom: 40px;
}

/* Download Section */
.download {
    padding: 60px 0;
    text-align: center;
    background: var(--gray-50);
}

.download .section-header {
    margin-bottom: 30px;
}

.download-actions {
    margin-top: 10px;
}

.download-meta {
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.faq-item p {
    color: var(--gray-600);
}

/* Download CTA */
.download-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.download-box {
    display: inline-block;
}

.download-button {
    display: block;
    background: var(--gray-900);
    color: white;
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.download-button:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.button-content i {
    font-size: 32px;
}

.button-text {
    text-align: left;
}

.button-text strong {
    display: block;
    font-size: 18px;
}

.button-text span {
    font-size: 14px;
    opacity: 0.8;
}

.download-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.link-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.link-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-400);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--gray-400);
    font-size: 20px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid,
    .showcase-item,
    .features-grid,
    .testimonials-grid,
    .pricing-table,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .app-icon {
        width: 280px;
        height: 280px;
    }
    
    .app-screenshot {
        max-width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Screenshots Page Styles */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--gray-50) 0%, transparent 100%);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.page-hero p {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 80px 0;
}

.screenshot-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-4px);
}

.screenshot-item img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.screenshot-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.screenshot-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.screenshots-cta {
    text-align: center;
    padding: 80px 0;
}

.screenshots-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* FAQs Page Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section:not(:first-child) {
    margin-top: 80px;
}

.faq-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    padding-left: 0;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    padding: 60px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    margin-top: 40px;
    margin-bottom: 80px;
}

.faq-cta h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-cta p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: scaleIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gray-300);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0 80px;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 0 0 24px 24px;
    color: var(--gray-700);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

/* Purchase Page Styles */
.purchase-section {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, transparent 100%);
    min-height: 100vh;
}

.purchase-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.purchase-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.purchase-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    margin-bottom: 60px;
}

.purchase-details h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.price-display {
    margin-bottom: 40px;
}

.price-display .price {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.price-display .price-type {
    font-size: 18px;
    color: var(--gray-600);
    margin-top: 8px;
    display: block;
}

.features-list {
    margin-bottom: 32px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.features-list h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-700);
    font-size: 16px;
}

.features-list li i {
    color: var(--secondary);
    font-size: 16px;
    width: 16px;
}

.renewal-info {
    background: var(--gray-50);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    border-left: 4px solid var(--primary);
}

.renewal-info p {
    margin: 0;
    color: var(--gray-600);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.renewal-info i {
    color: var(--primary);
}

.primary-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 0 auto 32px;
    min-width: 280px;
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.payment-methods {
    text-align: center;
}

.payment-methods p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.payment-icons i {
    font-size: 24px;
    color: var(--gray-400);
}

.purchase-faq {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.purchase-faq h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 32px;
    text-align: center;
}

.purchase-faq .faq-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.purchase-faq .faq-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.purchase-faq .faq-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.email-protected {
    color: var(--primary);
    font-weight: 500;
}

/* Success State Styles */
.success-content {
    text-align: center;
}

.success-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    margin-bottom: 60px;
}

.success-icon {
    margin-bottom: 32px;
}

.success-icon i {
    font-size: 80px;
    color: var(--secondary);
}

.success-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.success-message {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 32px;
}

.step-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.success-actions .btn {
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.success-actions .btn-primary {
    background: var(--primary);
    color: white;
}

.success-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.success-actions .btn-secondary {
    background: var(--gray-100);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
}

.success-actions .btn-secondary:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

.support-note {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.support-note p {
    margin: 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.support-note i {
    color: var(--primary);
}

/* Purchase page responsive */
@media (max-width: 768px) {
    .purchase-section {
        padding: 120px 0 60px;
    }
    
    .purchase-content h1 {
        font-size: 36px;
    }
    
    .purchase-card {
        padding: 32px 24px;
    }
    
    .purchase-details h2 {
        font-size: 24px;
    }
    
    .price-display .price {
        font-size: 56px;
    }
    
    .features-list {
        max-width: 100%;
    }
    
    .primary-button {
        min-width: 100%;
        padding: 18px 24px;
    }
    
    .success-card {
        padding: 32px 24px;
    }
    
    .success-content h1 {
        font-size: 32px;
    }
    
    .success-icon i {
        font-size: 64px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive updates for new pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Support Page Styles */
.support-content {
    padding: 40px 0 80px 0;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 36px;
    color: #007bff;
}

.support-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.support-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.support-card .btn {
    display: inline-block;
    margin-top: auto;
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-section ul {
    margin: 20px 0 30px 20px;
}

.contact-section ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}