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

:root {
    --primary-color: #2D3142;
    --secondary-color: #4F5D75;
    --accent-color: #EF8354;
    --light-bg: #F7F7F7;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #5A5A5A;
    --border-color: #E0E0E0;
    --success: #2ECC71;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #d67344;
}

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

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

.nav-asymmetric {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero-offset {
    min-height: 85vh;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content-left {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.hero-visual-right {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin-top: 3rem;
}

.hero-visual-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: -20px 20px 0 var(--accent-color);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.cta-primary:hover {
    background: #d67344;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 131, 84, 0.3);
}

.offset-intro {
    padding: 6rem 5% 4rem;
    background: var(--light-bg);
}

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

.large-text {
    font-size: 1.75rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-weight: 500;
}

.problem-amplify {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.problem-left {
    flex: 1;
    min-width: 300px;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin-left: 2rem;
}

.problem-visual img {
    border-radius: 8px;
    box-shadow: 20px -20px 0 var(--secondary-color);
}

.insight-section {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card.offset-card {
    margin-top: 3rem;
}

.services-featured {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

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

.service-card.featured-alt {
    border: 3px solid var(--secondary-color);
}

.service-card.offset-down {
    margin-top: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    margin-bottom: 0;
    flex: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.select-service:hover {
    background: var(--accent-color);
}

.trust-builder {
    padding: 5rem 5%;
}

.trust-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    position: relative;
}

.trust-item.offset-trust {
    margin-top: 2rem;
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.attribution {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 600;
}

.cta-asymmetric {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-block-left {
    flex: 1;
    min-width: 300px;
}

.cta-block-left h2 {
    color: var(--white);
}

.cta-block-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 4px;
}

.cta-large:hover {
    background: #d67344;
    transform: scale(1.05);
}

.form-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.form-container-offset {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-submit {
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(239, 131, 84, 0.4);
}

.sticky-cta a:hover {
    background: #d67344;
    transform: scale(1.05);
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 6rem 5% 4rem;
    text-align: center;
    background: var(--light-bg);
}

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

.about-story {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-block {
    flex: 1;
    min-width: 300px;
}

.story-visual {
    flex: 1;
    min-width: 300px;
}

.story-visual img {
    border-radius: 8px;
}

.philosophy-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.philosophy-card.offset {
    margin-top: 2rem;
}

.team-section {
    padding: 5rem 5%;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.team-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.values-section {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.cta-section {
    padding: 5rem 5%;
    text-align: center;
    background: var(--light-bg);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background: #d67344;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    border-radius: 8px;
    width: 100%;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.service-badge.premium {
    background: var(--secondary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.detailed-features {
    list-style: none;
    margin: 1.5rem 0;
}

.detailed-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.detailed-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

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

.comparison-item {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.service-form-section {
    padding: 5rem 5%;
}

.service-form-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    padding: 3rem 5%;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item a {
    color: var(--accent-color);
}

.info-item a:hover {
    text-decoration: underline;
}

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

.contact-visual img {
    border-radius: 8px;
    width: 100%;
}

.contact-alternative {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.thanks-hero {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.thanks-content {
    flex: 1;
    min-width: 300px;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #d67344;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 700;
    border-radius: 4px;
}

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

.thanks-visual {
    flex: 1;
    min-width: 300px;
}

.thanks-visual img {
    border-radius: 8px;
    width: 100%;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.update-date {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
}

.legal-content h3 {
    margin-top: 2rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-offset {
        padding: 3rem 5%;
    }

    .hero-visual-right img {
        box-shadow: -10px 10px 0 var(--accent-color);
    }

    .large-text {
        font-size: 1.25rem;
    }

    .insight-card.offset-card {
        margin-top: 0;
    }

    .service-card.offset-down {
        margin-top: 0;
    }

    .trust-item.offset-trust {
        margin-top: 0;
    }

    .philosophy-card.offset {
        margin-top: 0;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

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

    .service-detail-card.reverse {
        flex-direction: column;
    }
}