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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-primary: #ffffff;
    --text-secondary: #e4e4e4;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-section: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--text-secondary);
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(15, 76, 117, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(15, 76, 117, 0.5);
}

.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 2rem;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-hero-primary {
    background: var(--highlight-color);
    color: var(--text-primary);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 130, 184, 0.4);
}

.cta-hero-primary:hover {
    background: #2a6fa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 130, 184, 0.5);
}

.narrow-story {
    max-width: 740px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-container {
    line-height: 1.8;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.narrow-story p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.problem-section {
    background: var(--bg-section);
    padding: 5rem 2rem;
}

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

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-heading-center {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.problem-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

.problem-conclusion {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-dark);
}

.insight-reveal {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: 5rem 2rem;
}

.insight-reveal .narrow-story {
    padding: 0;
}

.insight-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.insight-reveal p {
    color: var(--text-secondary);
}

.insight-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--highlight-color);
}

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

.transformation-story {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.story-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-image-placeholder {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.trust-logos {
    background: var(--bg-section);
    padding: 3rem 2rem;
}

.trust-heading {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
    font-weight: 600;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 1.5rem 2.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: #999;
}

.method-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.method-intro {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 500;
}

.method-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--bg-section);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.testimonials-inline {
    background: var(--bg-section);
    padding: 5rem 2rem;
}

.testimonial-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.testimonial-block {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
}

.devices-reveal {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.devices-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #555;
}

.device-showcase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.device-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-section);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.device-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.device-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--secondary-color);
}

.device-card p {
    padding: 0 1.5rem 2rem;
    color: #666;
    line-height: 1.6;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.cta-secondary {
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.benefits-deep {
    background: var(--bg-section);
    padding: 5rem 2rem;
}

.benefits-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.benefit-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.pricing-reveal {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.pricing-heading {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #666;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: var(--bg-section);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--highlight-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    min-height: 60px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #666;
}

.price-features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-select-service {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.urgency-section {
    background: var(--bg-section);
    padding: 5rem 2rem;
}

.urgency-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    color: var(--text-primary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 76, 117, 0.3);
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-subtitle {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #666;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-section);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-group-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #666;
}

.form-group-checkbox a {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-submit-form {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    padding: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.final-push {
    background: var(--bg-section);
    padding: 5rem 2rem;
}

.final-push h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.site-footer {
    background: var(--primary-color);
    color: var(--text-secondary);
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-box {
    max-width: 700px;
    background: var(--bg-section);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-box p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.thanks-highlight {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--success-color);
}

.thanks-highlight strong {
    color: var(--accent-color);
}

.btn-return-home {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-return-home:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-primary);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #555;
}

.contact-info-section {
    background: var(--bg-section);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-detail strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .section-heading,
    .section-heading-center {
        font-size: 1.75rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .method-steps {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}