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

:root {
    /* Colors */
    --orange-power: #F9622D;
    --orange-primary: #F9622D;
    --off-black: #1C1C1C;
    --off-white: #F8F8F8;
    --white: #FFFFFF;
    --light-grey: #E3E3E3;
    --mid-grey: #6B7280;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --header-height: 88px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--off-black);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography System */
h1, .heading-primary {
    font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h2, .heading-secondary {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.detail-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background-color: var(--off-black);
    padding: 20px 0;
    border-bottom: 1px solid #2A2A2A;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    min-height: var(--header-height);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--off-black);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    max-width: 200px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav {
    margin-left: auto;
}



.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0 48px 0 0;
    padding: 0;
}

.nav-links a {
    color: var(--off-white);
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--orange-power);
}

.mobile-menu-toggle {
    display: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 30px;
    font-weight: 300;
    color: var(--off-white);
    line-height: 1;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

.mobile-nav {
    display: none;
}

.mobile-nav {
    background: var(--off-black);
    border-top: 1px solid #2A2A2A;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--off-black);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.mobile-nav .mobile-cta {
    width: 100%;
    padding: 14px;
}

.header-cta {
    background-color: var(--orange-power);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.header-cta:hover {
    background-color: var(--white);
    color: var(--off-black);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.mobile-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 16px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--off-black);
    padding: 90px 0 110px;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 960px;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.hero h1 .highlight {
    color: var(--orange-power);
    display: inline-block;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}

.hero-subtitle {
    font-size: 21px;
    color: var(--light-grey);
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.45;
    max-width: 760px;
    margin-left: 0;
    margin-right: 0;
}

/* Hero Grid Canvas */
.grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    text-align: left;
    align-items: flex-start;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--orange-power);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Roboto Condensed', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--mid-grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.btn-primary {
    background-color: var(--orange-power);
    color: var(--white);
    padding: 16px 44px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

button.btn-primary {
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--off-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--orange-power);
    padding: 16px 44px;
    border: 2px solid var(--orange-power);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--orange-power);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 98, 45, 0.4);
}

button.cta-button,
button.mobile-cta {
    background: var(--orange-power);
    color: white;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.cta-button:hover,
button.mobile-cta:hover {
    background: var(--white);
    color: var(--off-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Client Logos Trust Strip */
.client-logos-strip {
    border-top: 1px solid var(--light-grey);
    padding: 32px 0 24px;
    text-align: left;
    width: 100%;
}

.client-logos-strip p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid-grey);
    margin-bottom: 20px;
    font-weight: 500;
}


.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 22px;
    max-width: 820px;
    margin: 0;
}

.client-logo {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    transition: none;
    box-shadow: none;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%) contrast(0) brightness(1.65);
    transition: none;
}

@media (max-width: 1024px) {
    .client-logos-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .client-logos-strip {
        text-align: center;
    }

    .client-logos-grid {
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        gap: 16px;
    }

    .client-logo {
        min-height: 0;
        padding: 0;
    }

    .client-logo img {
        max-height: 72px;
    }
}

/* Featured Testimonial Section */
.featured-testimonial {
    position: relative;
    background-color: var(--off-black);
    padding: 96px 0;
    overflow: hidden;
}

.featured-testimonial::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.7) 70%, var(--off-black) 100%);
    z-index: 1;
    pointer-events: none;
}

.featured-testimonial .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    max-width: 900px;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.quote-icon {
    font-size: 100px;
    line-height: 1;
    color: rgba(227, 227, 227, 0.25);
    position: absolute;
    top: -20px;
    left: 0;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-quote {
    font-size: 28px;
    line-height: 1.5;
    color: var(--off-white);
    margin-bottom: 24px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-left: 64px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #404040;
    flex-shrink: 0;
    border: 3px solid #2A2A2A;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 0 1 260px;
    min-width: 200px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.author-title {
    font-size: 15px;
    color: var(--light-grey);
    margin-bottom: 8px;
}

.author-company-logo {
    height: 28px;
    width: auto;
    max-width: 160px;
    opacity: 0.9;
}

.testimonial-rating {
    margin-left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    font-size: 24px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.rating-source {
    font-size: 12px;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rating-source a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.rating-source a:hover {
    color: var(--orange-power);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 0;
        gap: 24px;
        margin: 0 auto;
    }
    
    .testimonial-quote {
        font-size: 22px;
        padding-left: 0;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }
    
    .testimonial-rating {
        margin-left: 0;
        text-align: center;
        align-items: center;
    }
    
    .quote-icon {
        font-size: 70px;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
    }

    .author-details {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .testimonial-card {
        margin: 0 auto;
    }
}

/* Section Spacing */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    color: var(--orange-power);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--off-black);
}

.section-description {
    font-size: 20px;
    color: var(--mid-grey);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }

    .hero {
        padding: 72px 0 64px;
        min-height: auto;
        display: block;
    }

    .hero .container {
        display: block;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
        align-items: center;
        gap: 24px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.15;
    }

    .hero-ctas,
    .hero-stats {
        justify-content: center;
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }

    .client-logos-strip {
        text-align: center;
    }

    .client-logos-strip {
        padding: 24px 0;
    }

    .client-logos-strip p {
        margin-bottom: 16px;
    }
}

/* Services Section */
.services-section {
    background-color: #F5F5F5;
}

.services-section .section-title {
    color: var(--off-black);
}

.services-section .section-description {
    color: var(--mid-grey);
}

.services-scroll-wrapper {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.scroll-indicators {
    display: none;
}

.service-card {
    background-color: #FFFFFF;
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(249, 98, 45, 0.12);
    border-color: rgba(249, 98, 45, 0.35);
}

.service-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 48px;
    font-weight: 300;
    color: var(--orange-power);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(249, 98, 45, 0.35);
    border-radius: 50%;
    background: rgba(249, 98, 45, 0.08);
    line-height: 1;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--off-black);
}

.service-card p {
    color: #4A4A4A;
    line-height: 1.7;
    font-size: 15px;
}

/* Services Grid - Mobile Carousel */
@media (max-width: 768px) {
    .services-scroll-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .services-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 1rem;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
    }

    /* Scroll Navigation */
    .scroll-indicators {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 28px;
    }

    .scroll-button,
    .scroll-arrow {
        background: rgba(249, 98, 45, 0.12);
        color: var(--orange-power);
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 22px;
        box-shadow: inset 0 0 0 1px rgba(249, 98, 45, 0.2);
    }

    .scroll-button:hover,
    .scroll-arrow:hover {
        background: rgba(249, 98, 45, 0.2);
        transform: translateY(-2px);
    }

    .scroll-button:disabled,
    .scroll-arrow:disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }

    .scroll-dots {
        display: flex;
        gap: 10px;
    }

    .scroll-dot {
        width: 10px;
        height: 10px;
        border-radius: 20px;
        background-color: rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .scroll-dot.active {
        background-color: var(--orange-power);
        width: 26px;
        box-shadow: 0 4px 10px rgba(249, 98, 45, 0.35);
    }
}

/* Regional Experience Section */
.boston-section {
    padding: 80px 0;
    background-color: #F7F7F7;
}

.boston-section .section-title {
    color: var(--off-black);
}

.boston-section .section-label {
    color: var(--orange-power);
}

.boston-text {
    text-align: left;
    line-height: 1.8;
    color: #3C3C3C;
}

.boston-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 64px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.boston-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #3C3C3C;
}

.boston-credentials {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.boston-credentials li {
    padding: 8px 0;
    display: flex;
    align-items: start;
    color: #3C3C3C;
}

.check-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    font-weight: 300;
    color: var(--orange-primary);
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--light-grey);
}

.partner-logos img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Photo Gallery */
.boston-photo-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-grey);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.gallery-horizontal {
    aspect-ratio: 16 / 9;
}

.gallery-vertical {
    aspect-ratio: 16 / 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .photo-caption {
    transform: translateY(0);
}

/* Case Studies Section */
#casos-de-estudio {
    background-color: var(--off-black);
}

#casos-de-estudio .section-title {
    color: var(--white);
}

#casos-de-estudio .section-description {
    color: var(--light-grey);
}

#casos-de-estudio .section-label {
    color: var(--orange-power);
}

.case-studies-grid {
    display: grid;
    gap: 48px;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px;
    background-color: #2A2A2A;
    border-radius: 12px;
    border: 1px solid #404040;
}

.case-study:nth-child(even) {
    direction: rtl;
}

.case-study:nth-child(even) .case-study-content,
.case-study:nth-child(even) .case-study-image {
    direction: ltr;
}

.case-study-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--white);
}

.case-study-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: var(--mid-grey);
}

.meta-item strong {
    color: var(--orange-power);
    display: block;
    margin-bottom: 4px;
}

.case-study-description {
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 24px;
}

.case-study-results {
    background-color: #1C1C1C;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--orange-power);
}

.case-study-results h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--white);
}

.case-study-results ul {
    list-style: none;
    padding: 0;
}

.case-study-results li {
    padding: 8px 0;
    color: var(--light-grey);
    font-size: 15px;
}

.case-study-results li::before {
    content: "✓";
    color: var(--orange-power);
    font-weight: bold;
    margin-right: 12px;
}

.case-study-image {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    background-color: transparent;
    aspect-ratio: 1 / 1;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Client Reviews Section */
.client-reviews-section {
    background-color: var(--off-white);
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.review-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--light-grey);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--orange-power);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.reviewer-info {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
}

.reviewer-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--light-grey);
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--off-black);
    margin-bottom: 4px;
}

.reviewer-title {
    font-size: 14px;
    color: var(--mid-grey);
    margin-bottom: 8px;
}

.reviewer-company-logo {
    height: 28px;
    width: auto;
    max-width: 140px;
    opacity: 0.7;
}

.review-rating {
    text-align: right;
    flex-shrink: 0;
}

.review-rating .stars {
    font-size: 16px;
    color: #FFB800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.review-rating .rating-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--off-black);
}

/* Why OrangeLoops Section */
.why-section {
    background-color: #F4F4F4;
    color: var(--off-black);
}

.why-section .section-title {
    color: var(--off-black);
}

.why-section .section-description {
    color: var(--mid-grey);
}

.why-section .section-label {
    color: var(--orange-power);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.why-item {
    text-align: left;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--off-black);
}

.why-item p {
    color: #4A4A4A;
    line-height: 1.7;
}

.team-image {
    margin: 80px auto 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 920px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .team-image {
        margin: 48px auto 0;
        max-width: 100%;
        border-radius: 10px;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: #2A2A2A;
    padding: 100px 0;
}

.reviews-section .section-title {
    color: var(--white);
}

.reviews-section .section-description {
    color: var(--light-grey);
}

.reviews-section .section-label {
    color: var(--orange-power);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #1C1C1C;
    border-radius: 12px;
    padding: 40px 36px;
    border: 1px solid #404040;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 98, 45, 0.2);
    border-color: var(--orange-power);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.reviewer-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.reviewer-title {
    font-size: 14px;
    color: var(--light-grey);
    margin-top: 4px;
}

.review-company {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 4px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
}

.review-company-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.review-stars {
    color: var(--orange-power);
    font-size: 18px;
    letter-spacing: 2px;
}

.review-score {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.review-quote {
    color: var(--light-grey);
    font-size: 16px;
    line-height: 1.7;
    margin: 8px 0 16px;
    font-style: normal;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    background-color: #2A2A2A;
    color: var(--off-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #404040;
}

.review-source {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.review-source:hover {
    color: var(--orange-power);
}

.reviews-cta {
    text-align: center;
    margin-top: 48px;
}

.reviews-cta .btn-secondary {
    background-color: transparent;
    color: var(--orange-power);
    border: 2px solid var(--orange-power);
    padding: 16px 44px;
}

.reviews-cta .btn-secondary:hover {
    background-color: var(--orange-power);
    color: var(--white);
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .review-card {
        max-width: 640px;
        margin: 0 auto;
    }

    .review-company {
        justify-content: center;
    }
}

/* Thank You Page */
.thank-you-section {
    padding: 160px 0;
    background-color: var(--off-black);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.thank-you-card {
    max-width: 720px;
    margin: 0 auto;
    background: #1E1E1E;
    padding: 64px;
    border-radius: 20px;
    border: 1px solid #2F2F2F;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thank-you-card h1 {
    font-size: 42px;
    margin-bottom: 0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.015em;
}

.thank-you-card p {
    font-size: 18px;
    color: var(--light-grey);
    margin-bottom: 0;
    line-height: 1.6;
}

.thank-you-card .thank-you-actions {
    margin-top: 32px;
}

.thank-you-card .btn-secondary {
    padding: 16px 48px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 120px 0;
    }

    .thank-you-card {
        padding: 48px 32px;
    }

    .thank-you-card h1 {
        font-size: 32px;
    }
}

/* Contact Section - Centered Layout */
.contact-section {
    padding: 80px 20px;
    background: #F4F4F4;
}

.contact-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-content-centered h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-content-centered .subtitle {
    font-size: 1.125rem;
    color: #4A4A4A;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Benefits Grid */
.contact-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: #FFFFFF;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 40px;
    font-weight: 300;
    color: var(--orange-primary);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
    flex-shrink: 0;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

.benefit-text strong {
    display: block;
    font-size: 1.125rem;
    color: var(--off-black);
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.5;
    margin: 0;
}

/* Large CTA Button */
.cta-button.large {
    padding: 18px 40px;
    font-size: 1.125rem;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-content-centered h2 {
        font-size: 2rem;
    }
    
    .contact-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-button.large {
        width: 100%;
        padding: 16px 32px;
    }
}

@media (min-width: 992px) {
    .contact-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Floating Mobile CTA */
.floating-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .floating-cta-mobile {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--orange-power);
        color: var(--white);
        padding: 14px 24px;
        border-radius: 50px;
        border: none;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        font-family: inherit;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(249, 98, 45, 0.5);
        z-index: 999;
        transition: all 0.3s ease;
    }
    
    .floating-cta-mobile:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(249, 98, 45, 0.6);
    }
    
    /* Hide header CTA on mobile to avoid redundancy */
    .header-cta {
        display: none;
    }
}

/* Footer */
footer {
    background-color: var(--off-black);
    color: var(--light-grey);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-link-button {
    background: none;
    border: none;
    color: var(--mid-grey);
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link-button:hover {
    color: var(--orange-power);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-column ul li a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--orange-power);
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--orange-power);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.trust-badge {
    font-size: 13px;
    color: var(--mid-grey);
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .thank-you-section {
        padding: 100px 0;
    }
    .boston-content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-horizontal,
    .gallery-vertical {
        aspect-ratio: 16 / 9;
    }
    
    .partner-logos {
        gap: 24px;
    }
    
    .partner-logos img {
        height: 32px;
        max-width: 100px;
    }
    
    .case-study {
        grid-template-columns: 1fr;
    }
    
    .case-study:nth-child(even) {
        direction: ltr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        text-align: left;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
.footer-grid {
    grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }

    section {
        padding: 48px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .case-study {
        padding: 32px 24px;
    }
    
    .thank-you-card {
        padding: 32px 24px;
    }
    
    .thank-you-card h1 {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .partner-logos {
        justify-content: center;
    }
    
    .partner-logos img {
        height: 40px;
        max-width: 120px;
    }
}
