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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 12px;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
}

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

.mobile-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
}

.ad-disclosure-mobile {
    font-size: 0.7rem;
    color: #7f8c8d;
    padding: 8px;
    background: #ecf0f1;
    border-radius: 8px;
    text-align: center;
}

.hero-visual {
    margin-top: 0;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85) 0%, rgba(142, 68, 173, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #ecf0f1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.story-intro {
    background: #f8f9fa;
    padding: 80px 40px;
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #34495e;
}

.problem-amplification {
    padding: 100px 40px;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.insight-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 40px;
    color: #ffffff;
}

.insight-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.citation {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.8;
}

.trust-building {
    padding: 100px 40px;
    background: #ffffff;
}

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

.trust-building p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #34495e;
}

.testimonials-inline {
    margin: 80px 0;
}

.testimonial-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    min-height: 400px;
}

.testimonial-overlay {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.9) 0%, rgba(52, 152, 219, 0.85) 100%);
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.testimonial {
    max-width: 500px;
    color: #ffffff;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-reveal {
    padding: 100px 40px;
    background: #f8f9fa;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.benefit-item p {
    font-size: 1rem;
    color: #34495e;
}

.pricing-reveal {
    padding: 100px 40px;
    background: #ffffff;
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.price-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.price-card h3 {
    font-size: 1.8rem;
    padding: 25px 25px 15px;
    color: #2c3e50;
}

.price-card p {
    padding: 0 25px 20px;
    color: #7f8c8d;
    font-size: 1rem;
}

.price-card ul {
    padding: 0 25px 25px 45px;
    list-style: disc;
}

.price-card ul li {
    margin-bottom: 10px;
    color: #34495e;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    text-align: center;
    padding: 20px;
}

.cta-btn {
    display: block;
    margin: 0 25px 25px;
    padding: 15px;
    background: #3498db;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

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

.form-section p {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
}

.order-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.site-footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.footer-overlay {
    background: rgba(44, 62, 80, 0.95);
    padding: 60px 40px 30px;
}

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

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

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-references p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.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 {
    color: #ffffff;
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

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

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 80px 40px;
}

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

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

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

.service-info h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #3498db;
}

.service-info ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 25px;
}

.service-info ul li {
    margin-bottom: 10px;
    color: #34495e;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3498db;
    margin: 25px 0;
}

.service-cta {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: #2980b9;
}

.why-choose {
    padding: 80px 40px;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.feature p {
    font-size: 1rem;
    color: #34495e;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #34495e;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.values {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.value-item p {
    font-size: 1rem;
    color: #34495e;
}

.team-approach {
    padding: 80px 40px;
    background: #ffffff;
}

.team-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-approach p {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #34495e;
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    font-size: 1rem;
    color: #34495e;
}

.why-trust {
    padding: 80px 40px;
    background: #f8f9fa;
}

.why-trust h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.why-trust p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #34495e;
}

.contact-section {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3498db;
}

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

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.contact-cta {
    padding: 80px 40px;
    background: #f8f9fa;
    text-align: center;
}

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

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

.cta-button.secondary {
    background: #95a5a6;
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background: #7f8c8d;
}

.thanks-section {
    padding: 150px 40px 100px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #34495e;
}

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

.legal-content {
    padding: 80px 40px;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #3498db;
}

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

.legal-content ul {
    margin: 20px 0 30px 30px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: #34495e;
    line-height: 1.7;
}

.legal-content ol {
    margin: 20px 0 30px 30px;
}

.legal-content ol li {
    margin-bottom: 12px;
    color: #34495e;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .split-container {
        flex-direction: column;
    }

    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

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

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

    .pricing-cards {
        flex-direction: column;
    }

    .price-card.featured {
        transform: scale(1);
    }

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

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