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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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-actions {
    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: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
    transform: translateY(-2px);
}

/* Header Styles */
.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-solid {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.header-solid .nav-brand {
    color: #2c3e50;
}

.nav-brand a {
    color: inherit;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 3px;
}

.header-solid .ad-disclosure {
    color: #7f8c8d;
    background-color: #ecf0f1;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    position: relative;
}

.header-solid .nav-links a {
    color: #2c3e50;
}

.nav-links a.active {
    color: #3498db;
}

.nav-links a:hover {
    color: #3498db;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    max-width: 900px;
    margin: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Container Styles */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Sections */
section {
    padding: 80px 0;
}

.hook-section {
    background-color: #ecf0f1;
    padding: 100px 0;
}

.hook-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.4;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
}

/* Story Section */
.story-section {
    background-color: #ffffff;
}

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

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

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

.inline-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Problem Amplification */
.problem-amplification {
    background-color: #f8f9fa;
}

.problem-amplification h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.problem-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.problem-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.problem-card .stat {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
}

/* CTA Styles */
.cta-inline {
    text-align: center;
    padding: 60px 20px;
    background-color: #3498db;
}

.cta-inline.secondary {
    background-color: #16a085;
}

.btn-cta-primary,
.btn-cta-secondary,
.btn-cta-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover,
.btn-cta-secondary:hover,
.btn-cta-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
    background-color: #f39c12;
}

.btn-cta-secondary:hover {
    background-color: #d68910;
}

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

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.citation {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.citation:hover {
    text-decoration: underline;
}

/* Solution Reveal */
.solution-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.solution-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Products Visual */
.products-visual {
    background-color: #f8f9fa;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.product-block.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.product-info p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #34495e;
}

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

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #2c3e50;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Trust Building */
.trust-building {
    background-color: #ffffff;
    text-align: center;
}

.trust-building h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.trust-item p:last-child {
    font-size: 1.1rem;
    color: #34495e;
}

/* Testimonials */
.testimonials-inline {
    background-color: #ecf0f1;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #7f8c8d;
    text-align: right;
}

/* Benefits */
.benefits-detailed {
    background-color: #ffffff;
}

.benefits-detailed h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
    border-radius: 5px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

/* Comparison Section */
.comparison-section {
    background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-label {
    flex: 1;
    min-width: 200px;
    padding: 25px;
    background-color: #34495e;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.comparison-old {
    flex: 1;
    min-width: 200px;
    padding: 25px;
    background-color: #fdeaea;
    color: #c0392b;
    display: flex;
    align-items: center;
}

.comparison-new {
    flex: 1;
    min-width: 200px;
    padding: 25px;
    background-color: #eafaf1;
    color: #27ae60;
    display: flex;
    align-items: center;
    font-weight: 600;
}

/* Sticky CTA */
.cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

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

.btn-sticky {
    display: block;
    padding: 15px 30px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

/* Pricing Reveal */
.pricing-reveal {
    background-color: #ffffff;
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #34495e;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
}

.price-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Package Section */
.package-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.package-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.package-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px 30px;
    background-color: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, #ffffff 0%, #ebf5fb 100%);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.package-card h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.package-desc {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.package-pricing {
    margin-bottom: 15px;
}

.package-old {
    display: block;
    font-size: 1.2rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.package-new {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
}

.package-save {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Form Section */
.form-section {
    background-color: #ecf0f1;
}

.form-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #34495e;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    color: #ffffff;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.references-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid #34495e;
    margin-bottom: 20px;
}

.references-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid #34495e;
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #95a5a6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Page Content (for inner pages) */
.page-content {
    margin-top: 70px;
}

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

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
}

/* About Page Styles */
.about-story,
.about-mission,
.about-team {
    padding: 80px 0;
}

.about-story h2,
.about-mission h2,
.about-team h2,
.about-development h2,
.about-values h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-story p,
.about-mission p,
.about-team p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-development {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.development-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.timeline-item {
    padding: 25px;
    background-color: #ffffff;
    border-left: 5px solid #3498db;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.timeline-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

.about-values {
    background-color: #ffffff;
    padding: 80px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #3498db;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.about-cta {
    background-color: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #34495e;
}

/* Services/Products Catalog */
.products-catalog {
    padding: 80px 0;
}

.product-full {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.product-full.reverse {
    flex-direction: row-reverse;
}

.product-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.catalog-image {
    width: 100%;
    border-radius: 8px;
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-details h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.product-details h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.spec-list {
    list-style: none;
    margin-bottom: 30px;
}

.spec-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #34495e;
}

.spec-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.btn-product {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-product:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Packages Section on Services Page */
.packages-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.packages-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.package-item {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px 30px;
    background-color: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.package-item:hover {
    transform: translateY(-5px);
}

.package-item.featured {
    border-color: #3498db;
}

.package-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.package-includes {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #7f8c8d;
}

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

.package-benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #34495e;
}

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

.btn-package {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-package:hover {
    background-color: #2980b9;
}

.guarantee-section {
    padding: 80px 0;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.guarantee-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.services-cta {
    background-color: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #34495e;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
}

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

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #3498db;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-details {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

.contact-cta {
    background-color: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
}

.thanks-container {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.8;
}

.thanks-info {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.thanks-next {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    padding-left: 25px;
    text-align: left;
}

.steps-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #34495e;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

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

.thanks-contact {
    font-size: 0.95rem;
    color: #7f8c8d;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.legal-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-section code {
    background-color: #ecf0f1;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hook-section h2 {
        font-size: 1.7rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .product-block,
    .product-full {
        padding: 30px 20px;
    }

    .comparison-row {
        flex-direction: column;
    }

    section {
        padding: 50px 0;
    }

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

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

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

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

    .cookie-content {
        font-size: 0.9rem;
    }
}

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

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

    .trust-number {
        font-size: 2.5rem;
    }

    .pricing-reveal h2,
    .solution-reveal h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}