* {
    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;
    overflow-x: hidden;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #8b6f47;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
}

.hero-overlay h1 {
    font-size: 64px;
    color: #ffffff;
    font-weight: 700;
    max-width: 700px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 600px;
    font-weight: 300;
}

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

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

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

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

.story-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    object-fit: cover;
    background-color: #e9ecef;
}

.insight-split {
    padding: 0;
}

.split-container {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dee2e6;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

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

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.problem-amplification {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.narrow-center {
    max-width: 800px;
    margin: 0 auto;
}

.narrow-center h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #ffffff;
}

.narrow-center p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.8;
}

.visual-contrast {
    display: flex;
    gap: 40px;
    margin: 60px 0;
}

.contrast-box {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
}

.contrast-box.highlight {
    background: #8b6f47;
}

.number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contrast-box p {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

.trust-elements {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.trust-card {
    flex: 1;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #dee2e6;
}

.trust-card h4 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 16px;
    margin: 0 25px 25px;
    color: #6c757d;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 100px 20px;
    background: linear-gradient(135deg, #8b6f47 0%, #6d5738 100%);
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
}

blockquote {
    border-left: none;
    padding: 40px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

blockquote p {
    font-size: 20px;
    color: #ffffff;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

cite {
    font-size: 16px;
    color: #f0f0f0;
    font-style: normal;
    font-weight: 500;
}

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

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

.benefit-large {
    flex: 1.5;
}

.benefit-large h3 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.benefit-large ul {
    list-style: none;
}

.benefit-large li {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a4a4a;
    padding-left: 30px;
    position: relative;
}

.benefit-large li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.benefit-small {
    flex: 1;
}

.benefit-small img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e9ecef;
}

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

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

.pricing-container h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.pricing-intro {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dee2e6;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #6c757d;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #8b6f47;
    margin: 0 25px 20px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #6d5738;
}

.select-service:active {
    transform: scale(0.98);
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-container p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.contact-form {
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.selected-service-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.selected-service-display p {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

.selected-service-display strong {
    color: #8b6f47;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #6d5738;
}

.submit-btn:active {
    transform: scale(0.98);
}

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

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

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

.footer-col p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #8b6f47;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #808080;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #606060;
    line-height: 1.5;
    margin-top: 20px;
    font-style: italic;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cookie-btn.accept {
    background: #8b6f47;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background: #4a4a4a;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #5a5a5a;
}

.cookie-btn:active {
    transform: scale(0.96);
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #8b6f47 0%, #6d5738 100%);
    text-align: center;
}

.hero-simple h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-simple p {
    font-size: 22px;
    color: #f0f0f0;
}

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

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

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

.values-container h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
    text-align: left;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #8b6f47;
}

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

.team-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

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

.process-section {
    padding: 100px 20px;
    background: #fafafa;
}

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

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    width: calc(33.333% - 27px);
    text-align: center;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.services-full {
    padding: 80px 20px;
    background: #ffffff;
}

.services-layout {
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-image-large {
    flex: 1;
}

.service-image-large img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-desc {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #6c757d;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-size: 24px;
}

.service-price {
    font-size: 38px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 25px;
}

.service-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.service-cta:hover {
    background: #6d5738;
}

.service-cta:active {
    transform: scale(0.98);
}

.guarantee-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

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

.guarantee-box h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #ffffff;
}

.guarantee-box p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.7;
}

.contact-content {
    padding: 80px 20px;
    background: #ffffff;
}

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

.contact-info-block {
    flex: 1.2;
}

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

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8b6f47;
}

.info-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 5px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.contact-additional {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #8b6f47 0%, #6d5738 100%);
    min-height: 80vh;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #ffffff;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.thanks-service-display {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-service-display p {
    font-size: 16px;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.selected-service-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.thanks-next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

.thanks-next-steps ol {
    font-size: 17px;
    color: #f0f0f0;
    line-height: 1.8;
    padding-left: 25px;
}

.thanks-next-steps li {
    margin-bottom: 15px;
}

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

.btn-primary {
    padding: 16px 35px;
    background: #ffffff;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.btn-secondary {
    padding: 16px 35px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.98);
}

.legal-content {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.legal-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.legal-container li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-container a {
    color: #8b6f47;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #6d5738;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 40px;
    }

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

    .visual-contrast {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .service-card {
        width: 100%;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        width: 100%;
    }

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

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

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

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

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