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

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

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.hero-intro {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text {
    font-size: 22px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-narrow p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

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

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

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.insight-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #e5e7eb;
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #3498db;
}

.citation:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.problem-amplify {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    color: white;
}

.problem-content {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 44px;
    margin-bottom: 50px;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.problem-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.solution-reveal {
    padding: 100px 20px;
    background: #f9fafb;
}

.solution-narrow {
    max-width: 720px;
    margin: 0 auto 50px;
}

.solution-narrow h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.solution-narrow p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.solution-image-wide {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #e5e7eb;
}

.solution-image-wide img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-elements {
    padding: 80px 20px;
    background: white;
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f0fdf4;
    border-radius: 10px;
}

.trust-icon {
    font-size: 32px;
    color: #22c55e;
    font-weight: 700;
}

.trust-item p {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
}

.testimonials-inline {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-size: 16px;
    color: #64748b;
    font-style: normal;
}

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

.benefits-stacked h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefit-row {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.benefit-visual {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #e5e7eb;
}

.benefit-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-soft {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    text-align: center;
}

.cta-content h3 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    color: #292524;
}

.services-pricing {
    padding: 100px 20px;
    background: #f9fafb;
}

.services-pricing h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 3px solid #3498db;
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 25px 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 25px;
}

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    padding: 100px 20px;
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f9fafb;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: #fef3c7;
    border-top: 3px solid #fbbf24;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #78716c;
    text-align: center;
}

footer {
    background: #1a1a1a;
    color: #e5e7eb;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references li {
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

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

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

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

.cookie-content p {
    flex: 1;
    color: #e5e7eb;
    font-size: 15px;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: #3498db;
    color: white;
}

.cookie-btn.reject {
    background: #6c757d;
    color: white;
}

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

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
    background: white;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #e5e7eb;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach {
    padding: 100px 20px;
    background: white;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.expertise-highlight {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.expertise-container h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.expertise-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
}

.services-detail {
    padding: 100px 20px;
    background: white;
}

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

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

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

.service-detail-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

.service-link {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #e5e7eb;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-guarantee {
    padding: 80px 20px;
    background: #f0fdf4;
}

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

.guarantee-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.guarantee-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.contact-section {
    padding: 100px 20px;
    background: white;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-note {
    font-size: 15px;
    font-style: italic;
    color: #6c757d;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 15px;
    background: #e5e7eb;
}

.visual-caption {
    margin-top: 20px;
}

.visual-caption p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.appointment-info {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.appointment-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.appointment-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.appointment-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.appointment-content a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.thanks-section {
    padding: 140px 20px 100px;
    min-height: 80vh;
    background: white;
}

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

.thanks-icon {
    font-size: 80px;
    color: #22c55e;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.service-confirmation {
    margin-bottom: 50px;
}

.selected-service-info {
    font-size: 18px;
    color: #1a1a1a;
    background: #f0fdf4;
    padding: 20px;
    border-radius: 10px;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
}

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

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.legal-container ul {
    margin: 15px 0 15px 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.legal-container a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #6c757d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background: #f9fafb;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 18px;
    }

    .insight-container,
    .about-container,
    .benefit-row,
    .service-detail-block,
    .contact-container {
        flex-direction: column;
    }

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

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

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

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

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