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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #fff;
    color: #000;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #666;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c2c2c;
}

.hero-magazine {
    min-height: 85vh;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.hero-overlay {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    min-height: 85vh;
    align-items: center;
}

.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-block h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
}

.hero-side {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-image-box {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}

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

.intro-story {
    padding: 5rem 2rem;
    background: #fff;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.problem-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 2px;
}

.cta-inline-block {
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #444;
    transform: translateY(-2px);
}

.insight-section {
    padding: 7rem 2rem;
    background: #f5f5f5;
}

.container-magazine {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.magazine-col-left {
    flex: 1.2;
}

.magazine-col-left h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.magazine-col-left p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.magazine-col-right {
    flex: 1;
}

.magazine-col-right img {
    width: 100%;
    border-radius: 2px;
}

.trust-section {
    padding: 6rem 2rem;
    background: #fff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.centered-heading {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.trust-card {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-left: 4px solid #2c2c2c;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: #444;
}

.testimonial cite {
    font-size: 1rem;
    font-style: normal;
    color: #888;
}

.visual-break {
    height: 60vh;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.benefits-main {
    flex: 2;
}

.benefits-main h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

.benefits-aside {
    flex: 1;
    display: flex;
    align-items: center;
}

.cta-box {
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 3px;
    text-align: center;
}

.cta-box-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #2c2c2c;
    color: #fff;
}

.services-pricing {
    padding: 7rem 2rem;
    background: #f9f9f9;
}

.container-standard {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #2c2c2c;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c2c2c;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #2c2c2c;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #444;
}

.form-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input {
    margin-top: 0.3rem;
}

.checkbox-label a {
    color: #2c2c2c;
    text-decoration: underline;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: #2c2c2c;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #444;
}

.urgency-section {
    padding: 5rem 2rem;
    background: #f0f0f0;
}

.centered {
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.urgency-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.urgency-highlight {
    font-weight: 700;
    color: #2c2c2c;
    font-size: 1.25rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    pointer-events: auto;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c2c2c;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #444;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.main-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    font-size: 0.95rem;
    color: #ccc;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    max-width: 1300px;
    margin: 0 auto;
}

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

.page-header {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.header-lead {
    font-size: 1.3rem;
    color: #666;
}

.about-story,
.philosophy-section,
.team-approach {
    padding: 5rem 2rem;
}

.about-story {
    background: #fff;
}

.philosophy-section {
    background: #f9f9f9;
}

.team-approach {
    background: #fff;
}

.philosophy-section h2,
.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.philosophy-section p,
.team-approach p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.values-section {
    padding: 6rem 2rem;
    background: #fff;
}

.values-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
}

.cta-about {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.popular-badge {
    display: inline-block;
    background: #2c2c2c;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.service-detail-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 3px;
}

.services-detailed {
    padding: 5rem 2rem;
}

.contact-section {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.contact-item a {
    color: #2c2c2c;
    text-decoration: underline;
}

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

.contact-visual {
    flex: 1;
}

.image-caption {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.8rem;
    font-style: italic;
}

.visit-info {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.visit-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.visit-info p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.cta-contact {
    padding: 5rem 2rem;
    background: #fff;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-page {
    padding: 8rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #f9f9f9;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2c2c2c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666;
}

.service-confirmation {
    background: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c2c2c;
}

.thanks-next {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-cta-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: #2c2c2c;
    color: #fff;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #ddd;
}

.thanks-contact p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.thanks-contact a {
    color: #2c2c2c;
    text-decoration: underline;
    font-weight: 600;
}

.legal-content {
    padding: 4rem 2rem;
    background: #fff;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    color: #555;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

.legal-note {
    margin-top: 3rem;
    font-style: italic;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-overlay {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-block h1 {
        font-size: 3rem;
    }

    .container-split,
    .container-magazine,
    .container-asymmetric {
        flex-direction: column;
    }

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

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 1rem 2rem;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.2rem;
    }

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

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}