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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --gray-light: #e8e8e8;
    --gray-medium: #9a9a9a;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-text-layer {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 20px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-light);
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.shock-intro {
    padding: 120px 20px;
    background: var(--secondary-color);
}

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

.intro-lead {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-body {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: #4a4a4a;
}

.visual-grid-shock {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.grid-item-large {
    flex: 1 1 50%;
    position: relative;
    min-height: 600px;
}

.grid-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

.grid-item-text {
    flex: 1 1 25%;
    padding: 60px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-item-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.grid-item-text p {
    line-height: 1.7;
    opacity: 0.9;
}

.grid-item-medium {
    flex: 1 1 25%;
    min-height: 600px;
}

.grid-item-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-amplification {
    padding: 140px 20px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--text-light);
}

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

.section-title-offset {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.problem-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-block {
    flex: 1 1 280px;
    text-align: center;
    padding: 40px 20px;
}

.problem-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.problem-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.case-story {
    padding: 120px 20px;
    background: var(--secondary-color);
}

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

.story-image {
    flex: 1 1 400px;
}

.story-narrative {
    flex: 1 1 500px;
}

.story-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-paragraph {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-result {
    margin-top: 40px;
    padding: 30px;
    background: var(--primary-color);
    color: var(--text-light);
    border-left: 4px solid var(--accent-color);
    font-size: 16px;
    line-height: 1.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.insight-reveal {
    padding: 140px 20px;
    background: var(--text-light);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
}

.insight-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1 1 320px;
    padding: 50px 40px;
    background: var(--secondary-color);
    border-radius: 8px;
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.trust-layer {
    padding: 120px 20px;
    background: var(--primary-color);
    color: var(--text-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-text {
    flex: 1 1 500px;
}

.trust-text h3 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 15px;
}

.trust-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.trust-logos {
    flex: 1 1 400px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-stat {
    text-align: center;
}

.stat-big {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.testimonial-inline {
    padding: 100px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.testimonial-quote {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
}

.testimonial-author {
    font-size: 16px;
    color: var(--gray-medium);
    font-style: normal;
}

.methodology-visual {
    padding: 0;
}

.method-split {
    display: flex;
    flex-wrap: wrap;
}

.method-left {
    flex: 1 1 50%;
    min-height: 700px;
}

.method-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-right {
    flex: 1 1 50%;
    padding: 80px 60px;
    background: var(--text-light);
}

.method-right h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-num {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    min-width: 40px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.benefits-cascade {
    padding: 120px 20px;
    background: var(--secondary-color);
}

.benefits-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
}

.benefits-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    padding: 40px 50px;
    background: var(--text-light);
    border-left: 4px solid var(--accent-color);
}

.benefit-left {
    margin-right: 80px;
}

.benefit-right {
    margin-left: 80px;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.urgency-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.urgency-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.urgency-subtext {
    font-size: 16px;
    opacity: 0.8;
    color: var(--primary-color);
}

.services-pricing {
    padding: 120px 20px;
    background: var(--text-light);
}

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

.pricing-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 18px;
    color: #4a4a4a;
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 340px;
    max-width: 400px;
    padding: 50px 40px;
    background: var(--secondary-color);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

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

.pricing-featured {
    background: var(--primary-color);
    color: var(--text-light);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-header {
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.price-period {
    font-size: 14px;
    opacity: 0.7;
}

.price-features {
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 15px;
}

.pricing-featured .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-cta {
    width: 100%;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.price-cta:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.pricing-featured .price-cta {
    background: var(--text-light);
    color: var(--primary-color);
}

.pricing-featured .price-cta:hover {
    background: var(--accent-color);
}

.form-section {
    padding: 120px 20px;
    background: var(--secondary-color);
}

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

.form-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.contact-form {
    background: var(--text-light);
    padding: 50px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 100%;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1 1 calc(50% - 10px);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 18px 36px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.final-push {
    padding: 120px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-content h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 30px;
}

.final-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta {
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.site-footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px 30px;
}

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

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.page-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
    color: var(--text-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(40px, 7vw, 70px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: clamp(18px, 3vw, 24px);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-story,
.team-philosophy,
.team-expertise,
.by-numbers,
.values-section {
    padding: 100px 20px;
}

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

.about-text-block {
    flex: 1 1 500px;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.about-image {
    flex: 1 1 400px;
}

.philosophy-content,
.expertise-wrapper,
.numbers-container,
.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-title,
.expertise-wrapper h2,
.numbers-container h2,
.values-content h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-grid,
.expertise-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-item,
.expert-card {
    flex: 1 1 45%;
    padding: 40px;
    background: var(--secondary-color);
    border-radius: 8px;
}

.philosophy-item h3,
.expert-card .expert-role {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.philosophy-item p,
.expert-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.number-stat {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    padding: 40px;
    background: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
}

.value-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.cta-about {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-btn-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.service-block {
    margin-bottom: 100px;
    background: var(--secondary-color);
    padding: 60px;
    border-radius: 12px;
}

.service-featured {
    background: var(--primary-color);
    color: var(--text-light);
    position: relative;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.service-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

.service-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-description {
    flex: 1 1 500px;
}

.service-description p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-description h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-list li {
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-image {
    flex: 1 1 350px;
}

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

.service-cta {
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.service-cta:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.service-featured .service-cta {
    background: var(--text-light);
}

.service-featured .service-cta:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.services-comparison {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.comparison-note {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.comparison-table {
    background: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    font-size: 15px;
}

.comparison-cell:first-child {
    flex: 1.5;
    font-weight: 600;
}

.services-cta {
    padding: 100px 20px;
    background: var(--text-light);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-main {
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.contact-value {
    font-size: 16px;
    line-height: 1.6;
}

.contact-value a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1 1 500px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.contact-faq {
    padding: 80px 20px;
    background: var(--secondary-color);
}

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

.faq-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    padding: 30px;
    background: var(--text-light);
    border-radius: 8px;
}

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

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

.thanks-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
    color: var(--text-light);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 72px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 50px;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
}

.detail-value {
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next-steps h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.next-step {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.step-number {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-text p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
}

.urgency-note {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.btn-primary {
    padding: 18px 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    padding: 15px 35px;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.thanks-resources {
    padding: 80px 20px;
    background: var(--secondary-color);
}

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

.resources-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.resource-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-card {
    flex: 1 1 320px;
    padding: 40px;
    background: var(--text-light);
    border-radius: 8px;
    text-align: center;
}

.resource-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.resource-card a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.legal-page {
    padding: 150px 20px 80px;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--gray-medium);
    font-size: 14px;
    margin-bottom: 50px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
    list-style: disc;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: var(--secondary-color);
}

.gdpr-table thead,
.cookies-table thead {
    background: var(--primary-color);
    color: var(--text-light);
}

.gdpr-table th,
.cookies-table th,
.gdpr-table td,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.gdpr-table th,
.cookies-table th {
    font-weight: 700;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        top: 10px;
    }

    .nav-links {
        gap: 15px;
    }

    .visual-grid-shock {
        flex-direction: column;
    }

    .grid-item-large,
    .grid-item-medium,
    .grid-item-text {
        flex: 1 1 100%;
        min-height: 400px;
    }

    .problem-blocks {
        flex-direction: column;
    }

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

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

    .method-left,
    .method-right {
        flex: 1 1 100%;
    }

    .benefit-left,
    .benefit-right {
        margin: 0;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        padding: 15px;
    }

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

    .service-block {
        padding: 30px 20px;
    }
}