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

:root {
    --primary: #2d1b69;
    --secondary: #ff6b35;
    --accent: #8b5cf6;
    --dark: #1a1a2e;
    --light: #f8f7ff;
    --gray: #6b7280;
    --success: #10b981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
    font-size: 1.05rem;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background: #3d2a7a;
}

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

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

.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary);
}

.nav-cta {
    padding: 12px 24px;
    background: var(--secondary);
    color: white !important;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #e55a2b;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #4c1d95 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: var(--secondary);
    opacity: 0.1;
    transform: rotate(-15deg);
    border-radius: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.hero-float {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-float-1 {
    top: 20px;
    right: -30px;
}

.hero-float-2 {
    bottom: 40px;
    left: -40px;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark);
    color: white;
}

.section-gradient {
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.section-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
}

.asymmetric-left {
    display: flex;
    gap: 80px;
    align-items: center;
}

.asymmetric-left .content {
    flex: 1.2;
}

.asymmetric-left .visual {
    flex: 0.8;
}

.asymmetric-right {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
}

.asymmetric-right .content {
    flex: 1.2;
}

.asymmetric-right .visual {
    flex: 0.8;
}

.offset-block {
    position: relative;
    margin-left: 10%;
}

.offset-block-right {
    margin-left: 0;
    margin-right: 10%;
}

.overlap-container {
    position: relative;
}

.overlap-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 20px;
    top: 10%;
    left: -5%;
}

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

.feature-card {
    flex: 1 1 300px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-card h3 {
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray);
}

.problem-section {
    position: relative;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--secondary);
    border-radius: 0 12px 12px 0;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-section {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    top: -100px;
    left: 50px;
    font-family: Georgia, serif;
}

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

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    font-size: 80px;
    color: var(--secondary);
    top: 20px;
    left: 30px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.7;
}

.pricing-section {
    padding: 120px 0;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 40px;
    text-align: center;
    background: var(--light);
}

.pricing-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-body {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #e55a2b 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--secondary);
}

.cta-section .btn:hover {
    background: var(--dark);
    color: white;
}

.form-section {
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 27, 105, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    margin-top: 16px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.trust-icon {
    width: 24px;
    height: 24px;
}

footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    margin-bottom: 24px;
    color: var(--secondary);
}

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

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

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

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

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

.sticky-cta .btn {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #4c1d95 100%);
    color: white;
    text-align: center;
}

.page-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.content-block p,
.content-block li {
    color: var(--gray);
    margin-bottom: 16px;
}

.content-block ul {
    margin-left: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    align-items: center;
}

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

.service-image {
    flex: 0 0 300px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: 16px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--gray);
}

.contact-form-wrap {
    flex: 1;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.thanks-content h1 {
    margin-bottom: 24px;
    color: var(--primary);
}

.thanks-content p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 100px 40px 40px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.mobile-menu nav a {
    font-size: 1.4rem;
}

.urgency-banner {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 600;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    margin-top: 8px;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    transition: gap 0.3s;
}

.inline-cta:hover {
    gap: 12px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .asymmetric-left,
    .asymmetric-right {
        flex-direction: column;
    }

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

    .pricing-card.featured {
        transform: none;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .section {
        padding: 60px 0;
    }

    .form-container {
        padding: 40px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .offset-block,
    .offset-block-right {
        margin-left: 0;
        margin-right: 0;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}
