:root {
    --primary-color: #1D1D1B;
    /* Weatherford Pastel Black */
    --secondary-color: #333333;
    --accent-color: #CE1241;
    /* Weatherford Atomic Raspberry */
    --accent-hover: #A30E32;
    --text-dark: #101010;
    --text-light: #2a2a2a;
    --white: #FFFFFF;
    --bg-light: #F2F2F2;
    --bg-dark: #1D1D1B;

    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

h1,
h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 92%;
    /* Fluid width */
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        /* Cap on very large screens */
    }
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    /* Very slight radius, almost square */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    color: var(--primary-color);
    gap: 12px;
}

.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    padding: 0.7rem 0;
    /* Reduced by 30% from 1rem */
    transition: var(--transition);
    border-bottom: 1px solid #E5E5E5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    height: 35px;
    /* Reduced by 30% from 50px */
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    /* Push to the right */
    margin-right: 2.5rem;
    /* Space before the button */
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-btn {
    padding: 8px 24px;
    font-size: 0.85rem;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.nav-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: none;
}

.mobile-menu-btn {
    display: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0.35rem;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 630px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20% auto auto 55%;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 18, 65, 0.28) 0%, rgba(206, 18, 65, 0) 68%);
    filter: blur(12px);
    z-index: 1;
    animation: heroGlowPulse 7s ease-in-out infinite;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    background-image:
        radial-gradient(circle at 70% 20%, rgba(206, 18, 65, 0.38) 0%, transparent 48%),
        linear-gradient(to right, rgba(29, 29, 27, 0.9) 0%, rgba(29, 29, 27, 0.58) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: var(--hero-position, center);
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: opacity 2s ease-in-out;
    animation: heroBackdropDrift 18s ease-in-out infinite alternate;
}

.hero-panel--hero1 {
    --hero-image: url('imgs/hero1.jpg');
    --hero-position: center;
}

.hero-panel--hero2 {
    --hero-image: url('imgs/hero2.jpg');
    --hero-position: center;
}

.hero-panel--hero3 {
    --hero-image: url('imgs/hero3.jpg');
    --hero-position: center;
}

.hero-panel--active {
    opacity: 1;
}

.hero-panel--alternate {
    background-image:
        radial-gradient(circle at 75% 18%, rgba(206, 18, 65, 0.22) 0%, transparent 42%),
        linear-gradient(120deg, rgba(29, 29, 27, 0.93) 8%, rgba(29, 29, 27, 0.42) 100%),
        var(--hero-image);
}

/* Hero Content Alignment - Centered */
.hero-panel__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    margin: 0 auto;
}

.hero-panel__content--bottom {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 5.5rem;
}

.hero-panel__content--right {
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding-right: 3rem;
}

.hero-panel__content--left {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding-left: 3rem;
}

.hero-panel__content>* {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-panel--active .hero-panel__content>* {
    opacity: 1;
}

.hero-subtitle {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 1000px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0;
    max-width: 700px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Small Stats in Hero */
.hero-stats-preview {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.stat-item-preview {
    display: flex;
    flex-direction: column;
}

.stat-number-sm {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label-sm {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.stat-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-link {
    margin-top: 0;
    display: inline-flex;
}

.section-badge {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.about-stat-box {
    min-height: 190px;
    padding: 2rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08)),
        var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.about-stat-box--gray {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.12)),
        #6b6b6b;
}

.about-stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 18px 35px rgba(103, 8, 32, 0.28);
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.75rem);
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1rem;
}

.about-stat-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Services */
/* Services - Full Width Tiled Grid */
.services-section {
    padding: 0;
    /* Remove padding for full bleed feel */
    background: var(--white);
}

.service-summary-section {
    background: var(--white);
    padding: 90px 0;
}

.service-summary-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.service-summary-column {
    min-height: 280px;
    height: 100%;
    padding: 4rem clamp(2rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-summary-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.9fr);
    column-gap: clamp(1.5rem, 3vw, 2.75rem);
    row-gap: 0.75rem;
    align-items: center;
}

.service-summary-heading {
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
    font-size: clamp(1.65rem, 2.1vw, 2rem);
    line-height: 1.2;
}

.service-summary-layout--reverse {
    grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.3fr);
}

.service-summary-content {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
}

.service-summary-media {
    position: relative;
    width: 100%;
}

.service-summary-image {
    display: block;
    width: 100%;
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
}

.service-summary-column--primary {
    background-image:
        linear-gradient(rgba(29, 29, 27, 0.9), rgba(29, 29, 27, 0.9)),
        url('imgs/back05.png');
    text-align: right;
    align-items: flex-end;
}

.service-summary-column--secondary {
    background-image:
        linear-gradient(rgba(122, 122, 122, 0.82), rgba(122, 122, 122, 0.82)),
        url('imgs/back05.png');
}

.service-summary-section .section-text {
    max-width: none;
    margin: 0;
    font-size: 1.12rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.service-summary-section .section-title {
    margin-bottom: 0.4rem;
}

.service-summary-column--primary .section-title {
    color: var(--accent-color);
}

.service-summary-column--secondary .section-title {
    color: var(--white);
}

.service-summary-column--primary .section-text {
    color: var(--accent-color);
}

.service-summary-column--secondary .section-text {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 1px;
    /* Minimal gap for border effect */
    background: #E5E5E5;
    /* Acts as border color */
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    /* Balanced padding */
    border-radius: 0;
    border: none;
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    /* Force square shape */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: none;
    background: #F8F8F8;
    box-shadow: none;
}

.service-card::after {
    display: none;
    /* Remove previous underline effect */
}

/* Service icon simplified */
.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    /* Red icons */
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Service 6 Interactive Tile */
.service-tile-interactive {
    position: relative;
    filter: grayscale(1);
    transition: all 0.5s ease !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical center */
    align-items: center;
    /* Horizontal center */
    text-align: center;
}

.service-tile-interactive--more {
    background: url('imgs/services_more.png') no-repeat center center/cover;
}

.service-tile-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for better text contrast */
    opacity: 0.6;
    transition: opacity 0.5s ease;
    z-index: 1;
}





.service-tile-interactive:hover {
    filter: grayscale(0);
}

.service-tile-interactive:hover::before {
    opacity: 0.1;
    /* Even lighter on hover to show full color */
}

.service-tile-interactive:hover .service-link {
    color: var(--white) !important;
    border-color: var(--accent-color);
    letter-spacing: 2px;
}

.service-link {
    margin-top: auto;
    /* Pushes to bottom of the card */
    color: var(--accent-color);
    /* Red by default */
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-color);
    /* Black on hover */
    letter-spacing: 2px;
}

/* Specific styling for the centered image tile link */
.centered-big-link {
    color: var(--white) !important;
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    border: 2px solid var(--white);
    padding: 15px 30px;
    z-index: 2;
    margin-top: 0 !important;
    /* Overrides auto margin */
}

.centered-big-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white) !important;
}

/* Stats */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-block;
}

.stat-suffix {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: inline-block;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Combined Trust & Presence */
.combined-trust-section {
    padding: 0;
    /* Full bleed layout */
    background: var(--white);
}

.trust-presence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    /* Remove gap for seamless blocks */
}

.trust-col {
    background: var(--white);
    padding: 3.2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 400px;
    /* Ensure sufficient height for bottom alignment */
}

.presence-col {
    background: var(--accent-color);
    /* Branded Red */
    padding: 3.2rem 2rem;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 400px;
}

.trust-col .section-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-align: center;
}

.presence-col .section-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
}

/* Certification Banner */
.cert-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.cert-banner::before,
.cert-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    pointer-events: none;
    z-index: 1;
}

.cert-banner::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.cert-banner::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.cert-banner:hover .cert-track {
    animation-play-state: paused;
}

.cert-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    align-items: stretch;
    flex-wrap: nowrap;
    animation: clientBannerScroll 28s linear infinite;
}

.cert-card {
    flex: 0 0 auto;
    width: min(72vw, 390px);
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    line-height: 1.45;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cert-card-logo {
    width: auto;
    max-width: 120px;
    height: 44px;
    object-fit: contain;
}

.cert-card-text {
    display: block;
}

.cert-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    background: #fff7ef;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Compact Regions */
.regions-list-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    /* Increased gaps for larger content */
    justify-content: center;
    max-width: 650px;
    /* Increased width to accommodate larger text */
    margin: 0 auto;
    text-align: center;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.8rem;
    /* Significantly larger */
    color: inherit;
    transition: all 0.3s ease;
    cursor: default;
}

.region-item:hover {
    transform: translateX(10px);
    opacity: 0.8;
}

.region-item i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.2rem;
    /* Significantly larger */
}

.trust-more-link {
    display: inline-block;
    margin-top: auto;
    padding: 0;
    background: transparent;
    color: var(--accent-color) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trust-col .trust-more-link {
    color: var(--accent-color) !important;
}

.trust-col .trust-more-link:hover {
    background: transparent;
    letter-spacing: 4px;
}

.trust-more-link:hover {
    background: transparent;
    color: inherit !important;
    letter-spacing: 4px;
}

.presence-col .trust-more-link {
    color: var(--white) !important;
}



.trust-more-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.trust-more-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .trust-presence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}



.contact-invite-section {
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(206, 18, 65, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.contact-invite-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3.75rem;
    align-items: center;
}

.contact-invite-media {
    position: relative;
}

.contact-invite-media::after {
    content: '';
    position: absolute;
    inset: auto 2rem -1.5rem auto;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(206, 18, 65, 0.22) 0%, rgba(206, 18, 65, 0) 72%);
    pointer-events: none;
}

.contact-invite-image {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 24px 55px rgba(19, 29, 42, 0.14);
}

.contact-invite-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.contact-invite-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.contact-invite-description {
    max-width: 580px;
    margin-bottom: 1.35rem;
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.75;
}

.contact-invite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-invite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    padding: 15px 28px;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contact-invite-btn--primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(206, 18, 65, 0.22);
}

.contact-invite-btn--primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(163, 14, 50, 0.28);
}

.contact-invite-btn--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    border-color: rgba(29, 29, 27, 0.14);
}

.contact-invite-btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(29, 29, 27, 0.18);
}

/* Clients */
.clients-section {
    padding: 40px 0;
    margin-bottom: 80px;
    background: #F7FAFC;
    text-align: center;
}

.clients-sub {
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.clients-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-banner::before,
.clients-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 1;
}

.clients-banner::before {
    left: 0;
    background: linear-gradient(to right, #F7FAFC, rgba(247, 250, 252, 0));
}

.clients-banner::after {
    right: 0;
    background: linear-gradient(to left, #F7FAFC, rgba(247, 250, 252, 0));
}

.clients-banner:hover .clients-track {
    animation-play-state: paused;
}

.clients-track {
    display: flex;
    gap: 4.5rem;
    width: max-content;
    align-items: center;
    flex-wrap: nowrap;
    animation: clientBannerScroll 22s linear infinite;
}

.client-logo-card {
    flex: 0 0 auto;
    min-width: 180px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.client-logo-image {
    display: block;
    width: auto;
    max-width: 520px;
    height: 144px;
    object-fit: contain;
    margin: 0 auto;
}

@keyframes clientBannerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 3rem));
    }
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding-top: 80px;
    border-top: 3px solid var(--accent-color);
}

.footer-content {
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.footer-links {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1.2fr);
    gap: 2.2rem;
    flex: 2;
    align-items: start;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-col--intro {
    max-width: 280px;
}

.footer-intro-text {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 28ch;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-brand-logo {
    width: 42px;
    height: auto;
    object-fit: contain;
}

.footer-brand-name {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.footer-col ul {
    list-style: none;
}

.footer-col:last-child ul {
    text-align: center;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 0.4rem;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-contact-actions a:nth-last-child(-n + 2) {
    font-size: 0.78rem;
}

.footer-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    display: inline-block;
    text-align: center;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white);
}

.footer-bottom {
    background: var(--accent-color);
    padding: 10px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--white);
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 0.4px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroBackdropDrift {
    from {
        transform: scale(1.05) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.12) translate3d(-1.5%, -1%, 0);
    }
}

@keyframes heroGlowPulse {

    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero::before,
    .hero-panel,
    .hero-panel__content>* {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-panel {
        transition: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .compliance-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cert-grid {
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .section {
        padding: 64px 0;
    }

    .nav-container {
        position: relative;
        gap: 0.75rem;
    }

    .logo {
        height: 30px;
    }

    .hero {
        min-height: 560px;
    }

    .hero::before {
        width: 360px;
        height: 360px;
        left: 50%;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.15;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        letter-spacing: 1.4px;
        max-width: 100%;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero-panel__content,
    .hero-panel__content--bottom,
    .hero-panel__content--right,
    .hero-panel__content--left {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-box {
        min-height: 150px;
    }

    .service-summary-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-summary-column {
        min-height: auto;
        padding: 2.5rem 1.25rem;
        text-align: left;
        align-items: flex-start;
        width: 100%;
        overflow: hidden;
    }

    .service-summary-layout,
    .service-summary-layout--reverse {
        grid-template-columns: 1fr;
    }

    .service-summary-media {
        order: -1;
    }

    .service-summary-image {
        min-height: 200px;
        max-height: 260px;
    }

    .service-summary-section .section-text {
        font-size: 1rem;
    }

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

    .service-card {
        aspect-ratio: auto;
        padding: 2rem 1.5rem;
    }

    .centered-big-link {
        font-size: 1.4rem !important;
        padding: 0.9rem 1.1rem;
    }

    .clients-section {
        margin-bottom: 56px;
    }

    .clients-track {
        gap: 2.5rem;
    }

    .client-logo-card {
        min-width: 120px;
    }

    .client-logo-image {
        max-width: 180px;
        height: 72px;
    }

    .trust-col,
    .presence-col {
        min-height: auto;
        padding: 2.5rem 1rem;
    }

    .cert-track {
        gap: 0.85rem;
    }

    .cert-card {
        width: min(82vw, 320px);
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .regions-list-compact {
        gap: 1.25rem;
    }

    .region-item {
        gap: 0.75rem;
        font-size: 1.2rem;
    }

    .region-item i {
        font-size: 1.4rem;
    }

    .contact-invite-section {
        padding: 72px 0 56px;
    }

    .contact-invite-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-invite-image {
        min-height: 300px;
        border-radius: 0;
    }

    .contact-invite-title {
        font-size: 2.35rem;
    }

    .contact-invite-description {
        font-size: 1rem;
    }

    .contact-invite-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        margin: 0;
        padding: 1.25rem 1rem;
        background: rgba(255, 255, 255, 0.99);
        border: 1px solid #E5E5E5;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
        z-index: 1001;
    }

    .nav-links.nav-links--open {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .clients-section,
    .clients-banner,
    .service-summary-section,
    .combined-trust-section,
    .contact-invite-section,
    .footer {
        overflow-x: clip;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        justify-items: center;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer-col ul {
        text-align: center;
    }

    .footer-col--intro {
        max-width: none;
    }

    .footer-intro-text {
        max-width: 36ch;
        margin: 0 auto;
    }

    .footer-brand {
        justify-content: center;
    }
}
