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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-accent: #f39c6b;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--light-accent);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.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;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
}

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

.btn-accept:hover {
    background: var(--light-accent);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    display: inline-block;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--light-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
}

.hero-asymmetric {
    margin-top: 70px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 30px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-left: 60px;
}

.hero-text-block h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
}

.hero-image-overlap img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.hero-cta-offset {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.cta-primary:hover {
    background: var(--light-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
}

.story-hook {
    padding: 100px 30px;
    background: var(--white);
}

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

.story-left {
    flex: 1.3;
    padding-right: 40px;
}

.story-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.story-left p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
}

.story-right-img {
    flex: 1;
    position: relative;
}

.story-right-img img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: rotate(3deg);
}

.problem-amplify {
    padding: 120px 30px;
    background: var(--secondary-color);
    color: var(--white);
}

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

.amplify-content {
    flex: 1.5;
}

.amplify-content h3 {
    font-size: 46px;
    margin-bottom: 35px;
    font-weight: 700;
}

.problem-list {
    list-style: none;
    margin-bottom: 40px;
}

.problem-list li {
    font-size: 18px;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 700;
}

.inline-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.inline-cta:hover {
    background: var(--light-accent);
    transform: translateX(5px);
}

.amplify-visual {
    flex: 1;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 800;
    color: var(--light-accent);
    margin-bottom: 15px;
}

.stat-label {
    display: block;
    font-size: 18px;
    line-height: 1.5;
}

.insight-reveal {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.insight-overlay-layout {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.insight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.insight-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
    color: var(--white);
    text-align: center;
}

.insight-text-overlay h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-text-overlay p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-builder {
    padding: 100px 30px;
    background: var(--bg-light);
}

.asymmetric-trust {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.trust-card-left {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.trust-card-left h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.trust-card-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-stack {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent-color);
    transform: translateX(0);
    transition: transform 0.3s;
}

.testimonial-card:nth-child(2) {
    transform: translateX(30px);
}

.testimonial-card:nth-child(3) {
    transform: translateX(-20px);
}

.testimonial-card:hover {
    transform: translateX(10px) translateY(-5px);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-section {
    padding: 120px 30px;
    background: var(--white);
}

.section-title-offset {
    font-size: 52px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-left: 60px;
}

.benefits-grid-irregular {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-large {
    flex: 1 1 calc(55% - 15px);
}

.benefit-medium {
    flex: 1 1 calc(45% - 15px);
}

.benefit-small {
    flex: 1 1 calc(35% - 15px);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-card h4 {
    font-size: 24px;
    color: var(--primary-color);
    padding: 25px 30px 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-light);
    padding: 0 30px 30px;
    line-height: 1.6;
}

.benefits-cta-center {
    text-align: center;
}

.cta-secondary {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.scenario-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
}

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

.scenario-text {
    flex: 1.4;
}

.scenario-text h3 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 700;
}

.scenario-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.scenario-highlight {
    font-size: 22px;
    color: var(--light-accent);
    font-weight: 600;
    margin-top: 30px;
}

.scenario-image-offset {
    flex: 1;
}

.scenario-image-offset img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(-4deg);
}

.social-proof {
    padding: 80px 30px;
    background: var(--bg-light);
}

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

.proof-numbers {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.proof-stat {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.proof-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.proof-label {
    font-size: 16px;
    color: var(--text-light);
}

.proof-text {
    flex: 1.2;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent-color);
}

.proof-text p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 20px;
}

.proof-text span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.urgency-section {
    padding: 100px 30px;
    background: var(--white);
}

.urgency-irregular {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 15px;
    border: 3px solid var(--accent-color);
}

.urgency-irregular h3 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.urgency-irregular > p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

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

.urgency-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-color);
}

.urgency-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

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

.pricing-title {
    font-size: 52px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-offset-1 {
    transform: rotate(-1deg);
}

.service-offset-2 {
    transform: rotate(1.5deg);
}

.service-offset-3 {
    transform: rotate(-1.5deg);
}

.service-offset-4 {
    transform: rotate(1deg);
}

.service-offset-5 {
    transform: rotate(-0.5deg);
}

.service-offset-6 {
    transform: rotate(0.8deg);
}

.service-featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

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

.service-card h4 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features span {
    font-size: 15px;
    color: var(--text-color);
    padding-left: 25px;
    position: relative;
}

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

.service-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0;
}

.final-push {
    padding: 100px 30px;
    background: var(--white);
}

.push-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.push-content-irregular h2 {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.push-content-irregular p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.form-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 15px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.submit-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

.form-note a {
    text-decoration: underline;
}

.guarantee-section {
    padding: 80px 30px;
    background: var(--white);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    border: 3px solid #4caf50;
}

.guarantee-content h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 30px 30px;
}

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

.footer-brand h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 60px;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    margin-top: 70px;
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.9;
}

.about-story {
    padding: 100px 30px;
    background: var(--white);
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-section {
    padding: 100px 30px;
    background: var(--bg-light);
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 46px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.mission-content > p {
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mission-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color);
}

.team-section {
    padding: 100px 30px;
    background: var(--white);
}

.team-section h2 {
    font-size: 46px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.member-info {
    padding: 35px;
}

.member-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.results-section {
    padding: 100px 30px;
    background: var(--bg-light);
}

.results-section h2 {
    font-size: 46px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.results-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1 1 calc(25% - 25px);
    min-width: 200px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.stat-item .stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.stat-item .stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.cta-about {
    padding: 100px 30px;
    background: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--light-accent);
    transform: translateY(-3px);
}

.services-intro {
    padding: 60px 30px;
    background: var(--white);
}

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

.intro-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 30px 100px;
    background: var(--bg-light);
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.featured-service {
    border: 3px solid var(--accent-color);
    box-shadow: 0 15px 50px rgba(233, 69, 96, 0.2);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.service-price-tag {
    font-size: 36px;
    font-weight: 800;
}

.service-body {
    padding: 40px;
}

.service-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-body h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-features-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-features-list li {
    font-size: 16px;
    color: var(--text-color);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

.service-ideal {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.service-savings {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

.service-savings span {
    font-size: 17px;
    color: var(--accent-color);
    font-weight: 700;
}

.service-cta-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.service-cta-btn:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
}

.comparison-section {
    padding: 80px 30px;
    background: var(--white);
}

.comparison-section h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.comparison-card h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.comparison-card p {
    font-size: 17px;
    color: var(--accent-color);
    font-weight: 700;
}

.guarantee-section {
    padding: 80px 30px;
    background: var(--bg-light);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #4caf50;
}

.guarantee-box h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-content {
    padding: 80px 30px;
    background: var(--white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-box p:first-child {
    font-size: 48px;
    margin-bottom: 20px;
}

.map-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-faq {
    padding: 80px 30px;
    background: var(--bg-light);
}

.contact-faq h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-cta {
    padding: 80px 30px;
    background: var(--white);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 15px;
}

.cta-box h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-hero {
    margin-top: 70px;
    padding: 100px 30px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    text-align: center;
}

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

.success-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-lead {
    font-size: 22px;
    color: var(--text-color);
}

.thanks-details {
    padding: 80px 30px;
    background: var(--white);
}

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

.details-container h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

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

.step-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.thanks-service-info {
    padding: 60px 30px;
    background: var(--bg-light);
}

.service-info-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-info-box h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-name {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-access-info {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-next-steps {
    padding: 60px 30px;
    background: var(--white);
}

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

.next-steps-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.tips-list li {
    font-size: 18px;
    color: var(--text-color);
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
}

.thanks-support {
    padding: 60px 30px;
    background: var(--bg-light);
}

.support-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.support-box h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.support-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 10px;
}

.thanks-cta {
    padding: 80px 30px;
    background: var(--white);
    text-align: center;
}

.legal-page {
    margin-top: 70px;
    padding: 80px 30px;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-date {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 10px;
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 16px;
    color: var(--text-color);
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-text-block h1 {
        font-size: 40px;
    }

    .hero-offset-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-cta-offset {
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .irregular-container,
    .split-irregular,
    .scenario-split,
    .proof-asymmetric,
    .asymmetric-trust,
    .contact-grid,
    .story-container {
        flex-direction: column;
    }

    .section-title-offset {
        padding-left: 0;
        font-size: 36px;
    }

    .benefits-grid-irregular {
        flex-direction: column;
    }

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        flex: 1 1 100%;
    }

    .pricing-irregular-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        transform: none;
    }

    .service-featured {
        transform: none;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

    .form-container-asymmetric {
        padding: 40px 30px;
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 32px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .cta-primary,
    .cta-secondary,
    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
}
