:root {
    /* SlideSciences Logo Palette */
    --astronaut: #274d78;
    --elephant: #143351;
    --viking: #4fc5df;
    --black: #000000;

    --primary-blue: var(--astronaut);
    --primary-hover: var(--elephant);
    --accent-cyan: var(--viking);
    --primary-dark: var(--black);
    --text-main: var(--black);
    --font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: #ffffff;
}

/* Scroll offset for anchor links so header doesn't cover content */
#services,
#samples,
#goals,
#process,
#faq,
#contact {
    scroll-margin-top: 5rem;
}

/* Shared Section Headings (excluding Hero) */
.services-tabs-container .section-title,
.samples-header h2,
.goals-title,
.process-title,
.cta-title,
.general-faq-left h2,
.testimonials-header h2 {
    font-family: var(--font-family);
    font-size: 2.75rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -1px;
    line-height: 1.2;
}

@media (max-width: 992px) {

    .services-tabs-container .section-title,
    .samples-header h2,
    .goals-title,
    .process-title,
    .cta-title,
    .general-faq-left h2,
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .services-tabs-container .section-title,
    .samples-header h2,
    .goals-title,
    .process-title,
    .cta-title,
    .general-faq-left h2,
    .testimonials-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {

    .services-tabs-container .section-title,
    .samples-header h2,
    .goals-title,
    .process-title,
    .cta-title,
    .general-faq-left h2,
    .testimonials-header h2 {
        font-size: 1.75rem;
    }
}

/* Hero Section - Split Premium Layout */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding-top: 11rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 8.5rem;
        padding-bottom: 3.5rem;
    }
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(1400px + 8rem);
    margin: 0 auto;
    padding: 0 4rem 2rem 4rem;
    z-index: 25;
    gap: 4rem;
}

.hero-visual-container {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding-bottom: 0;
}

.hero-video-doi {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    text-align: right;
}

.hero-video-doi a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted var(--primary-blue);
    padding-bottom: 1px;
}

.hero-video-doi a:hover {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
    /* Bring the video down slightly as requested */
    aspect-ratio: 16/10;
    /* Slightly wider ratio to decrease the absolute height */
    border-radius: 24px;
    /* Flawless, clean Apple-like rounding */
    overflow: hidden;
    /* Deep, highly refined drop shadow */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.hero-video-masked {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 20;
}

.hero-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    /* Minimal, clean curve height */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: padding 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media (min-width: 1528px) {
    .header {
        padding-left: calc((100vw - 1400px) / 2);
        padding-right: calc((100vw - 1400px) / 2);
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 4rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4fc5df;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-cyan);
    color: var(--elephant);
    box-shadow: 0 4px 15px rgba(79, 197, 223, 0.45);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.hero-text-container {
    flex: 1;
    max-width: 580px;
    margin-top: -2rem;
}

.hero-text-container h1 {
    font-size: 2.85rem;
    font-weight: 700;
    /* Clean bold for professional impact */
    line-height: 1.1;
    /* Tighter line-height */
    margin-bottom: 1.25rem;
    letter-spacing: -1.5px;
    /* Tighter tracking for modern premium feel */
    color: #000000;
}

.hero-text-container p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 540px;
    font-weight: 400;
}

.btn-large {
    padding: 0.8rem 1rem 0.8rem 1.8rem;
    font-size: 1.05rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-blue);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: 14px;
}

/* Micro-animation for all premium icon arrow buttons */
.btn .icon-circle svg {
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover .icon-circle svg {
    transform: translate(2px, -2px);
}

/* Secondary Button Style */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-cyan);
    color: var(--elephant);
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 15px rgba(79, 197, 223, 0.35);
}

.btn-secondary .icon-circle {
    background-color: rgba(39, 77, 120, 0.08);
    color: var(--primary-blue);
}

/* Hero CTA Group spacing & layouts */
.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}

.compliance-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 100%;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.badge-item span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--elephant);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    max-width: 95px;
    display: inline-block;
}

/* Circular certification seal wrapper removed to show logos clearly and larger */
.logo-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-seal img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .compliance-badges {
        flex-direction: column !important;
        align-items: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header {
        padding: 2rem;
    }

    .hero-main {
        padding: 0 2rem;
        gap: 2rem;
    }

    .hero-text-container h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .nav-container.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .header-actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-main {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
        gap: 3rem;
    }

    .hero-text-container {
        max-width: 100%;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-container p {
        margin-left: auto;
        margin-right: auto;
    }

    .compliance-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem 1.5rem;
    }

    .hero-visual-container {
        width: 100%;
        justify-content: center;
        align-items: center;
        padding-bottom: 3rem;
    }

    .hero-video-doi {
        text-align: center;
    }

    .hero-visual-wrapper {
        max-width: 100%;
        margin-top: 0;
    }

    .hero-text-container h1 {
        font-size: 2.4rem;
    }

    .video-overlay {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.4) 100%);
    }
}

@media (max-width: 768px) {
    .hero-text-container h1 {
        font-size: 2.1rem;
    }

    .hero-text-container p {
        font-size: 1.05rem;
    }

    .btn-large {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1.5rem;
    }

    .hero-main {
        padding: 0 1.5rem;
        align-items: center;
        padding-top: 2rem;
    }

    .hero-text-container h1 {
        font-size: 1.8rem;
    }

    .hero-text-container p {
        font-size: 1rem;
    }
}

/* Logo Marquee Section */
.logo-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 1.25rem 0;
}

.logo-container {
    max-width: calc(1400px + 8rem);
    margin: 0 auto;
    padding: 0 4rem;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
}

.marquee-left .marquee-content {
    animation: scroll-left 50s linear infinite;
}

.marquee-right .marquee-content {
    animation: scroll-right 50s linear infinite;
}



@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-separator {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}

/* Logos Styling */
.marquee-logo-img {
    height: 125px;
    width: auto;
    max-width: 300px;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Responsive Marquee */
@media (max-width: 768px) {
    .logo-section {
        padding: 1.5rem 0;
    }

    .logo-item {
        padding: 0 1.5rem;
    }

    .marquee-logo-img {
        height: 65px;
    }

    .logo-separator {
        height: 65px;
    }
}

/* Stats Section - Premium Dotted Wave Design */
.stats-section {
    background-color: #ffffff;
    padding: 6rem 4rem 4.5rem 4rem;
    /* Decreased excessive whitespace */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Simulated dotted wave background */
.stats-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(39, 77, 120, 0.15) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.8;
    z-index: 1;
    /* Soft fade mask to make it look like a floating wave */
    mask-image: radial-gradient(ellipse 90% 50% at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 50% at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    transform: rotate(-2deg) scale(1.1);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 4rem;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    /* half of gap */
    top: 2rem;
    height: 140px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(39, 77, 120, 0.12) 20%, rgba(39, 77, 120, 0.12) 80%, transparent);
}

.stat-value {
    font-size: 5rem;
    font-weight: 700;
    /* Beautiful premium gradient fill */
    background: linear-gradient(135deg, #274d78 0%, #4fc5df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -2px;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 2.8em;
    /* Standardizes heading height to 2 lines so descriptions start on the same line */
}

.stat-desc {
    color: #64748b;
    /* Clean, legible neutral gray */
    font-size: 0.95rem;
    /* Secondary text size for correct visual hierarchy */
    line-height: 1.6;
    max-width: 320px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        gap: 3.5rem;
        align-items: center;
    }

    .stats-section {
        padding: 5rem 2rem;
    }

    .stat-item {
        padding: 0;
        max-width: 450px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stat-value {
        font-size: 4.5rem;
    }

    .stats-section {
        padding: 4rem 1.5rem;
    }
}

/* Featured Animation Samples Section */
.samples-section {
    padding: 6rem 4rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.samples-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Split Layout Sizing */
.samples-layout {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr; /* Left side takes ~26.6% width, Right side takes ~73.3% */
    gap: 3.5rem;
    max-width: 1400px; /* Spans the exact same width as other page sections */
    margin: 0 auto;
    align-items: stretch;
}

.samples-header {
    margin-bottom: 4rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.samples-header .section-title {
    background: linear-gradient(135deg, #000000 60%, #274d78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
}

.samples-header .section-desc {
    font-size: 1.15rem;
    color: #475569;
    margin-top: 1rem;
    line-height: 1.6;
}

.samples-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.samples-info-header {
    margin-bottom: 1.75rem;
}

.samples-info-col .info-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.samples-info-col .info-intro {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.samples-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.samples-features li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(79, 197, 223, 0.12);
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-icon svg {
    display: block;
}

.samples-features div strong {
    font-size: 1.12rem;
    font-weight: 700;
    color: #000000;
    display: block;
    margin-bottom: 0.25rem;
}

.samples-features div p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.45;
}

.samples-cta-group {
    display: flex;
    width: 100%;
    margin-top: auto;
}

.samples-cta-group .btn {
    width: 100%;
    justify-content: center;
}

.samples-gallery-col {
    width: 100%;
}

/* Mathematically Balanced 1fr / 1.6fr Gallery Grid */
.samples-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    align-items: stretch; /* Stretch children to have equal height */
}

.samples-gallery-right-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

/* Sample Card Base Styling */
.sample-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    background-color: #0c1524;
    overflow: hidden;
    cursor: pointer;
    border: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.vertical-card {
    height: 100%; /* Stretches to align perfectly with the right column */
}

.horizontal-card {
    flex: 1; /* Splits the right column height equally */
    aspect-ratio: 16/9;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.sample-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85; /* Slightly dim the background preview to make text overlay pop */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Card Visual Overlay */
.sample-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0) 0%, rgba(9, 13, 22, 0.45) 50%, rgba(9, 13, 22, 0.85) 100%);
    transition: background 0.4s ease;
    pointer-events: none;
}

.sample-category {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sample-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Center Play Button with Micro-Animations */
.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--viking);
    color: var(--elephant);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(79, 197, 223, 0.3);
    z-index: 3;
    pointer-events: none;
}

.play-btn-circle svg {
    margin-left: 2px;
    transition: transform 0.3s ease;
}

/* Hover and Interactions */
.sample-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
}

.sample-card:hover .sample-video-preview {
    transform: scale(1.04);
    opacity: 1;
}

.sample-card:hover .sample-card-overlay {
    background: linear-gradient(180deg, rgba(9, 13, 22, 0) 0%, rgba(9, 13, 22, 0.35) 40%, rgba(9, 13, 22, 0.9) 100%);
}

.sample-card:hover .play-btn-circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn-circle:hover {
    background-color: #ffffff;
    color: var(--astronaut);
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

/* Video Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(9, 13, 22, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3rem 1.5rem;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
}

.lightbox-overlay.active .lightbox-container {
    transform: scale(1);
}

.lightbox-content {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
    position: relative;
}

.lightbox-content.vertical {
    aspect-ratio: 9/16;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.lightbox-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background-color: #ffffff;
    color: var(--elephant);
    transform: scale(1.08);
}

.lightbox-caption {
    text-align: center;
    width: 100%;
}

.lightbox-caption .sample-category {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.lightbox-caption .sample-title {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .samples-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .samples-info-col {
        position: static;
        max-width: 800px;
        height: auto;
    }
    
    .samples-features {
        margin-bottom: 2rem;
        gap: 1.25rem;
    }
    
    .samples-cta-group {
        margin-top: 0;
    }
    
    .samples-gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px; /* Center and bound the cards on tablet/mobile */
        margin: 0 auto;
    }
    
    .samples-gallery-right-col {
        gap: 2rem;
    }
    
    .vertical-card {
        aspect-ratio: 9/16;
        height: auto;
        flex-grow: 0;
    }
    
    .horizontal-card {
        aspect-ratio: 16/9;
        height: auto;
    }
    
    .play-btn-circle {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 768px) {
    .samples-section {
        padding: 4rem 2rem;
    }
    
    .sample-title {
        font-size: 1.35rem;
    }
    
    .sample-card-overlay {
        padding: 1.75rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .samples-section {
        padding: 4rem 1.5rem;
    }
    
    .sample-title {
        font-size: 1.25rem;
    }
}

/* Goals Section */
.goals-section {
    padding: 6rem 4rem;
    background-color: #f8fafc; /* Clean solid off-white background matching design */
    position: relative;
}

.goals-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.goals-title {
    margin-bottom: 3.5rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.goal-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Dynamic expanding top accent line on hover */
.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Rounded top border bar */
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.goal-card:hover::before {
    transform: translateY(0);
}

/* Goal Icon Container */
.goal-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.05);
}

.goal-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Goal Card Text */
.goal-card p {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500; /* Clean medium weight instead of heavy bold */
    margin: 0;
    transition: color 0.3s ease;
}

/* Theme Blue (Sky Blue/Professional Blue) */
.goal-card.theme-blue::before {
    background-color: #0284c7;
}
.goal-card.theme-blue .goal-icon {
    background-color: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.12);
    color: #0284c7;
}
.goal-card.theme-blue:hover {
    border-color: #0284c7;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08);
}
.goal-card.theme-blue:hover p {
    color: #0284c7;
}

/* Theme Purple (Violet) */
.goal-card.theme-purple::before {
    background-color: #7c3aed;
}
.goal-card.theme-purple .goal-icon {
    background-color: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}
.goal-card.theme-purple:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08);
}
.goal-card.theme-purple:hover p {
    color: #7c3aed;
}

/* Theme Orange (Dark Orange) */
.goal-card.theme-orange::before {
    background-color: #ea580c;
}
.goal-card.theme-orange .goal-icon {
    background-color: rgba(234, 88, 12, 0.08);
    border: 1px solid rgba(234, 88, 12, 0.12);
    color: #ea580c;
}
.goal-card.theme-orange:hover {
    border-color: #ea580c;
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.08);
}
.goal-card.theme-orange:hover p {
    color: #ea580c;
}

/* Theme Green (Emerald) */
.goal-card.theme-green::before {
    background-color: #059669;
}
.goal-card.theme-green .goal-icon {
    background-color: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.12);
    color: #059669;
}
.goal-card.theme-green:hover {
    border-color: #059669;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.08);
}
.goal-card.theme-green:hover p {
    color: #059669;
}

@media (max-width: 1200px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 4rem;
    background-color: #ffffff;
    /* Light background as requested */
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background-color: #143351;
    /* Softer dark blue background for cards */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(7, 26, 82, 0.15);
}

.expertise-image {
    width: calc(100% - 2rem);
    height: 240px;
    background-color: #000;
    margin: 1rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.expertise-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.expertise-content {
    padding: 0.5rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.expertise-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expertise-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 4rem 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, #000000 0%, #274d78 100%);
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.cta-line-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8));
}

.cta-dot {
    width: 4px;
    height: 4px;
    background-color: #4fc5df;
    border-radius: 50%;
    margin-top: 2px;
}

.cta-title {
    color: #ffffff;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-cyan);
    color: var(--elephant);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 197, 223, 0.45);
}

.cta-button:hover .cta-icon {
    background-color: var(--elephant);
    color: #ffffff;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--astronaut);
    /* Bright blue */
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {


    .cta-section {
        padding: 6rem 1.5rem;
    }
}

/* FAQ Section - Clean & Minimal Medical Field Style */
.faq-section {
    padding: 6rem 4rem;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-title {
    text-align: left;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.25rem 0;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #274d78;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background-color: transparent;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #274d78;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .faq-question {
        font-size: 1.2rem;
        padding: 1.5rem 0;
    }

    .faq-section {
        padding: 4rem 2rem;
    }
}

/* Process Section */
.process-section {
    padding: 6rem 4rem;
    background-color: #ffffff;
    /* Following light theme global rule */
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    text-align: left;
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-card {
    background: linear-gradient(135deg, #143351, #274d78);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(20, 51, 81, 0.2);
    transition: transform 0.3s ease;
    min-height: 110px;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card:hover .process-number {
    -webkit-text-stroke: 1.5px var(--accent-cyan);
    filter: drop-shadow(0 0 8px rgba(79, 197, 223, 0.4));
}

.process-number {
    font-size: 4.5rem;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    display: inline-flex;
    justify-content: center;
    width: 5rem;
    flex-shrink: 0;
    z-index: 1;
    line-height: 1;
}

.process-text {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
    z-index: 2;
}

.process-footer {
    text-align: center;
    margin-top: 4rem;
}

.process-divider {
    height: 1px;
    width: 300px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0 auto 2.5rem auto;
}

.process-footer p {
    font-size: 1.15rem;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-footer strong {
    font-weight: 700;
}

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 2rem;
    }

    .process-title {
        margin-bottom: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 1.5rem 1.5rem 1.5rem 5rem;
    }
}

/* General FAQ Section - Minimalistic & Medical Professional Design */
.general-faq-section {
    padding: 8rem 4rem;
    background-color: #fafcfc;
    position: relative;
    overflow: hidden;
}

.general-faq-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 77, 120, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.general-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.general-faq-left {
    flex: 1;
}

.general-faq-left h2 {
    margin-bottom: 3.5rem;
}

.general-faq-left h2 br {
    display: none;
    /* Make heading flow naturally */
}

/* Minimalist Accordion Overrides for this section only */
.general-faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.general-faq-section .faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.general-faq-section .faq-item:hover {
    box-shadow: 0 8px 25px rgba(79, 197, 223, 0.15);
    border-color: rgba(79, 197, 223, 0.4);
}

.general-faq-section .faq-question {
    padding: 1.5rem 2rem;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
}

.general-faq-section .faq-item.active {
    border-color: var(--accent-cyan);
}

.general-faq-section .faq-item.active .faq-question {
    color: #274d78;
}

.general-faq-section .faq-icon {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: #94a3b8;
    margin-left: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
}

.general-faq-section .faq-item.active .faq-icon {
    background-color: rgba(79, 197, 223, 0.15);
    color: var(--accent-cyan);
    border-color: transparent;
}

.general-faq-section .faq-answer {
    padding: 0 2rem;
}

.general-faq-section .faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
}

.general-faq-section .faq-answer p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

.general-faq-right {
    flex: 0 0 380px;
}

.faq-contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(79, 197, 223, 0.2);
    box-shadow: 0 20px 40px rgba(79, 197, 223, 0.05);
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-contact-card::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background-color: rgba(79, 197, 223, 0.15);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234fc5df' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.faq-contact-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-contact-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2rem;
}

.faq-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #274d78;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 77, 120, 0.2);
}

.faq-email-btn svg {
    margin-left: 0.75rem;
    width: 18px;
    height: 18px;
}

.faq-email-btn:hover {
    background-color: var(--accent-cyan);
    color: var(--elephant);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 197, 223, 0.4);
}

@media (max-width: 992px) {
    .general-faq-container {
        flex-direction: column;
        gap: 3rem;
    }

    .general-faq-right {
        flex: auto;
        width: 100%;
    }

    .faq-contact-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .general-faq-section {
        padding: 5rem 1.5rem;
    }



    .general-faq-section .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .general-faq-section .faq-answer {
        padding: 0 1.5rem;
    }

    .general-faq-section .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* Footer Section */
.site-footer {
    background-color: #0b1a29;
    /* Premium deep dark blue background */
    color: #cbd5e1;
    padding: 6rem 4rem 2rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    /* Pure white logo for premium dark contrast */
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 500px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-link {
    color: var(--accent-cyan);
    /* Cyan link for crisp contrast */
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon:hover {
    background-color: var(--accent-cyan);
    color: var(--elephant);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 197, 223, 0.25);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-address p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 2rem 2rem 2rem;
    }
}

/* Interactive Services Tabs Section */
.services-tabs-section {
    background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 5.5rem 4rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.02);

    /* Shared Accent Theme variables (Blue only) */
    --accent-color: #274d78;
    --accent-cyan: #4fc5df;
    --accent-glow: rgba(39, 77, 120, 0.15);
    --accent-bg: rgba(39, 77, 120, 0.04);
}

/* Subtle scientific grid pattern */
.services-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(39, 77, 120, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}



/* Ambient animated blobs */
.services-ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    transition: all 1s ease-in-out;
}

.services-ambient-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 77, 120, 0.15) 0%, rgba(79, 197, 223, 0.02) 70%);
    top: -100px;
    left: -100px;
}

.services-ambient-blob.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(39, 77, 120, 0.1) 0%, rgba(79, 197, 223, 0) 70%);
    bottom: -150px;
    right: -100px;
}

.services-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header-container {
    margin-bottom: 3.5rem;
    max-width: 100%;
}

.services-tabs-container .section-title {
    background: linear-gradient(135deg, #000000 60%, #274d78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
}

.services-tabs-container .section-desc {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-cta-group {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-top: 2.5rem;
}

@media (max-width: 576px) {
    .services-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .services-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Services Accordion Container */
.services-accordion {
    display: flex;
    width: 100%;
    height: 400px;
    gap: 0px;
    /* No gap between panels, just like the image */
    border-radius: 0 0 40px 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background-color: #0b1a29;
}

/* Service Panel */
.service-panel {
    flex: 1;
    /* All panels have identical equal width at all times */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

/* Background Image of Panel */
.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Zoom background slightly on hover */
.service-panel:hover .panel-bg {
    transform: scale(1.1);
}

/* Gradient Overlay for Tint and Text Readability */
.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.service-panel:hover .panel-overlay {
    opacity: 0.92;
    /* Darkens background image further on hover to maximize text readability */
}

/* Panel Content Container */
.panel-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 40px;
    /* Positioned at the bottom when collapsed */
    padding: 0;
    /* No padding when collapsed */
    text-align: center;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: none;
    background: rgba(0, 0, 0, 0);
    /* Invisible background by default */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

/* Heading Style */
.panel-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    /* Sleek semi-bold instead of heavy bold */
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Description Text - Hidden by default */
.panel-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    /* Clean normal weight */
    color: rgba(255, 255, 255, 0.9);
    /* Softer white for premium look */
    max-width: 280px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1), max-height 0.5s cubic-bezier(0.25, 1, 0.3, 1), margin-top 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Hover transitions - Shifts content to center, shows description, and boxes the text */
.service-panel:hover .panel-content {
    bottom: 50%;
    transform: translateY(50%);
    padding: 1.75rem 1.5rem;
    /* Gain padding when boxed */
    background: rgba(0, 0, 0, 0.35);
    /* Translucent dark backdrop */
    border: none;
    backdrop-filter: blur(12px);
    /* Premium glassmorphism blur */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-panel:hover .panel-desc {
    opacity: 1;
    max-height: 120px;
    margin-top: 1rem;
}

/* Mobile Responsive Stacking */
@media (max-width: 992px) {
    .services-accordion {
        flex-direction: column;
        height: auto;
        gap: 1rem;
        background-color: transparent;
        box-shadow: none;
        overflow: visible;
        border-radius: 0;
    }

    .service-panel {
        width: 100%;
        height: 180px;
        /* Fixed height for each stacked card on mobile */
        border-radius: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex: none !important;
        /* Disable flex rules of desktop */
    }

    .panel-content {
        bottom: 50% !important;
        transform: translateY(50%) !important;
        left: 15px !important;
        right: 15px !important;
        padding: 1rem !important;
        background: rgba(0, 0, 0, 0.35) !important;
        border: none !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    .panel-content h3 {
        font-size: 1.3rem;
    }

    .panel-desc {
        opacity: 1 !important;
        max-height: 100px !important;
        margin-top: 0.5rem !important;
        font-size: 0.85rem;
        max-width: 480px;
    }
}

/* ========================================
   Quote Request Popup Modal
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Scrollbar styling */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #274d78;
    border-color: #274d78;
    color: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(39, 77, 120, 0.3);
}

/* Modal header */
.modal-header {
    margin-bottom: 2rem;
    padding-right: 2.5rem;
}

.modal-title {
    font-family: var(--font-family);
    font-size: 1.75rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Form styles */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: #000000;
    background-color: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #274d78;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(39, 77, 120, 0.08);
}

.form-group input::placeholder {
    color: #94a3b8;
}

/* Side-by-side row for duration & deadline */
.form-row {
    display: flex;
    gap: 1rem;
}

/* Submit button */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #274d78, #143351);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(39, 77, 120, 0.25);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 197, 223, 0.45);
    background: var(--accent-cyan);
    color: var(--elephant);
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(39, 77, 120, 0.2);
}

.form-submit-btn svg {
    transition: transform 0.25s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(3px);
}

/* HubSpot Form Styling Overrides */
.hs-form-wrapper {
    width: 100%;
    overflow: visible;
}

.hs-form-frame iframe {
    width: 100% !important;
    border: none !important;
    min-height: 420px;
}

/* In case it renders as raw HTML */
.hs-form-frame form.hs-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hs-form-frame .hs-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.hs-form-frame label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    font-family: var(--font-family);
    display: block;
    margin-bottom: 0.25rem;
}

.hs-form-frame input[type="text"],
.hs-form-frame input[type="email"],
.hs-form-frame input[type="tel"],
.hs-form-frame select,
.hs-form-frame textarea {
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    color: #000000 !important;
    background-color: #f8fafc !important;
    outline: none !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.hs-form-frame input:focus,
.hs-form-frame select:focus,
.hs-form-frame textarea:focus {
    border-color: #274d78 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(39, 77, 120, 0.08) !important;
}

.hs-form-frame input.hs-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 1rem !important;
    background: linear-gradient(135deg, #274d78, #143351) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    font-family: var(--font-family) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 6px 20px rgba(39, 77, 120, 0.25) !important;
    margin-top: 1rem !important;
    -webkit-appearance: none;
    appearance: none;
}

.hs-form-frame input.hs-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(79, 197, 223, 0.45) !important;
    background: var(--accent-cyan) !important;
    color: var(--elephant) !important;
}

/* Modal responsive */
@media (max-width: 576px) {
    .modal-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4.5rem 4rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-ambient-blob {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 197, 223, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(20, 51, 81, 0.15);
    background-color: transparent;
    color: var(--elephant);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-btn:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--elephant);
    box-shadow: 0 4px 15px rgba(79, 197, 223, 0.3);
    transform: translateY(-2px);
}

.slider-btn:active {
    transform: translateY(0);
}

.slider-btn svg {
    transition: transform 0.3s ease;
}

.slider-btn.prev-btn:hover svg {
    transform: translateX(-2px);
}

.slider-btn.next-btn:hover svg {
    transform: translateX(2px);
}

/* Slider Layout */
.testimonials-slider {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Card Styling */
.testimonial-card {
    flex: 0 0 calc((100% - (2 * 2.5rem)) / 3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-logo {
    height: 55px;
    width: auto;
    max-width: 220px;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.client-logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.quote-mark {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent-cyan);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.25rem;
    font-weight: 400;
    flex-grow: 1;
}

.client-meta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--elephant);
    margin-top: auto;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc((100% - (1 * 2.5rem)) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 2rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        padding: 1.5rem 0;
    }

    .testimonials-header {
        margin-bottom: 2rem;
    }
}

/* ==========================================
   Comprehensive Responsive Layout System
   ========================================== */

/* Wide Screens & Extra Large Desktops */
@media (min-width: 1400px) {
    .hero-main {
        max-width: calc(1400px + 8rem);
        padding-bottom: 2rem;
    }

    .header {
        padding-left: calc((100vw - 1400px) / 2);
        padding-right: calc((100vw - 1400px) / 2);
    }

    .logo-container {
        max-width: calc(1400px + 8rem);
    }

    .hero-text-container h1 {
        font-size: 3.2rem;
    }
}

/* Large Screens (Laptops & Desktops) */
@media (max-width: 1200px) {
    .hero-section {
        padding-top: 9.5rem;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero-main {
        gap: 3rem;
        padding: 0 2rem 5rem 2rem;
    }

    .logo-container {
        padding: 0 2rem;
    }

    .hero-text-container h1 {
        font-size: 2.8rem;
    }

    .hero-visual-wrapper {
        max-width: 580px;
    }

    .projects-section,
    .services-tabs-section,
    .expertise-section,
    .testimonials-section {
        padding: 5rem 2rem;
    }
}

/* Medium Screens (Tablets & Landscape Mobile) */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 9rem;
        padding-bottom: 3.5rem;
    }

    .header {
        padding: 1.5rem 2rem;
    }

    .hero-main {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-bottom: 6rem;
    }

    .hero-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-text-container h1 {
        font-size: 2.6rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .compliance-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .hero-visual-container {
        width: 100%;
        justify-content: center;
        padding-bottom: 2rem;
    }

    .hero-visual-wrapper {
        margin-top: 0;
        max-width: 640px;
    }
}

/* Small Screens (Tablets & Portrait Mobile) */
@media (max-width: 768px) {
    .hero-text-container h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-text-container p {
        font-size: 1.05rem;
    }

    .compliance-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .badge-item {
        justify-content: flex-start;
    }

    .logo-container {
        padding: 0 1.5rem;
    }

    .projects-gallery {
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
    }

    .project-card {
        height: 320px;
        flex: none !important;
    }

    .project-card.active {
        height: 380px;
    }

    .projects-section,
    .services-tabs-section,
    .expertise-section,
    .testimonials-section,
    .stats-section {
        padding: 3.5rem 1.5rem;
    }
}

/* Extra Small Screens (Compact Mobile Devices) */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 7.5rem;
        padding-bottom: 3rem;
    }

    .header {
        padding: 1.25rem 1rem;
    }

    .hero-text-container h1 {
        font-size: 1.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .compliance-badges {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .logo-container {
        padding: 0 1rem;
    }

    .projects-header-left h2,
    .services-tabs-container h2,
    .expertise-title {
        font-size: 1.8rem;
    }
}