* {
    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.7;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

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

.header-minimal {
    padding: 40px 0;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-floating {
    display: flex;
    gap: 40px;
}

.nav-floating a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-floating a:hover {
    color: #666666;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: #ffffff;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.6;
}

.intro-story {
    padding: 140px 60px;
    background: #fafafa;
}

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

.story-lead {
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #3a3a3a;
}

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

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

.insight-section {
    padding: 160px 60px;
    background: #ffffff;
}

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

.insight-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    margin-bottom: 80px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.insight-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

.insight-image {
    flex: 1;
}

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

.trust-section {
    padding: 140px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

.testimonials-inline {
    padding: 160px 60px;
    background: #f5f5f5;
}

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

.testimonial {
    flex: 1;
    padding: 48px;
    background: #ffffff;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 28px;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 15px;
    color: #666666;
    font-weight: 500;
}

.benefits-reveal {
    padding: 160px 60px;
    background: #ffffff;
}

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

.benefits-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: flex;
    gap: 48px;
}

.benefit-card {
    flex: 1;
}

.benefit-image {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    margin-bottom: 32px;
    background-color: #e8e8e8;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-preview {
    padding: 160px 60px;
    background: #fafafa;
}

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

.services-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-item {
    padding: 60px;
    background: #ffffff;
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.btn-select-service {
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #333333;
    transform: translateY(-2px);
}

.form-section {
    padding: 160px 60px;
    background: #ffffff;
}

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

.form-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    color: #666666;
    margin-bottom: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #3a3a3a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #ffffff;
}

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

.btn-submit {
    padding: 20px 48px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.final-cta {
    padding: 120px 60px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    color: #cccccc;
}

.footer-minimal {
    padding: 80px 60px 40px;
    background: #0a0a0a;
    color: #ffffff;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaaaaa;
}

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

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

.footer-section ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffffff;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #cccccc;
}

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

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

.page-hero {
    padding: 120px 60px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-hero-content p {
    font-size: 20px;
    color: #cccccc;
}

.about-content {
    padding: 120px 60px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.about-text-block h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

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

.about-values h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.values-list {
    display: flex;
    gap: 60px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

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

.about-team h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.about-team p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.services-detailed {
    padding: 80px 60px;
    background: #ffffff;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.service-features {
    list-style: none;
    margin: 32px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #4a4a4a;
}

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

.services-cta {
    padding: 100px 60px;
    background: #fafafa;
    text-align: center;
}

.btn-cta-link {
    display: inline-block;
    margin-top: 32px;
    padding: 18px 48px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.contact-content {
    padding: 100px 60px;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.contact-note {
    margin-top: 60px;
    padding: 28px;
    background: #f5f5f5;
    border-left: 3px solid #1a1a1a;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-visual {
    flex: 1;
}

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

.thanks-page {
    padding: 160px 60px;
    background: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #3a3a3a;
}

.service-confirmation {
    margin: 40px 0;
    padding: 28px;
    background: #f5f5f5;
    border-left: 3px solid #1a1a1a;
}

.service-selected {
    font-size: 17px;
    color: #1a1a1a;
}

.thanks-next-steps {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 48px;
}

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

.btn-return-home,
.btn-view-services {
    padding: 18px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-return-home {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-return-home:hover {
    background: #333333;
    transform: translateY(-2px);
}

.btn-view-services {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-view-services:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.legal-page {
    padding: 100px 60px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.legal-intro {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: #4a4a4a;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 56px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.legal-container ul {
    margin: 20px 0 20px 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.legal-date {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    color: #888888;
    font-style: italic;
}

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-table td {
    font-size: 15px;
    color: #3a3a3a;
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 40px;
    }

    .insight-content,
    .testimonial-container,
    .benefits-grid,
    .trust-container,
    .values-list,
    .contact-container,
    .service-detail-item {
        flex-direction: column;
    }

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

    .nav-floating {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header-container,
    .intro-story,
    .insight-section,
    .trust-section,
    .testimonials-inline,
    .benefits-reveal,
    .services-preview,
    .form-section,
    .page-hero,
    .about-content,
    .services-detailed,
    .contact-content,
    .thanks-page,
    .legal-page {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-minimal {
        padding: 60px 24px 32px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .nav-floating {
        width: 100%;
        justify-content: center;
    }
}