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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c8fa8;
    --accent-color: #ff6b35;
    --dark-color: #0d1b2a;
    --light-bg: #f8f9fa;
    --text-color: #2d3142;
    --border-color: #e0e5e9;
    --success-color: #28a745;
}

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
}

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

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #e65a28;
    transform: translateY(-2px);
}

.hero-immersive {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.9), rgba(44, 143, 168, 0.85)), url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?w=1600&h=1000&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
    text-align: center;
    position: relative;
}

.hero-overlay {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary-large:hover {
    background: #e65a28;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.story-intro {
    padding: 80px 20px;
    background: white;
}

.story-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.8;
}

.story-intro p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.problem-amplification {
    padding: 100px 20px;
    background: var(--light-bg);
}

.split-visual {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.visual-left {
    flex: 1;
    min-width: 300px;
}

.visual-left img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.content-right {
    flex: 1;
    min-width: 300px;
}

.content-right h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.content-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-text {
    background: linear-gradient(120deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    font-size: 1.15rem;
    margin: 30px 0;
}

.problem-list {
    list-style: none;
    margin-top: 25px;
}

.problem-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.insight-section {
    padding: 90px 20px;
    background: white;
}

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

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

.insight-box {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.insight-stat {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.story-turn {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a5f7a 100%);
    color: white;
}

.narrative-block h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: white;
}

.narrative-block p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.feature-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.trust-building {
    padding: 90px 20px;
    background: var(--light-bg);
}

.trust-building h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.visual-break {
    position: relative;
    margin: 0;
    padding: 0;
}

.fullwidth-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.fullwidth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 700px;
}

.image-overlay-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.benefits-reveal {
    padding: 100px 20px;
    background: white;
}

.benefits-reveal h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--dark-color);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-large {
    flex: 1 1 100%;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
}

.benefit-large img {
    border-radius: 8px;
    margin-bottom: 25px;
}

.benefit-large h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.benefit-large p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.benefit-small {
    flex: 1;
    min-width: 280px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.benefit-small h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-small p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.urgency-soft {
    padding: 70px 20px;
    background: #fffbf0;
}

.urgency-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #ffc107;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.urgency-note {
    font-weight: 600;
    color: #d97706;
    font-size: 1.05rem;
}

.product-showcase {
    padding: 100px 20px;
    background: var(--light-bg);
}

.product-showcase h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 60px;
    color: var(--text-color);
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.product-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
}

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

.product-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.price-note {
    font-size: 0.9rem;
    font-weight: 400;
    color: #28a745;
}

.btn-select-product {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.guarantee-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.guarantee-section p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.guarantee-box {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 700px;
}

.guarantee-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: white;
}

.guarantee-detail {
    font-weight: 700;
    font-size: 1.2rem;
}

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.final-cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.final-cta-section > .container-narrow > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
}

.order-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.final-reassurance {
    padding: 40px 20px;
    background: #f0f9ff;
    text-align: center;
}

.reassurance-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background: #e65a28;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story,
.about-discovery,
.about-team {
    padding: 80px 20px;
    background: white;
}

.about-story h2,
.about-discovery h2,
.about-team h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-story p,
.about-discovery p,
.about-team p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.quote-box {
    background: var(--light-bg);
    padding: 35px;
    border-left: 5px solid var(--primary-color);
    margin: 40px 0;
}

.quote-box p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.quote-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.about-mission {
    padding: 90px 20px;
    background: var(--light-bg);
}

.mission-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.mission-text,
.mission-image {
    flex: 1;
    min-width: 300px;
}

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

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

.mission-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.discovery-list {
    list-style: none;
    margin: 30px 0;
}

.discovery-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.discovery-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.about-values {
    padding: 90px 20px;
    background: white;
}

.about-values h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

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

.about-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

.product-detail-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.product-detail-card.featured {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    padding: 40px;
    border-radius: 12px;
}

.product-detail-image,
.product-detail-content {
    flex: 1;
    min-width: 300px;
}

.product-detail-image img {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.product-detail-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-save {
    font-size: 1rem;
    font-weight: 400;
    color: #dc3545;
    text-decoration: line-through;
}

.product-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-detail-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.product-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.product-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.badge-popular {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.savings-highlight {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
}

.guarantee-reminder {
    padding: 70px 20px;
    background: var(--light-bg);
    text-align: center;
}

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

.guarantee-reminder p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details,
.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-details h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

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

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

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

.map-note {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    color: var(--text-color);
}

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

.faq-section h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.contact-cta {
    padding: 70px 20px;
    text-align: center;
    background: white;
}

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

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.thanks-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.thanks-content {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

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

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

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

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

.step-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.thanks-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

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

.thanks-info ul {
    list-style: none;
    margin: 0;
}

.thanks-info ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.thanks-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.thanks-contact p {
    font-size: 1.05rem;
    margin: 0;
}

.thanks-guarantee {
    padding: 70px 20px;
    background: var(--light-bg);
    text-align: center;
}

.thanks-guarantee h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-guarantee p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-page {
    padding: 140px 20px 80px;
}

.last-updated {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 12px 20px;
        gap: 15px;
    }

    .nav-links {
        display: none;
    }

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

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

    .story-intro h2,
    .insight-section h2 {
        font-size: 1.8rem;
    }

    .content-right h3 {
        font-size: 1.6rem;
    }

    .split-visual {
        gap: 30px;
    }

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

    .benefits-asymmetric {
        flex-direction: column;
    }

    .product-grid {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

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

    .sticky-cta button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

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

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

    .thanks-content {
        padding: 40px 25px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary-large,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

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

    .nav-brand {
        font-size: 1rem;
    }

    .fullwidth-image {
        height: 300px;
    }

    .image-overlay-text h3 {
        font-size: 1.8rem;
    }
}