/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Container Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

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

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

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a252f;
    padding: 0 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a252f;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    padding: 0 20px;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

/* Hero Section - Visual First */
.hero-visual {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-overlay {
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.btn-hero-scroll {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #667eea;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-hero-scroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-hook {
    background: #f8f9fa;
    text-align: center;
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #1a252f;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.text-large {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Split Content Layout */
.section-story-split {
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.split-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.image-sneakers-pile {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Problem Section */
.section-problem-amplify {
    background: #f8f9fa;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

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

.problem-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a252f;
}

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

/* Insight Section */
.section-insight {
    background: #667eea;
    color: #ffffff;
}

.insight-box {
    text-align: center;
    padding: 40px;
}

.insight-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.text-emphasis {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-box strong {
    color: #ffd700;
}

/* Trust Section */
.section-trust {
    background: #ffffff;
}

.trust-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.trust-step {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.trust-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-step p {
    color: #666;
}

/* Testimonials */
.section-testimonials {
    background: #f8f9fa;
}

.testimonial-block {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
    text-align: right;
}

/* Services Section */
.section-services-reveal {
    background: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-featured {
    border-color: #27ae60;
    background: #f0fff4;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    padding: 30px 30px 20px;
    background: #ffffff;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a252f;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0;
}

.service-body {
    padding: 20px 30px 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Urgency Section */
.section-urgency {
    background: #fff3cd;
    padding: 60px 0;
}

.urgency-box {
    text-align: center;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.urgency-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d35400;
}

/* Form Section */
.section-form-main {
    background: #f8f9fa;
}

.order-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-row textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    margin: 0;
    font-weight: 400;
}

.btn-submit-form {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* CTA Sections */
.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.section-final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.section-final-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary-large,
.btn-cta-large {
    display: inline-block;
    padding: 15px 40px;
    background: #3498db;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover,
.btn-cta-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-cta-large {
    background: #ffffff;
    color: #667eea;
}

.btn-cta-large:hover {
    background: #f8f9fa;
    color: #667eea;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #667eea;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.btn-sticky {
    display: block;
    padding: 15px 30px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: #ffffff;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #bbb;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bbb;
    margin: 0;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.page-hero-simple {
    background: #f8f9fa;
    padding: 100px 0 60px;
    margin-top: 70px;
}

.page-hero-simple h1 {
    font-size: 2.5rem;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
}

.contact-block a {
    color: #3498db;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #999;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.map-placeholder p {
    margin: 0;
}

.map-address {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.text-center {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.legal-content strong {
    color: #1a252f;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.legal-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a252f;
}

.legal-table td {
    color: #555;
}

/* Thanks Page */
.thanks-hero {
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    background: #f8f9fa;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.thanks-details p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.thanks-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .section-title-center,
    .section-title-left {
        font-size: 1.8rem;
    }

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

    .trust-steps {
        flex-direction: column;
        gap: 30px;
    }

    .trust-step {
        flex: 1 1 100%;
    }

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

    .problem-card {
        flex: 1 1 100%;
    }

    .services-list {
        flex-direction: column;
    }

    .service-item {
        flex: 1 1 100%;
    }

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

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

    .feature-box {
        flex: 1 1 100%;
    }

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

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

    section {
        padding: 60px 0;
    }

    .order-form {
        padding: 30px 20px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn-hero-scroll {
        padding: 12px 30px;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title-center,
    .section-title-left {
        font-size: 1.5rem;
    }

    .text-large {
        font-size: 1.1rem;
    }

    .service-price {
        font-size: 1.7rem;
    }

    .thanks-hero h1 {
        font-size: 2rem;
    }

    .thanks-subtitle {
        font-size: 1.1rem;
    }
}