/* ==========================================================================
   MODERN CORPORATE HOMEPAGE — v5.36.0
   Microsoft Fluent Design + Stripe/Apple Inspired
   Design: Microsoft.com / Stripe.com / EY.com level
   Colors: Microsoft Blue (#0078D4), Navy (#002050), White
   ========================================================================== */

/* --- Design Tokens --- */
.fp-modern {
    --fp-blue: #0078D4;
    --fp-blue-dark: #005A9E;
    --fp-navy: #002050;
    --fp-navy-light: #003d7a;
    --fp-green: #107C10;
    --fp-accent: #10A37F;
    --fp-text: #323130;
    --fp-text-secondary: #605E5C;
    --fp-border: #E1DFDD;
    --fp-bg-light: #F3F2F1;
    --fp-bg-blue-light: #E7F3FF;
    --fp-white: #FFFFFF;
    --fp-star: #FFB900;
    --fp-radius: 8px;
    --fp-radius-sm: 4px;
    --fp-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --fp-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
    --fp-shadow-lg: 0 16px 48px rgba(0, 32, 80, 0.12);
    --fp-transition: 0.3s ease;
    --fp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
}

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

@media (min-width: 768px) {
    .fp-container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .fp-container {
        padding: 0 32px;
    }
}

/* --- Eyebrow --- */
.fp-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fp-blue);
    margin-bottom: 16px;
}

.fp-eyebrow--accent {
    color: var(--fp-accent);
}

/* --- Section Base --- */
.fp-section {
    padding: 120px 0;
}

.fp-section--gray {
    background-color: var(--fp-bg-light);
}

.fp-section--dark {
    background: linear-gradient(135deg, var(--fp-navy) 0%, var(--fp-navy-light) 100%);
    color: var(--fp-white);
}

/* --- Section Header --- */
.fp-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.fp-section-header__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--fp-navy);
    margin: 0 0 16px;
}

.fp-section-header__desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--fp-text-secondary);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fp-section-header--light .fp-section-header__title {
    color: var(--fp-white);
}

.fp-section-header--light .fp-section-header__desc {
    color: rgba(255, 255, 255, 0.85);
}

/* --- Buttons --- */
.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--fp-font);
    border-radius: var(--fp-radius-sm);
    text-decoration: none;
    transition: all var(--fp-transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}

.fp-btn--primary {
    background: var(--fp-blue);
    color: var(--fp-white);
    border-color: var(--fp-blue);
}

.fp-btn--primary:hover {
    background: var(--fp-blue-dark);
    border-color: var(--fp-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 120, 212, 0.2);
}

.fp-btn--outline {
    background: transparent;
    color: var(--fp-navy);
    border-color: var(--fp-navy);
}

.fp-btn--outline:hover {
    background: var(--fp-navy);
    color: var(--fp-white);
}

.fp-btn--white {
    background: var(--fp-white);
    color: var(--fp-blue);
    border-color: var(--fp-white);
}

.fp-btn--white:hover {
    background: var(--fp-bg-light);
    transform: translateY(-2px);
}

.fp-btn--outline-white {
    background: transparent;
    color: var(--fp-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.fp-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--fp-white);
}

.fp-btn--secondary {
    background: var(--fp-bg-blue-light);
    color: var(--fp-blue);
    border-color: var(--fp-bg-blue-light);
}

.fp-btn--secondary:hover {
    background: var(--fp-blue);
    color: var(--fp-white);
    border-color: var(--fp-blue);
}

/* --- Link Arrow --- */
.fp-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fp-blue);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--fp-transition);
}

.fp-link-arrow:hover {
    gap: 12px;
    text-decoration: underline;
}

.fp-section__cta {
    text-align: center;
    margin-top: 48px;
}

/* ==================== SECTION 1: HERO ==================== */
.fp-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--fp-white) 0%, #F8FBFF 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.fp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.fp-hero__content {
    max-width: 600px;
}

.fp-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--fp-navy);
    margin: 0 0 24px;
}

.fp-hero__lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--fp-text-secondary);
    margin: 0 0 40px;
    max-width: 600px;
}

.fp-hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.fp-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--fp-text-secondary);
}

.fp-hero__visual {
    position: relative;
}

.fp-hero__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--fp-shadow-lg);
    object-fit: cover;
    display: block;
}

.fp-hero__img-fallback {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--fp-bg-blue-light), #D0E7FF, #E7F3FF);
    overflow: hidden;
    z-index: -1;
}

.fp-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: fp-float 6s ease-in-out infinite;
}

.fp-hero__shape--1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667EEA, #764BA2);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.fp-hero__shape--2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4FACFE, #00F2FE);
    bottom: -30px;
    left: -30px;
    animation-delay: -2s;
}

.fp-hero__shape--3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F093FB, #F5576C);
    top: 40%;
    left: 30%;
    animation-delay: -4s;
}

@keyframes fp-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==================== SECTION 2: STATS ==================== */
.fp-stats {
    padding: 60px 0;
    border-bottom: 1px solid var(--fp-border);
    background: var(--fp-white);
}

.fp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.fp-stat__number {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--fp-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.fp-stat__suffix {
    font-size: 0.7em;
}

.fp-stat__label {
    display: block;
    font-size: 16px;
    color: var(--fp-text);
    font-weight: 400;
}

/* ==================== SECTION 3: PARTNERS ==================== */
.fp-partners {
    padding: 48px 0;
    background: var(--fp-bg-light);
}

.fp-partners__label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fp-text-secondary);
    margin: 0 0 32px;
}

.fp-partners__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.fp-partner-badge {
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fp-text-secondary);
    transition: all var(--fp-transition);
    opacity: 0.7;
}

.fp-partner-badge:hover {
    opacity: 1;
    border-color: var(--fp-blue);
    color: var(--fp-blue);
    box-shadow: var(--fp-shadow);
}

/* ==================== SECTION 4: SERVICES ==================== */
.fp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fp-service-card {
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 32px;
    transition: all var(--fp-transition);
}

.fp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fp-shadow-hover);
    border-color: var(--fp-blue);
}

.fp-service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--fp-blue);
    background: var(--fp-bg-blue-light);
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fp-service-card__icon svg {
    width: 24px;
    height: 24px;
}

.fp-service-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--fp-text);
    margin: 0 0 12px;
}

.fp-service-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--fp-text-secondary);
    margin: 0 0 16px;
}

.fp-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fp-blue);
    text-decoration: none;
    transition: gap var(--fp-transition);
}

.fp-service-card__link:hover {
    gap: 10px;
    text-decoration: underline;
}

/* ==================== SECTION 5: INDUSTRIES ==================== */
.fp-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fp-industry-card {
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 32px 24px;
    text-decoration: none;
    text-align: center;
    transition: all var(--fp-transition);
    border-top: 3px solid transparent;
}

.fp-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fp-shadow-hover);
    border-top-color: var(--fp-blue);
}

.fp-industry-card__icon {
    width: 48px;
    height: 48px;
    color: var(--fp-blue);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-industry-card__icon svg {
    width: 32px;
    height: 32px;
}

.fp-industry-card__name {
    font-size: 17px;
    font-weight: 600;
    color: var(--fp-text);
    margin: 0 0 8px;
}

.fp-industry-card__desc {
    font-size: 14px;
    color: var(--fp-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==================== SECTION 6: GLOBAL PRESENCE ==================== */
.fp-global__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fp-office-card {
    background: var(--fp-bg-blue-light);
    border-left: 4px solid var(--fp-blue);
    border-radius: var(--fp-radius-sm);
    padding: 28px;
    transition: all var(--fp-transition);
}

.fp-office-card:hover {
    box-shadow: var(--fp-shadow-hover);
    transform: translateY(-2px);
}

.fp-office-card--hq {
    background: linear-gradient(135deg, var(--fp-bg-blue-light), #D0E7FF);
    border-left-width: 5px;
}

.fp-office-card__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.fp-office-card__flag {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.fp-office-card__region {
    font-size: 17px;
    font-weight: 600;
    color: var(--fp-navy);
    margin: 0 0 2px;
}

.fp-office-card__city {
    font-size: 14px;
    color: var(--fp-text-secondary);
    margin: 0;
}

.fp-office-card__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.fp-office-card__phone,
.fp-office-card__email {
    font-size: 14px;
    color: var(--fp-blue);
    text-decoration: none;
    font-weight: 500;
}

.fp-office-card__phone:hover,
.fp-office-card__email:hover {
    text-decoration: underline;
}

.fp-office-card__serving {
    font-size: 13px;
    color: var(--fp-text-secondary);
    margin: 0 0 4px;
}

.fp-office-card__specialties {
    font-size: 13px;
    color: var(--fp-text-secondary);
    margin: 0;
    font-style: italic;
}

.fp-global__footer-note {
    text-align: center;
    font-size: 14px;
    color: var(--fp-text-secondary);
    margin-top: 32px;
}

/* ==================== SECTION 7: WHY CHOOSE US ==================== */
.fp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fp-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: all var(--fp-transition);
}

.fp-benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.fp-benefit-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--fp-accent);
}

.fp-benefit-card__icon svg {
    width: 28px;
    height: 28px;
}

.fp-benefit-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--fp-white);
    margin: 0 0 12px;
}

.fp-benefit-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ==================== SECTION 8: TESTIMONIALS ==================== */
.fp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fp-testimonial {
    background: var(--fp-bg-light);
    border-radius: 12px;
    padding: 40px;
    margin: 0;
    position: relative;
    transition: all var(--fp-transition);
}

.fp-testimonial:hover {
    box-shadow: var(--fp-shadow-hover);
    transform: translateY(-2px);
}

.fp-testimonial::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 64px;
    color: var(--fp-blue);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.fp-testimonial__stars {
    color: var(--fp-star);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.fp-testimonial__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--fp-text);
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.fp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fp-testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--fp-bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--fp-white);
}

.fp-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-testimonial__name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--fp-navy);
    font-style: normal;
}

.fp-testimonial__role {
    display: block;
    font-size: 14px;
    color: var(--fp-text-secondary);
    line-height: 1.4;
}

/* ==================== SECTION 9: CASE STUDY ==================== */
.fp-case-study {
    background: var(--fp-navy);
    padding: 100px 0;
    color: var(--fp-white);
}

.fp-case-study__grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 64px;
    align-items: center;
}

.fp-case-study__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--fp-white);
    margin: 0 0 20px;
}

.fp-case-study__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}

.fp-case-study__results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--fp-accent);
    padding: 24px;
    border-radius: var(--fp-radius);
    margin-bottom: 32px;
}

.fp-case-study__result {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--fp-white);
}

.fp-case-study__visual {
    position: relative;
}

.fp-case-study__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    display: block;
}

.fp-case-study__img-fallback {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.3), rgba(16, 163, 127, 0.3));
    z-index: -1;
}

/* ==================== SECTION 10: TEAM ==================== */
.fp-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fp-team-card {
    text-align: center;
}

.fp-team-card__photo {
    width: 200px;
    height: 200px;
    border-radius: var(--fp-radius);
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
    background: var(--fp-bg-blue-light);
}

.fp-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--fp-transition);
}

.fp-team-card:hover .fp-team-card__photo img {
    transform: scale(1.05);
}

.fp-team-card__photo-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--fp-blue);
    background: var(--fp-bg-blue-light);
    z-index: -1;
}

.fp-team-card__name {
    font-size: 20px;
    font-weight: 600;
    color: var(--fp-navy);
    margin: 0 0 4px;
}

.fp-team-card__role {
    font-size: 16px;
    color: var(--fp-blue);
    margin: 0 0 12px;
    font-weight: 500;
}

.fp-team-card__bio {
    font-size: 14px;
    color: var(--fp-text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SECTION 11: INSIGHTS ==================== */
.fp-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fp-insight-card {
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    overflow: hidden;
    transition: all var(--fp-transition);
}

.fp-insight-card:hover {
    box-shadow: var(--fp-shadow-hover);
    transform: translateY(-4px);
}

.fp-insight-card__img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.fp-insight-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-insight-card__body {
    padding: 24px;
}

.fp-insight-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.fp-insight-card__cat {
    background: var(--fp-bg-blue-light);
    color: var(--fp-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fp-insight-card__meta time {
    font-size: 13px;
    color: var(--fp-text-secondary);
}

.fp-insight-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-insight-card__title a {
    color: var(--fp-text);
    text-decoration: none;
}

.fp-insight-card__title a:hover {
    color: var(--fp-blue);
}

.fp-insight-card__excerpt {
    font-size: 14px;
    color: var(--fp-text-secondary);
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-insight-card__read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fp-blue);
    text-decoration: none;
    transition: gap var(--fp-transition);
}

.fp-insight-card__read:hover {
    gap: 10px;
}

/* ==================== SECTION 12: FINAL CTA ==================== */
.fp-cta-final {
    background: linear-gradient(135deg, var(--fp-blue) 0%, var(--fp-blue-dark) 100%);
    padding: 120px 0;
    text-align: center;
    color: var(--fp-white);
}

.fp-cta-final__inner {
    max-width: 900px;
    margin: 0 auto;
}

.fp-cta-final__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fp-white);
    margin: 0 0 20px;
}

.fp-cta-final__desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px;
}

.fp-cta-final__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.fp-cta-final__contacts {
    margin-bottom: 24px;
}

.fp-cta-final__contacts p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px;
    line-height: 2;
}

.fp-cta-final__contacts a {
    color: var(--fp-white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.fp-cta-final__contacts a:hover {
    text-decoration-color: var(--fp-white);
}

.fp-cta-final__footer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .fp-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fp-hero__visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .fp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-global__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-case-study__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fp-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .fp-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .fp-hero__actions {
        flex-direction: column;
    }

    .fp-hero__actions .fp-btn {
        text-align: center;
        justify-content: center;
    }

    .fp-hero__badges {
        flex-direction: column;
        gap: 12px;
    }

    .fp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .fp-services-grid {
        grid-template-columns: 1fr;
    }

    .fp-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-global__grid {
        grid-template-columns: 1fr;
    }

    .fp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .fp-testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .fp-insights-grid {
        grid-template-columns: 1fr;
    }

    .fp-cta-final {
        padding: 80px 0;
    }

    .fp-cta-final__actions {
        flex-direction: column;
        align-items: center;
    }

    .fp-section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .fp-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .fp-industries-grid {
        grid-template-columns: 1fr;
    }

    .fp-partners__grid {
        gap: 8px;
    }

    .fp-partner-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* --- Remove breadcrumbs on front page --- */
.home .breadcrumbs,
.front-page .breadcrumbs,
.fp-modern .breadcrumbs {
    display: none;
}

/* --- Print --- */
@media print {

    .fp-hero__img-fallback,
    .fp-hero__shape,
    .fp-case-study__img-fallback {
        display: none;
    }

    .fp-section--dark {
        background: #333 !important;
    }

    .fp-cta-final {
        background: #0078D4 !important;
    }
}