/* KryptoTax.pl - Minimal Black & White Theme */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

/* Header */
.header {
    background: #fff;
    color: #000;
    padding: 1.25rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #000;
}

.logo-text {
    display: block;
}

.logo-img {
    display: none;
}

/* Pricing container */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.badge-icon {
    display: none;
}

.contact-icon {
    display: none;
}

.icon-emoji {
    display: none;
}

.icon-minimal {
    display: inline;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.5;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: #fff;
    color: #000;
    padding: 5rem 5% 5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Buttons */
.cta-button {
    background: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    border: 1px solid #000;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: #333;
}

.cta-button.outline {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.cta-button.outline:hover {
    background: #000;
    color: #fff;
}

/* Trust Badges */
.trust-badges {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
}

/* Sections */
.section {
    padding: 3rem 5% 7rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.process-step {
    padding: 2.5rem 0;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    border-bottom: 1px solid #e0e0e0;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.step-content p {
    color: #555;
    font-weight: 300;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    padding: 2rem 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-card p {
    color: #555;
    font-weight: 300;
    font-size: 0.95rem;
}

.alt-bg {
    background: #f8f8f8;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Founders */
.founders-section {
    background: #fff;
}

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

.founder-card {
    text-align: left;
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.founder-title {
    font-size: 0.9rem;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.founder-credentials {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: #555;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.linkedin-link:hover {
    opacity: 0.6;
}

/* Pricing */
.pricing-section {
    background: #f8f8f8;
    color: #000;
    padding: 6rem 5%;
    border-top: 1px solid #eee;
}

.pricing-section .section-title {
    color: #000;
}

.pricing-section .section-subtitle {
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.price-card {
    background: #fff;
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.price-card .price-features:last-of-type {
    flex-grow: 1;
}

.price-card .cta-button {
    margin-top: auto;
}

.price-card.featured {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #f0f0f0;
    color: #333;
    padding: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.price-subtitle {
    font-size: 0.8rem;
    opacity: 0.5;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.price-note {
    font-size: 0.8rem;
    opacity: 0.5;
    display: block;
    margin-bottom: 2rem;
}

.price-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 1.5rem 0 0.75rem;
    opacity: 0.5;
}

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

.price-features li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.8;
}

.price-features li:before {
    content: '— ';
    opacity: 0.4;
}

.price-card .cta-button {
    margin-top: auto;
    width: 100%;
    text-align: center;
    display: block;
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
}

.price-card.featured .cta-button {
    background: #000;
    color: #fff;
    border-color: #000;
}

.price-card.featured .cta-button:hover {
    background: #333;
}

/* Legal */
.legal-section {
    background: #fff;
    border-top: 1px solid #eee;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .legal-cards {
        grid-template-columns: 1fr;
    }
}

.legal-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.legal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.legal-reference {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-link {
    color: #000;
    font-weight: 500;
}

.legal-link:hover {
    opacity: 0.6;
}

.legal-points p {
    color: #555;
    font-weight: 300;
    margin-bottom: 1rem;
}

.article-ref {
    color: #888;
    font-size: 0.85rem;
}

.legal-note {
    background: #f5f5f5;
    padding: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.legal-disclaimer {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.disclaimer-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.disclaimer-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.disclaimer-content p {
    color: #666;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Contact */
.contact-section {
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.contact-item {
    text-align: center;
    padding: 2rem 1rem;
}

.contact-item strong {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.contact-item a,
.contact-item span {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: #fff;
    color: #000;
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid #eee;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #fff;
    color: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer p {
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 0;
        border-bottom: 1px solid #eee;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .founders-grid,
    .features,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .legal-disclaimer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
