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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-visual-flow {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3d5a80 50%, #4a6fa5 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.curiosity-block {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-half {
    flex: 1;
}

.visual-half {
    flex: 1;
}

.content-half h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.content-half p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.image-block-1,
.image-block-2,
.image-block-3 {
    height: 450px;
    background-color: #e9ecef;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.image-block-1 {
    background-image: linear-gradient(45deg, #93a5cf 0%, #e4efe9 100%);
}

.image-block-2 {
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-block-3 {
    background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

.insight-reveal {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.centered-block {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.insight-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    opacity: 0.95;
}

.storytelling-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.asymmetric-layout.reverse {
    flex-direction: row-reverse;
}

.story-block {
    flex: 1.2;
}

.story-visual {
    flex: 0.8;
}

.story-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-style: italic;
}

.attribution {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

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

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

.benefits-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.sticky-cta-trigger {
    padding: 4rem 2rem;
    background-color: #e9ecef;
}

.inline-cta-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.inline-cta-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-secondary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.services-pricing {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.service-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border-color: #2c3e50;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

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

.select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a252f;
}

.urgency-element {
    padding: 2.5rem 2rem;
    background-color: #fff3cd;
}

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

.urgency-text {
    font-size: 1.1rem;
    color: #856404;
    font-weight: 500;
}

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
}

.main-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.final-push {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.closing-message {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.closing-message h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.closing-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.site-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: #a8b2c1;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a8b2c1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #6c757d;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1rem 2rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.sticky-cta-button:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

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

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

.page-hero {
    margin-top: 70px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3d5a80 100%);
    color: #ffffff;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content,
.contact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block.offset {
    padding-left: 3rem;
}

.content-block.centered {
    text-align: center;
}

.content-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.services-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-block {
    background-color: #ffffff;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    position: relative;
}

.service-detail-block.featured {
    border-color: #2c3e50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.popular-indicator {
    position: absolute;
    top: -12px;
    left: 30px;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.service-overview {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

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

.feature-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-block h2,
.info-block h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block h2 {
    font-size: 2.3rem;
    font-weight: 700;
}

.info-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.info-block a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: #6c757d;
    margin-top: 0.5rem;
}

.contact-action {
    margin-top: 3rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-action h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-action p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-hero {
    margin-top: 70px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.steps-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.step-item {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 3px solid #28a745;
}

.step-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.cta-box a[href^="mailto"] {
    color: #2c3e50;
    font-weight: 600;
}

.legal-page {
    margin-top: 70px;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #3d5a80;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    color: #4a4a4a;
}

.legal-container a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .split-layout,
    .asymmetric-layout,
    .testimonial-grid {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .content-block.offset {
        padding-left: 0;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .floating-nav {
        padding: 1rem 1.5rem;
    }

    .brand-logo {
        font-size: 1.2rem;
    }

    .nav-links {
        font-size: 0.85rem;
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .thanks-content h1 {
        font-size: 2.5rem;
    }
}