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

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

a:hover {
    opacity: 0.7;
}

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

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

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

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

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

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

.btn-cookie-accept {
    background: white;
    color: #1c1c1c;
}

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

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

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

.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 20px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
}

.hero-visual-full {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.hero-title-large {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 40px;
    background: white;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #3d3d3d;
}

.image-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.problem-amplification {
    padding: 120px 40px;
    background: white;
}

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

.section-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #3d3d3d;
}

.content-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.content-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-reveal {
    padding: 120px 40px;
    background: #fafafa;
}

.centered-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

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

.trust-building {
    padding: 120px 40px;
    background: white;
}

.trust-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.trust-card {
    flex: 1;
    padding: 50px;
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trust-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.testimonials-inline {
    padding: 100px 40px;
    background: #2c2c2c;
    color: white;
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 60px;
    border-left: 4px solid white;
    padding-left: 40px;
}

.testimonial-quote cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.services-preview {
    padding: 120px 40px;
    background: #1a1a1a;
    color: white;
}

.section-heading-alt {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

.services-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-visual-card {
    display: flex;
    padding: 60px;
    gap: 50px;
    align-items: center;
}

.service-visual-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.pricing-reveal {
    padding: 120px 40px;
    background: white;
}

.pricing-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    padding: 50px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2c2c2c;
    background: #fafafa;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.price-detail {
    font-size: 15px;
    color: #666;
}

.cta-major {
    padding: 120px 40px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

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

.cta-heading {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.form-section {
    padding: 120px 40px;
    background: #fafafa;
}

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

.form-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.form-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #2c2c2c;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-main {
    background: #1a1a1a;
    color: white;
    padding: 80px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    font-size: 15px;
    opacity: 0.8;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}

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

.page-hero {
    position: relative;
    margin-top: 80px;
    height: 500px;
    overflow: hidden;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    color: white;
}

.page-hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
}

.about-story {
    padding: 120px 40px;
    background: white;
}

.about-story h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-story p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #3d3d3d;
}

.approach-section {
    padding: 100px 40px;
    background: #fafafa;
}

.approach-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.approach-card {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-visual {
    padding: 0;
}

.split-layout {
    display: flex;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 600px;
}

.split-text {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
}

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

.team-section {
    padding: 100px 40px;
    background: white;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.team-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #3d3d3d;
}

.cta-secondary {
    padding: 100px 40px;
    background: #f0f0f0;
    text-align: center;
}

.cta-secondary h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-secondary p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c2c2c;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.page-hero-simple {
    padding: 160px 40px 80px;
    background: #fafafa;
    margin-top: 80px;
}

.page-hero-simple h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.page-intro {
    font-size: 22px;
    color: #555;
}

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

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

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-price {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #3d3d3d;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2c2c2c;
}

.btn-service {
    display: inline-block;
    padding: 14px 36px;
    background: #2c2c2c;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-service:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.services-guarantee {
    padding: 80px 40px;
    background: #fafafa;
}

.services-guarantee h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
}

.services-guarantee p {
    font-size: 18px;
    line-height: 1.8;
    color: #3d3d3d;
}

.contact-info-section {
    padding: 80px 40px;
    background: white;
    margin-top: 80px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 600px;
}

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

.contact-faq {
    padding: 80px 40px;
    background: #fafafa;
}

.contact-faq h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.thanks-section {
    padding: 120px 40px;
    background: white;
    margin-top: 80px;
}

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

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.thanks-details {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-details ul {
    margin-left: 20px;
    margin-top: 20px;
}

.thanks-details li {
    font-size: 16px;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 32px;
    background: #2c2c2c;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.btn-secondary {
    padding: 14px 32px;
    background: white;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #2c2c2c;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f5f5f5;
    opacity: 1;
}

.thanks-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 600px;
}

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

.next-steps {
    padding: 80px 40px;
    background: #fafafa;
}

.next-steps h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.step {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 8px;
    position: relative;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    padding: 120px 40px;
    background: white;
    margin-top: 80px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 16px;
}

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page em {
    color: #666;
}

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-title-large {
        font-size: 54px;
    }

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

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

    .services-visual-grid .service-visual-card {
        flex-direction: column;
    }

    .services-visual-grid .service-visual-card:nth-child(even) {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

    .hero-visual-full {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title-large {
        font-size: 38px;
    }

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

    .section-heading {
        font-size: 36px;
    }

    .service-visual-card {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 30px;
    }

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