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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --dark-color: #002b36;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --success-color: #28a745;
    --border-color: #dee2e6;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.9rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style-position: inside;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-minimal {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 1rem 0;
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 0.8rem 20px;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: var(--light-bg);
}

.hero-scroll {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 20px;
    position: relative;
}

.hero-overlay {
    color: var(--white);
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.story-intro {
    padding: 4rem 20px;
    background: var(--light-bg);
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.problem-amplification {
    padding: 4rem 20px;
    background: var(--white);
}

.problem-amplification h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.problem-card h3 {
    margin-bottom: 0.8rem;
}

.cta-inline {
    text-align: center;
    padding: 2rem 20px;
    background: var(--accent-color);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

.insight-reveal {
    padding: 5rem 20px;
    background: var(--dark-color);
    color: var(--white);
}

.insight-reveal h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 2rem 0;
}

.trust-builder {
    padding: 4rem 20px;
    background: var(--light-bg);
}

.trust-builder h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-scroll {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: var(--text-light);
}

.cta-section {
    padding: 3rem 20px;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-box h2,
.cta-box h3 {
    color: var(--white);
}

.btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.method-reveal {
    padding: 5rem 20px;
    background: var(--white);
}

.method-reveal h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

.benefits-visual {
    padding: 4rem 20px;
    background: var(--light-bg);
}

.benefits-visual h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-large h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

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

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

.sticky-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.pricing-reveal {
    padding: 5rem 20px;
    background: var(--white);
}

.pricing-reveal h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--light-bg);
    line-height: 1.6;
}

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

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

.btn-select:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
}

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

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.order-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.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.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.urgency-block {
    padding: 3rem 20px;
    background: var(--white);
}

.urgency-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
}

.urgency-box h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-weight: 600;
    color: #d84315;
    font-size: 1.15rem;
}

.final-cta {
    padding: 5rem 20px;
    background: var(--light-bg);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.btn-final {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-final:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 20px 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 20px;
    background: var(--white);
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-box {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 5px solid var(--secondary-color);
}

.services-intro {
    padding: 3rem 20px;
    background: var(--white);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 20px;
    background: var(--light-bg);
}

.service-detail {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
}

.service-detail.highlight {
    border: 3px solid var(--success-color);
}

.service-content h2 {
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.service-features li strong {
    color: var(--primary-color);
}

.service-ideal {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-style: italic;
}

.service-btn {
    margin-top: 1.5rem;
}

.comparison-section {
    padding: 4rem 20px;
    background: var(--white);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.comparison-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-section {
    padding: 4rem 20px;
    background: var(--white);
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 6px;
}

.thanks-section {
    padding: 5rem 20px;
    background: var(--light-bg);
    min-height: 70vh;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.order-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.next-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    background: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.thanks-tip {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-top: 3rem;
    text-align: left;
}

.thanks-tip h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.legal-content {
    padding: 3rem 20px;
    background: var(--white);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    box-shadow: var(--shadow);
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

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

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

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .hero-overlay h1 {
        font-size: 3.5rem;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1;
        min-width: 280px;
    }

    .testimonial-scroll {
        flex-direction: row;
    }

    .testimonial {
        flex: 1;
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-large {
        flex: 1;
        min-width: 300px;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1;
        min-width: 320px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .comparison-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .comparison-card {
        flex: 1;
        min-width: 250px;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-overlay h1 {
        font-size: 4rem;
    }

    .problem-grid {
        flex-wrap: nowrap;
    }
}
