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

:root {
    --primary-color: #e8744f;
    --primary-dark: #d95f3f;
    --bg-dark: #2c3a45;
    --bg-darker: #1f2a33;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.5);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.navbar {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-light);
}

.btn-contact {
    background: var(--primary-color);
    color: var(--text-light) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-subtle);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(232, 116, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 116, 79, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-illustration {
    margin-top: 2rem;
    margin-bottom: 0;
    opacity: 0.8;
    max-height: 300px;
}

.hero-illustration img {
    max-width: 800px;
    max-height: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.features {
    padding: 3rem 0 6rem;
    background: var(--bg-darker);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-subtle);
    font-size: 0.9rem;
    margin-top: 4rem;
}

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

footer a:hover {
    color: var(--primary-color);
}

.footer-slogan {
    margin-bottom: 0.75rem;
    font-style: italic;
    color: var(--primary-color);
    opacity: 0.7;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.about-logo img {
    max-width: 100%;
    height: auto;
}

.mantra {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(232, 116, 79, 0.1);
    border-left: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.content-main {
    max-width: 100%;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.sidebar-card img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}

.service-block {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.service-details {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--text-muted);
}

.service-illustration {
    margin-top: 2rem;
    text-align: center;
}

.service-illustration img {
    max-width: 600px;
    width: 100%;
    opacity: 0.7;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.method-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.step-content ul {
    color: var(--text-muted);
}

.method-principles {
    margin-top: 4rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.principle-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.principle-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.principle-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.method-illustration {
    margin-top: 3rem;
    text-align: center;
}

.method-illustration img {
    max-width: 700px;
    width: 100%;
    opacity: 0.7;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.audience-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.audience-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.audience-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.audience-card ul {
    color: var(--text-subtle);
    font-size: 0.95rem;
}

.common-scenarios {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.scenario {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.scenario h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.scenario p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.audience-illustration {
    margin-top: 3rem;
    text-align: center;
}

.audience-illustration img {
    max-width: 700px;
    width: 100%;
    opacity: 0.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(232, 116, 79, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.contact-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-topics {
    margin-top: 3rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
}

.topic-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sidebar-info,
.sidebar-cta {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-info h3,
.sidebar-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.sidebar-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.sidebar-cta ul {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-illustration {
    margin-top: 2rem;
    text-align: center;
}

.contact-illustration img {
    max-width: 600px;
    width: 100%;
    opacity: 0.7;
}

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

    .nav-menu {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 73px);
        background: var(--bg-darker);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .btn-contact {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .method-step {
        grid-template-columns: 1fr;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }
}
