/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f0f7ff;
    border: 1px solid #3096ff;
    border-radius: 20px;
    width: fit-content;
}

.hero-badge span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3096ff;
}

.hero-headline {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.hero-subheadline {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3096ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.hero-cta:hover {
    background-color: #2580e6;
    transform: translateY(-2px);
}

.hero-trusted {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.trusted-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}

.trusted-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-trusted {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }
}

/* Section Title (used across multiple sections) */
.section-title {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

/* How It Works - Vertical Timeline */
.how-it-works {
    background-color: #f8f9fc;
    padding: 5rem 1rem;
}

.how-it-works-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.timeline {
    position: relative;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 54px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3096ff 0%, rgba(48, 150, 255, 0.2) 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 110px;
    flex-shrink: 0;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background-color: #3096ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.timeline-time {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3096ff;
    background-color: #e8f4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.timeline-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.timeline-summary span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
    }

    .timeline-time {
        display: none;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-content::before {
        content: attr(data-time);
        display: block;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        color: #3096ff;
        margin-bottom: 0.25rem;
    }

    .timeline-summary {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* What You Get Section */
.what-you-get {
    padding: 80px 0;
    background-color: #fafafa;
}

.what-you-get .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.what-you-get .section-description {
    max-width: 720px;
    margin: 16px auto 48px;
    text-align: center;
    color: #555;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-grid .expertise-card {
    text-align: left;
    align-items: flex-start;
}

.expertise-grid .expertise-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.expertise-grid .expertise-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.what-you-get-note {
    margin-top: 40px;
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    font-family: 'DM Sans', sans-serif;
}

/* Mobile Responsive for What You Get */
@media (max-width: 768px) {
    .what-you-get {
        padding: 3rem 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .what-you-get .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Who This Is For Section */
.who-this-is-for {
    background-color: #ffffff;
    padding: 5rem 1rem;
}

.who-this-is-for-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #3096ff;
    margin-top: 2px;
}

.point-icon svg {
    width: 24px;
    height: 24px;
}

.point-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Who This Is For */
@media (max-width: 768px) {
    .who-this-is-for {
        padding: 3rem 1rem;
    }

    .points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

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

@media (max-width: 480px) {
    .point-text {
        font-size: 0.9375rem;
    }
}

/* About Section */
.about {
    background-color: #f8f9fc;
    padding: 5rem 1rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Mobile Responsive for About */
@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 400px;
    }

    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.9375rem;
    }
}

/* Core Expertise Section */
.core-expertise {
    background-color: #ffffff;
    padding: 5rem 1rem;
}

.core-expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    box-shadow: 0 8px 24px rgba(48, 150, 255, 0.15);
    transform: translateY(-4px);
}

.expertise-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3096ff;
    margin-bottom: 1.5rem;
}

.expertise-icon svg {
    width: 32px;
    height: 32px;
}

.expertise-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.expertise-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Core Expertise */
@media (max-width: 768px) {
    .core-expertise {
        padding: 3rem 1rem;
    }

    .expertise-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .expertise-card {
        padding: 1.5rem;
    }

    .expertise-title {
        font-size: 1.25rem;
    }

    .expertise-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .expertise-icon {
        width: 56px;
        height: 56px;
    }

    .expertise-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Client Logos Section */
.client-logos {
    background-color: #ffffff;
    padding: 5rem 1rem;
}

.client-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem 4rem;
    margin-top: 3rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item-large {
    height: 60px;
}

.client-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

/* Mobile Responsive for Client Logos */
@media (max-width: 768px) {
    .client-logos {
        padding: 3rem 1rem;
    }

    .logos-grid {
        gap: 2rem 2.5rem;
        margin-top: 2rem;
    }

    .logo-item {
        height: 40px;
    }

    .logo-item-large {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        gap: 1.5rem 2rem;
    }

    .logo-item {
        height: 35px;
    }

    .logo-item-large {
        height: 45px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fc;
    padding: 5rem 1rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    position: relative;
    flex: 1;
    padding: 0;
}

.quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    color: #3096ff;
    line-height: 0;
    opacity: 0.15;
    font-weight: 700;
    pointer-events: none;
    vertical-align: top;
    display: inline-block;
    margin-right: 0.25rem;
}

.testimonial-quote .quote-mark:last-child {
    margin-right: 0;
    margin-left: 0.25rem;
    vertical-align: bottom;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-photo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .testimonial-quote {
        font-size: 0.9375rem;
    }

    .quote-mark {
        font-size: 2.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: #3096ff;
    padding: 6rem 1rem;
    width: 100%;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.final-cta-title {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    line-height: 1.6;
}

.final-cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Final CTA */
@media (max-width: 768px) {
    .final-cta {
        padding: 4rem 1rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .final-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 3rem 1rem;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }

    .final-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer Section */
.footer {
    background-color: #1a1a2e;
    padding: 3rem 1rem 2rem;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link-linkedin svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-container {
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-logo-img {
        height: 35px;
    }
}

