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

:root {
    --primary-color: #2a5934;
    --secondary-color: #7a9e4f;
    --accent-color: #d4a373;
    --dark-color: #1a2e1a;
    --light-color: #f4f1ea;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-radius: 50px;
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.btn-sticky {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
    display: inline-block;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(212, 163, 115, 0.4);
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 800;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -80px;
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transform: rotate(-2deg);
}

/* Buttons */
.btn-hero,
.btn-primary,
.btn-secondary,
.btn-product,
.btn-product-detail,
.btn-large,
.btn-submit,
.btn-support,
.btn-explore {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero,
.btn-primary,
.btn-submit {
    background: var(--primary-color);
    color: var(--white);
}

.btn-hero:hover,
.btn-primary:hover,
.btn-submit:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

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

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

.btn-product,
.btn-product-detail {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
}

.btn-product:hover,
.btn-product-detail:hover {
    background: var(--primary-color);
}

.btn-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn-support,
.btn-explore {
    background: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-support:hover,
.btn-explore:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Story Hook Section */
.story-hook {
    padding: 80px 20px;
    background: var(--light-color);
}

.content-narrow-offset {
    max-width: 700px;
    margin: 0 auto 0 10%;
}

.content-narrow-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.content-narrow-offset p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 80px 20px;
}

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

.problem-side {
    flex: 1;
}

.problem-side h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c44536;
    font-size: 1.3rem;
}

.insight-side {
    flex: 1;
}

.stat-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transform: rotate(2deg);
    box-shadow: var(--shadow-heavy);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.stat-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Solution Reveal */
.solution-reveal {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
}

.content-overlap-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    z-index: 1;
}

.content-overlap-left img {
    border-radius: 0 20px 20px 0;
    box-shadow: var(--shadow-heavy);
}

.content-overlap-right {
    max-width: 600px;
    margin-left: auto;
    padding: 60px 40px;
    background: var(--light-color);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.content-overlap-right h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.content-overlap-right p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

/* Trust Build Section */
.trust-build {
    padding: 100px 20px;
    background: var(--light-color);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    text-align: left;
    padding-left: 10%;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.trust-card:nth-child(2) {
    transform: translateY(30px);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-asymmetric {
    max-width: 800px;
    margin: 0 auto 40px;
    padding-left: 15%;
}

.testimonial-large {
    font-size: 1.8rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.testimonial-small-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Benefits Cascade */
.benefits-cascade {
    padding: 100px 20px;
}

.centered-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.benefits-offset-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.benefit-item.offset-1 {
    margin-left: 0;
}

.benefit-item.offset-2 {
    margin-left: 10%;
}

.benefit-item.offset-3 {
    margin-left: 5%;
}

.benefit-item img {
    width: 300px;
    border-radius: 15px;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Insight Section */
.insight-section {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.comparison-card.highlight {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.comparison-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.compare-list {
    list-style: none;
}

.compare-list li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.compare-list.negative li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c44536;
}

.compare-list.positive li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Urgency Soft */
.urgency-soft {
    padding: 60px 20px;
    background: var(--accent-color);
    text-align: center;
}

.urgency-text {
    font-size: 1.4rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Products Showcase */
.products-showcase {
    padding: 100px 20px;
    background: var(--white);
}

.products-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.products-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card.featured {
    flex: 1 1 calc(66.666% - 15px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

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

.product-card.featured img {
    height: 400px;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.feature-badge {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.guarantee-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-box h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.guarantee-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-item {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.guarantee-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: var(--white);
}

.cta-content-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 10%;
}

.cta-content-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-subtext {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Form Styles */
.order-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-color);
    border-radius: 10px;
    font-size: 1rem;
    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: var(--primary-color);
}

.form-group select {
    cursor: pointer;
}

/* Last Push */
.last-push {
    padding: 60px 20px;
    background: var(--light-color);
    text-align: center;
}

.last-push-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-push-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.last-push-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

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

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

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

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

.btn-cookie {
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: var(--secondary-color);
}

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

.btn-cookie.reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* About Page Styles */
.page-hero-offset {
    padding: 120px 20px 60px;
    background: var(--light-color);
    position: relative;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.page-hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.about-story {
    padding: 80px 20px;
}

.about-mission-split {
    padding: 80px 20px;
    background: var(--light-color);
}

.about-mission-split .mission-content,
.about-mission-split .mission-image {
    max-width: 1200px;
    margin: 0 auto;
}

.about-mission-split .split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.mission-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.values-section {
    padding: 100px 20px;
}

.values-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.value-card:nth-child(odd) {
    transform: translateY(-20px);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-intro p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.team-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1 1 250px;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.testing-process {
    padding: 100px 20px;
}

.process-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.commitment-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.commitment-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.commitment-box > p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    text-align: center;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.cta-section-about,
.cta-section-services,
.cta-section-contact {
    padding: 80px 20px;
    text-align: center;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-content-centered .btn-primary,
.cta-content-centered .btn-secondary {
    margin: 0 10px;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 20px 60px;
    background: var(--light-color);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.products-intro {
    padding: 60px 20px;
}

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

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.products-detailed {
    padding: 60px 20px;
}

.product-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-detail-card.reverse {
    flex-direction: row-reverse;
}

.product-detail-image {
    flex: 1;
}

.product-detail-image img {
    border-radius: 15px;
}

.product-detail-content {
    flex: 1;
}

.product-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.product-description p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-description h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

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

.feature-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: 800;
}

.product-price-box {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.guarantee-banner {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.guarantee-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.guarantee-grid-services {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-item-service {
    flex: 1 1 calc(25% - 23px);
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.guarantee-item-service strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.cta-services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-services-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 20px 60px;
    background: var(--light-color);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.contact-card-main {
    flex: 2;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-card-main h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-card-main > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-text p,
.contact-text a {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card-side {
    flex: 1;
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
}

.contact-card-side h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

.contact-map-info {
    padding: 0 20px 80px;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 46, 26, 0.9);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-support {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.support-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.support-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.support-card p {
    margin-bottom: 25px;
    color: var(--text-light);
}

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

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

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.visit-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.visit-note {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 120px 20px 60px;
    background: var(--light-color);
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.order-summary {
    padding: 60px 20px;
}

.summary-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.summary-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.selected-service .service-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

.next-steps {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.steps-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 calc(25% - 23px);
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-guarantee {
    padding: 80px 20px;
}

.guarantee-reminder {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-reminder h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item-thanks {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.benefit-item-thanks p {
    text-align: left;
    font-size: 1.1rem;
}

.thanks-explore {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.explore-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.explore-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.explore-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-contact {
    padding: 60px 20px;
}

.contact-info-thanks {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info-thanks h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-info-thanks p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-email {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 20px 0;
}

.contact-hours {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 120px 20px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.legal-container p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-container ul,
.legal-container ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow-heavy);
        display: none;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 20px 40px;
    }

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
    }

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

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

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 30px;
    }

    .hero-image-overlap img {
        transform: none;
    }

    .split-content,
    .insight-content-split {
        flex-direction: column;
    }

    .content-overlap-left {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }

    .content-overlap-left img {
        border-radius: 20px;
    }

    .content-overlap-right {
        margin-left: 0;
    }

    .trust-card,
    .value-card,
    .product-card,
    .product-card.featured,
    .guarantee-item,
    .process-step,
    .step-card,
    .support-card,
    .guarantee-item-service {
        flex: 1 1 100%;
    }

    .trust-card:nth-child(2),
    .value-card:nth-child(odd) {
        transform: none;
    }

    .testimonial-asymmetric {
        padding-left: 0;
    }

    .testimonial-large {
        font-size: 1.3rem;
    }

    .benefits-offset-grid {
        gap: 20px;
    }

    .benefit-item {
        flex-direction: column;
        padding: 30px;
    }

    .benefit-item.offset-1,
    .benefit-item.offset-2,
    .benefit-item.offset-3 {
        margin-left: 0;
    }

    .benefit-item img {
        width: 100%;
    }

    .product-detail-card,
    .product-detail-card.reverse {
        flex-direction: column;
        padding: 30px;
    }

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

    .section-title-offset {
        padding-left: 0;
        text-align: center;
    }

    .content-narrow-offset {
        margin: 0 auto;
    }

    .cta-content-asymmetric {
        margin: 0 auto;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

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

    .legal-container {
        padding: 30px 20px;
    }

    h1,
    .hero-title,
    .page-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1,
    .legal-container h1 {
        font-size: 2rem;
    }

    h2,
    .section-title-offset,
    .centered-title,
    .products-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        padding: 12px 20px;
        top: 10px;
        left: 10px;
        right: 10px;
    }

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

    .btn-hero,
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

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

    .btn-sticky {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}