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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-narrative {
    padding: 120px 20px;
    background: #f9f9f9;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 300;
}

.narrow-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.visual-split {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #333;
}

.emphasis {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 20px;
    margin-top: 24px;
}

.insight-block {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #fff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.centered {
    text-align: center;
}

.insight-block h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.insight-block p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-inline {
    text-align: center;
    padding: 60px 20px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.story-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.story-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.story-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
}

.story-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.story-card h3 {
    padding: 24px 24px 12px;
    font-size: 24px;
}

.story-card p {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.trust-build {
    padding: 100px 20px;
    background: #fff;
}

.trust-build h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.testimonial-visual {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.testimonial-visual blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-visual p {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-visual cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.benefit-reveal {
    padding: 100px 20px;
    background: #fafafa;
}

.benefit-reveal h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.benefit-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-list li {
    padding: 20px 0;
    padding-left: 40px;
    position: relative;
    font-size: 19px;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #667eea;
    font-size: 24px;
}

.pricing-section {
    padding: 120px 20px;
    background: #fff;
}

.pricing-section h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.subtext {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 40px 32px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.price-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    opacity: 0.85;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #333;
}

.price-card.featured .btn-select {
    background: #fff;
    color: #667eea;
}

.price-card.featured .btn-select:hover {
    background: #f0f0f0;
}

.urgency-block {
    padding: 60px 20px;
    background: #fff3cd;
}

.urgency-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #856404;
}

.urgency-block p {
    font-size: 18px;
    color: #856404;
}

.form-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cta-sticky.show {
    display: block;
}

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

.sticky-content span {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 32px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #5568d3;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.thanks-page {
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-page .btn-primary {
    margin-top: 32px;
}

.page-header {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 22px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.content-section h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-section ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .visual-split {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 24px;
    }

    .story-grid {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .order-form {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
    }
}