/* 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.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.brand {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.brand a {
    color: inherit;
}

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

.nav-links a {
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

/* Hero - Visual Dominant */
.hero-visual-dominant {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #ffffff;
    color: #2c2c2c;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 5rem 0;
}

.story-hook {
    background-color: #f8f8f8;
    padding: 6rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.visual-break {
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

/* Split Content */
.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
}

.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0;
}

/* CTAs */
.cta-inline {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #1a1a1a;
}

/* Insight Reveal */
.insight-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6rem 0;
}

.insight-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Visual Grid Story */
.grid-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grid-item {
    flex: 1 1 calc(50% - 1.5rem);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.grid-item.large {
    flex: 1 1 100%;
}

.grid-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
}

.grid-caption h4 {
    margin-bottom: 0.5rem;
}

.grid-caption p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Testimonials */
.testimonial-inline {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.testimonial-inline.dark {
    background-color: #2c2c2c;
    color: #ffffff;
}

blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding: 0;
}

cite {
    display: block;
    font-style: normal;
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.7;
}

/* Trust Building */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.trust-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Benefit Layers */
.benefit-feature {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.benefit-feature.reverse {
    flex-direction: row-reverse;
}

.benefit-feature img {
    flex: 1;
    border-radius: 8px;
    max-width: 600px;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Transformation Story */
.transformation-story {
    background-color: #f8f8f8;
    padding: 6rem 0;
}

.story-blocks p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Social Proof */
.proof-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.proof-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.proof-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.proof-name {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Pricing Section */
.pricing-reveal {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
}

.pricing-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 2rem auto 4rem;
    text-align: center;
    color: #555;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2c2c2c;
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 1.5rem 0;
}

.cta-price {
    width: 100%;
    padding: 1rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-price:hover {
    background-color: #1a1a1a;
}

/* Urgency Block */
.urgency-block {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 3rem 0;
}

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

.urgency-content h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.urgency-content p {
    color: #856404;
    margin-bottom: 0.5rem;
}

/* Form Section */
.final-cta-block {
    background-color: #f8f8f8;
    padding: 6rem 0;
}

.form-intro {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 3rem;
    text-align: center;
    color: #555;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.cta-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #1a1a1a;
}

/* Guarantee Footer */
.guarantee-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.guarantee-footer p {
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    opacity: 0.8;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-button {
    display: block;
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background-color: #f8f8f8;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #555;
}

/* About Page Styles */
.about-story,
.about-approach,
.about-values,
.about-commitment {
    padding: 5rem 0;
}

.about-visual {
    padding: 0;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
}

/* Services Page */
.services-intro,
.services-guarantee {
    padding: 3rem 0;
}

.services-catalog {
    padding: 5rem 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

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

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-service:hover {
    background-color: #1a1a1a;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 8px;
}

.contact-details {
    margin-top: 3rem;
}

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

.contact-item h3 {
    margin-bottom: 0.75rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-item a {
    color: #2c2c2c;
    text-decoration: underline;
}

.contact-faq {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.thanks-lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 0;
}

.thanks-box {
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-step {
    margin-bottom: 2.5rem;
}

.thanks-step:last-child {
    margin-bottom: 0;
}

.thanks-step h3 {
    color: #2c2c2c;
    margin-bottom: 0.75rem;
}

.selected-service-box {
    background-color: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-bottom: 3rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 1rem;
}

.thanks-support {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-guarantee {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

/* Legal Pages */
.legal-content {
    padding: 6rem 0;
}

.legal-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .container-split,
    .benefit-feature,
    .service-item,
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .benefit-feature.reverse {
        flex-direction: column;
    }

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

    .pricing-card,
    .proof-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-item,
    .approach-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .nav-content {
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

    section {
        padding: 3rem 0;
    }

    .pricing-card,
    .proof-card,
    .team-member {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .service-image img {
        height: 300px;
    }

    .benefit-feature img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow,
    .container-split,
    .container-asymmetric {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .hero-overlay {
        padding: 3rem 1rem;
    }

    .cta-hero {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

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

    .order-form {
        padding: 2rem 1.5rem;
    }

    .nav-floating {
        padding: 0.5rem 1rem;
        border-radius: 30px;
    }

    .brand {
        font-size: 0.95rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .sticky-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}
