/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1e1e2e;
    --dark-light: #2d2d3f;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 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);
    --radius: 12px;
    --radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

.highlight {
    color: var(--primary);
}

/* Header */
.header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

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

.nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: var(--light);
    padding: 6px;
    border-radius: 100px;
}

.nav-link {
    display: inline-block;
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 14px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link.active,
.nav-link:focus {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    padding: 60px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero h1 {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image-wrap {
    max-width: 760px;
    margin: 0 auto 32px;
}

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

.hero-image-wrap figcaption {
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.875rem;
}

/* Price Comparison */
.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.price-old, .price-new {
    text-align: center;
}

.price-old .label, .price-new .label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.price-old .price {
    font-size: 1.5rem;
    color: var(--gray-light);
}

.price-new .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Form Container */
.form-container, .success-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.coupon-form h2 {
    margin-bottom: 8px;
}

.coupon-form > p {
    color: var(--gray);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-light);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-copy {
    background: var(--light);
    color: var(--dark);
    margin-top: 16px;
}

.btn-copy:hover {
    background: #e5e7eb;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Success Container */
.success-container {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: bounce 0.5s;
}

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

.coupon-code {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px dashed var(--secondary);
    color: #065f46;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    padding: 20px 32px;
    border-radius: var(--radius);
    margin: 24px 0 8px;
    letter-spacing: 2px;
}

.success-info {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 16px 0 24px;
}

/* Trust Section */
.trust-section {
    background: var(--dark);
    padding: 40px 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.trust-badge {
    color: var(--white);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 4px;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.toc-section {
    padding: 48px 0;
    background: var(--white);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: var(--dark) !important;
    background: linear-gradient(135deg, var(--light) 0%, #e5e7eb 100%);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.toc-link::before {
    content: '→';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.toc-link:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.toc-link:hover::before {
    background: var(--primary-dark);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 860px;
    margin: 24px auto 0;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--gray);
}

.section-title {
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 48px;
}

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

.feature-card {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.feature-card p {
    color: var(--gray);
    font-size: 0.9375rem;
}

/* How Section */
.how-section {
    padding: 80px 0;
    background: var(--light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: var(--gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.guides-section {
    padding: 80px 0;
    background: var(--light);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.guide-card {
    text-decoration: none;
    color: var(--dark);
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
}

.guide-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.guide-card p {
    font-size: 0.92rem;
    color: var(--gray);
}

.guide-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background: #e5e7eb;
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 32px;
}

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

.cta-section .btn-primary:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-icon {
    font-size: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Affiliate Notice */
.affiliate-notice {
    background: var(--dark-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    font-size: 0.8125rem;
    line-height: 1.7;
}

.affiliate-notice strong {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--dark-light);
    font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .form-container, .success-container {
        padding: 24px;
        margin: 0 16px;
    }
    
    .price-comparison {
        gap: 16px;
    }
    
    .price-new .price {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .header .container {
        flex-direction: column;
        gap: 12px;
    }

    .nav {
        justify-content: center;
        border-radius: var(--radius);
        padding: 8px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .coupon-code {
        font-size: 1.25rem;
        padding: 16px 20px;
        letter-spacing: 1px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero-subtitle, .form-container {
    animation: fadeIn 0.6s ease-out;
}

.hero-subtitle { animation-delay: 0.1s; }
.form-container { animation-delay: 0.2s; }

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Boxyfon Section */
.boxyfon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    overflow: hidden;
}

.boxyfon-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.boxyfon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.boxyfon-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.highlight-alt {
    color: #ff8e53;
}

.boxyfon-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    line-height: 1.7;
}

.boxyfon-features {
    list-style: none;
    margin-bottom: 32px;
}

.boxyfon-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.boxyfon-price {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.price-label {
    color: rgba(255, 255, 255, 0.7);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff8e53;
}

.btn-boxyfon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-boxyfon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.boxyfon-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.boxyfon-phone {
    position: relative;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2d2d3f 0%, #1a1a2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 142, 83, 0.5);
}

.phone-icon {
    font-size: 4rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.phone-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ff8e53;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.boxyfon-quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ff8e53;
    padding: 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: 280px;
}

.boxyfon-quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.quote-author {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .boxyfon-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .boxyfon-visual {
        order: -1;
    }
    
    .boxyfon-features li {
        text-align: left;
    }
    
    .boxyfon-price {
        flex-direction: column;
        gap: 8px;
    }
}

/* Callout Box */
.callout-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-size: 0.95rem;
}

.callout-box a {
    color: var(--primary-dark);
}

/* Pro/Contra Box */
.pro-contra-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.pro-box, .contra-box {
    padding: 24px;
    border-radius: var(--radius);
}

.pro-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
}

.contra-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
}

.pro-box h4, .contra-box h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.pro-box ul, .contra-box ul {
    list-style: none;
    font-size: 0.9rem;
}

.pro-box li, .contra-box li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.pro-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.contra-box li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: bold;
}

@media (max-width: 600px) {
    .pro-contra-box {
        grid-template-columns: 1fr;
    }
}

/* CTA Box */
.cta-box {
    background: var(--gradient);
    color: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    margin-bottom: 8px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-dark);
    width: auto;
    display: inline-flex;
}

.cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Check List */
.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

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

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Comparison Table */
.comparison-table {
    margin: 32px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th, .comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: var(--dark);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--light);
}

/* Price Highlight Box */
.price-highlight-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 32px 0;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-main .price-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.price-main .price-old {
    color: var(--gray);
    font-size: 1.25rem;
}

.price-main .price-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-main .price-note {
    font-size: 0.875rem;
    color: var(--gray);
}

/* About Content Headings */
.about-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.about-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.about-content ul li {
    margin-bottom: 8px;
    color: var(--gray);
}

/* Legal Pages */
.legal-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.legal-section h1 {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
}

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

.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--dark);
}

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

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

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

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Foboxy Logo */
.foboxy-logo-wrap {
    text-align: center;
    margin-bottom: 32px;
}

.foboxy-logo {
    max-width: 220px;
    height: auto;
}

/* Download Box */
.download-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
}

.download-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.download-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray);
}

.btn-download {
    background: var(--dark);
    color: white;
    padding: 12px 24px;
    font-size: 0.9rem;
    flex-shrink: 0;
    width: auto;
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .download-box {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-download {
        width: 100%;
    }
}

/* Logo Comparison */
.logo-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 32px 0;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-foboxy img {
    max-width: 160px;
    height: auto;
}

.logo-vs {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray);
}

.logo-other {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
}

@media (max-width: 500px) {
    .logo-comparison {
        flex-direction: column;
        gap: 16px;
    }
    
    .logo-foboxy img {
        max-width: 120px;
    }
}

/* Product Comparison (VS Images) */
.product-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, var(--light) 0%, #e5e7eb 100%);
    border-radius: var(--radius-lg);
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 280px;
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--radius);
    background: white;
    padding: 16px;
    box-shadow: var(--shadow);
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.product-vs {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 2px 2px 0 rgba(99, 102, 241, 0.1);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .product-comparison {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .product-item img {
        height: 150px;
    }
    
    .product-vs {
        font-size: 1.5rem;
    }
}
