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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #ffffff;
}

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

header {
    background: #ffffff;
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav a:hover {
    color: #666666;
}

.nav a.cta {
    background: #000000;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.nav a.cta:hover {
    background: #ffffff;
    color: #000000;
}

.hero {
    padding: 12rem 0 8rem;
    position: relative;
    background: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-profile {
    flex-shrink: 0;
    order: 2;
    text-align: center;
    width: 320px;
}

.hero-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000000;
}

.hero-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-top: 1rem;
    text-align: center;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 1rem;
    color: #666666;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-social {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.hero-linkedin a,
.hero-telegram a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.hero-linkedin a:hover,
.hero-telegram a:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.hero-linkedin svg,
.hero-telegram svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

.hero-text {
    flex: 1;
    order: 1;
    min-width: 0;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #000000;
}

.hero h2 {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.cta-button:hover {
    background: #ffffff;
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f5f5;
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.linkedin-button:hover {
    background: #000000;
    color: #ffffff;
}

.services {
    padding: 8rem 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 0;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.service-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-card p {
    color: #666666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.results {
    padding: 8rem 0;
    background: #ffffff;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.result-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem 0;
}

.result-block:nth-child(even) {
    flex-direction: row-reverse;
}

.result-image {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: 800px;
    max-height: 600px;
    object-fit: contain;
    border: 2px solid #000000;
}

.result-content {
    flex: 1;
}

.result-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000000;
}

.result-role {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.result-role::before {
    content: "My role: ";
    color: #000000;
    font-weight: 700;
}

.result-description {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
}

.experience {
    padding: 8rem 0;
    background: #f9f9f9;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.experience-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 0;
    border-left: 4px solid #000000;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.experience-card p {
    color: #666666;
    line-height: 1.7;
}

.testimonials {
    padding: 8rem 0;
    background: #ffffff;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 3rem;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 0;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 400px;
    max-width: 450px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000000;
    background: #ffffff;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-highlight {
    color: #000000;
    font-weight: 600;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e5e5;
    border: 2px solid #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #000000;
}

.testimonial-dot:hover {
    background: #000000;
}

.team {
    padding: 8rem 0;
    background: #f9f9f9;
}

.team-content {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
}

.team-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.team-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border: 3px solid #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.team-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-header h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #000000;
    line-height: 1.1;
}

.team-subtext {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-subtext p {
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.team-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.team-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    background: #ffffff;
}

.team-feature-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.team-feature-text {
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
}

.contact {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    width: 100%;
    margin-top: 2rem;
}

.calendly-section {
    width: 100%;
}

.contact-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-option p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.calendly-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.calendly-preview {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.email-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.email-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-address {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.copy-button {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.copy-button.copied {
    color: #4ade80;
}

.contact-button.primary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.contact-button.primary:hover {
    background: #000000;
    color: #ffffff;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.contact-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.contact-button:hover {
    background: #000000;
    color: #ffffff;
}

.contact-button.secondary:hover {
    background: #ffffff;
    color: #000000;
}

.contact-button button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.contact-calendar {
    width: 100%;
}

.calendly-inline-widget {
    width: 100% !important;
    border-radius: 8px;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

.contact-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.contact-button:hover {
    background: #000000;
    color: #ffffff;
}

footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }

    .contact-option:nth-child(2) {
        grid-row: 1;
    }
    
    .email-display {
        gap: 0.75rem;
        text-align: center;
    }

    .contact p {
        margin: 0 0 20px;
    }
    
    .nav a {
        display: none;
    }

    .nav a:last-child {
        display: block;
    }
    
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 10rem 0 4rem;
    }

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

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

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .hero-profile {
        order: 1;
    }

    .hero-text {
        order: 2;
    }

    .services, .results, .team, .contact, .testimonials {
        padding: 4rem 0;
    }

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

    .team-image {
        max-width: 100%;
    }

    .team-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-header h2 {
        font-size: 2.5rem;
    }

    .team-subtext p {
        font-size: 1.2rem;
    }

    .team-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        line-height: 0.9;
    }

    .result-block {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
        padding: 0;
    }

    .result-block:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .result-image {
        max-width: 100%;
        max-height: 100%;
        height: auto;
    }

    .testimonials-container {
        max-width: 450px;
    }

    footer {
        padding: 0 0 3rem;
    }
}

@media (max-width: 450px) {
    .testimonials-container {
        max-width: 350px !important;
    }

    .testimonial-card {
        min-width: 300px;
        width: 351px;
        padding: 1rem;
    }
}
