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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --background-light: #ffffff;
    --background-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--background-light);
}

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

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

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

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-minimal {
    padding: 30px 0;
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hero-premium {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content-center {
    max-width: 900px;
}

.display-large {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.subtitle-large {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--secondary-color);
}

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

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--text-medium);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-dark);
}

section {
    padding: 100px 0;
}

.intro-section {
    background: var(--background-gray);
}

.lead-text {
    font-size: 24px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
    font-weight: 300;
}

.problem-amplify {
    background: white;
}

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

.text-block,
.image-block {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title-center {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 60px;
    font-weight: 300;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.insight-reveal {
    background: var(--background-gray);
    padding: 120px 0;
}

.centered-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.storytelling-block {
    background: white;
    padding: 100px 0;
}

.story-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.story-cta {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 40px;
    font-style: italic;
}

.services-premium {
    background: var(--background-gray);
    padding: 120px 0;
}

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

.service-card-premium {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
}

.service-desc {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-medium);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.trust-building {
    background: white;
    padding: 100px 0;
}

.testimonials-inline {
    margin-top: 50px;
}

.testimonial {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.testimonial:last-child {
    border-bottom: none;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.urgency-block {
    background: var(--background-gray);
    padding: 80px 0;
}

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

.form-section {
    background: white;
    padding: 100px 0;
}

.form-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 50px;
}

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

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

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

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

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

.form-group input[readonly] {
    background: var(--background-gray);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

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

.final-cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

.btn-accept:hover {
    background: var(--secondary-color);
}

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

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

.page-hero {
    background: var(--background-gray);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    font-weight: 300;
    line-height: 1.6;
}

.about-story,
.approach-section {
    padding: 80px 0;
}

.story-block {
    margin-bottom: 80px;
}

.story-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.values-section {
    background: var(--background-gray);
    padding: 60px;
    border-radius: 16px;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    background: var(--background-gray);
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 5px;
}

.team-member .role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 25px 15px;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0 25px 25px;
}

.approach-steps {
    margin-top: 50px;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
    line-height: 1;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-section {
    background: var(--background-gray);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.service-detail-card.highlighted {
    border: 3px solid var(--primary-color);
    position: relative;
}

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

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

.price-large {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.service-detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.detailed-list {
    list-style: none;
    margin: 20px 0;
}

.detailed-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.detailed-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.comparison-section {
    background: var(--background-gray);
    padding: 80px 0;
}

.comparison-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.comparison-item.highlight {
    background: var(--gradient-primary);
    color: white;
}

.comparison-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.comparison-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
}

.comparison-item.highlight ul li {
    color: rgba(255,255,255,0.95);
}

.contact-section {
    padding: 60px 0;
}

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

.contact-info,
.contact-visual {
    flex: 1;
    min-width: 300px;
}

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

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

.contact-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-note {
    background: var(--background-gray);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.image-caption {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

.faq-section {
    background: var(--background-gray);
    padding: 80px 0;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0 100px;
}

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

.updated-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.legal-page p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 50px;
}

.service-info {
    background: var(--background-gray);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    display: none;
}

.service-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.steps-list li {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .display-large {
        font-size: 42px;
    }

    .subtitle-large {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-center {
        font-size: 34px;
    }

    .page-title {
        font-size: 38px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

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

    .service-detail-card {
        padding: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .step {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .display-large {
        font-size: 32px;
    }

    .final-cta-title {
        font-size: 32px;
    }

    .thanks-title {
        font-size: 36px;
    }
}