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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #0066cc;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero-content-narrow h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.story-intro {
    background: #f8f9fa;
}

.story-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.curiosity-block {
    background: white;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.problem-amplify {
    background: #fff5f5;
}

.problem-amplify h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #c41e3a;
}

.emphasized {
    font-size: 21px;
    font-weight: 600;
    color: #c41e3a;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-left: 4px solid #c41e3a;
}

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

.problem-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: 8px;
    align-items: flex-start;
}

.problem-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.problem-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.problem-item p {
    color: #666;
    font-size: 16px;
}

.insight-reveal {
    background: #0f1419;
    color: white;
}

.insight-card {
    padding: 40px;
}

.insight-card h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: white;
}

.insight-intro {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.insight-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.insight-point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #66b3ff;
}

.insight-point p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.85;
}

.cta-inline {
    background: #0066cc;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.cta-inline p {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s;
}

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

.story-case {
    background: #f0f7ff;
}

.story-case h2 {
    font-size: 34px;
    margin-bottom: 32px;
}

.testimonial-inline {
    display: block;
    font-size: 20px;
    font-style: italic;
    background: white;
    padding: 32px;
    border-left: 4px solid #0066cc;
    margin-top: 32px;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: #0066cc;
}

.trust-building {
    background: white;
}

.trust-building h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.trust-card {
    flex: 1;
    text-align: center;
}

.trust-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.testimonials-section {
    background: #fafafa;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.testimonial-block {
    background: white;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #333;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    color: #0066cc;
    font-weight: 600;
}

.cta-section-block {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    text-align: center;
}

.cta-section-block h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-section-block p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-primary-large:hover {
    transform: scale(1.05);
}

.education-section {
    background: white;
}

.education-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.process-flow {
    display: flex;
    gap: 32px;
}

.process-step {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.market-insight {
    background: #f0f7ff;
}

.pricing-section {
    background: #fafafa;
    padding: 100px 20px;
}

.pricing-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    width: calc(33.333% - 22px);
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #0066cc;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0066cc;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 24px;
}

.service-price span {
    font-size: 18px;
    font-weight: 500;
    color: #666;
}

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

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #444;
}

.service-features li:last-child {
    border-bottom: none;
}

.btn-select-service {
    width: 100%;
    background: #0066cc;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.urgency-block {
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
    padding: 24px 20px;
}

.urgency-text {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #856404;
}

.form-section {
    background: white;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 48px;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.final-cta {
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-final:hover {
    transform: scale(1.05);
}

.site-footer {
    background: #0f1419;
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    background: #0066cc;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    transition: transform 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    color: white;
    padding: 24px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #0066cc;
    color: white;
}

.btn-reject {
    background: #666;
    color: white;
}

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

@media (max-width: 968px) {
    .floating-nav {
        width: calc(100% - 40px);
        top: 10px;
        padding: 12px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        margin-top: 12px;
        border-radius: 12px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 16px 20px;
    }

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

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

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

    .trust-grid {
        flex-direction: column;
        gap: 32px;
    }

    .process-flow {
        flex-direction: column;
        gap: 24px;
    }

    .service-card {
        width: 100%;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        text-align: center;
        width: 100%;
    }
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    padding: 20px;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.95;
}

.thanks-service {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-service strong {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.btn-back-home {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 24px;
    transition: transform 0.3s;
}

.btn-back-home:hover {
    transform: scale(1.05);
}

.about-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-section {
    padding: 80px 20px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.team-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-member p {
    font-size: 16px;
    color: #666;
}

.contact-hero {
    background: #f8f9fa;
    padding: 100px 20px 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 18px;
    color: #666;
}

.contact-info {
    background: white;
}

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

.info-card {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0066cc;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.services-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-section {
    background: white;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #444;
}