/* ============================================
   HERO SECTION
   ============================================ */


/* --- Highlighted keywords --- */
.text-highlight {
    color: var(--primary-teal);
    font-weight: 700;
}

/* Gap between Service Pillars and Why Us */
#why-us {
    margin-top: var(--spacing-3xl);
}

/* --- Staggered question reveal --- */
.hero-questions {
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-question {
    display: inline-block;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: default;
}

.hero-question.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-description--closing {
    margin-bottom: var(--spacing-xl);
}

/* --- Animated CTA button --- */
.btn-animated {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-animated .btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-animated:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: none;
    z-index: 1;
}

.btn-animated:hover::before {
    animation: btnShimmer 0.6s ease forwards;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: transparent;
    position: relative;
    overflow: visible;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.876rem;
    background: var(--brand-gradient-subtle);
    border: 1px solid rgba(78, 190, 154, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: var(--spacing-lg);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-mint);
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(78, 190, 154, 0.3);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(78, 190, 154, 0);
    }
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.hero-title .highlight {
    color: var(--primary-teal);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bullets {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--primary-teal);
}

.hero-bullets .hero-description {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-bullets .hero-description::marker {
    color: var(--primary-teal);
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

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

/* Hero graphic container */
.hero-graphic-container {
    width: 100%;
    max-width: clamp(320px, 28vw, 520px);
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft ambient glow behind the image */
.hero-graphic-glow {
    position: absolute;
    inset: -25%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(78, 190, 154, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 65% 65%, rgba(8, 184, 171, 0.2) 0%, transparent 50%);
    animation: none;
    z-index: 0;
}

/* Pulsing rings */
.hero-graphic-pulse {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 1.5px solid rgba(78, 190, 154, 0.25);
    animation: none;
    z-index: 0;
}

.hero-graphic-pulse--2 {
    inset: -2%;
    border: 1px solid rgba(8, 184, 171, 0.15);
    animation: none;
}

/* Orbiting dots */
.hero-orbit {
    position: absolute;
    inset: -5%;
    border-radius: 50%;
    animation: none;
    z-index: 3;
    pointer-events: none;
}

.hero-orbit--reverse {
    inset: 2%;
    animation: none;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-gradient);
    box-shadow: 0 0 10px rgba(78, 190, 154, 0.6), 0 0 20px rgba(78, 190, 154, 0.3);
}

.hero-orbit .orbit-dot:nth-child(1) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.hero-orbit .orbit-dot:nth-child(2) {
    top: 10%;
    right: 10%;
    width: 6px;
    height: 6px;
    transform: translate(50%, -50%);
}

.hero-orbit .orbit-dot:nth-child(3) {
    bottom: 12%;
    left: 15%;
    width: 5px;
    height: 5px;
}

.hero-orbit--reverse .orbit-dot:nth-child(1) {
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
}

.hero-orbit--reverse .orbit-dot:nth-child(2) {
    bottom: 5%;
    right: 20%;
    width: 5px;
    height: 5px;
}

/* Scan line effect */
.hero-scan-line {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(78, 190, 154, 0.6), rgba(8, 184, 171, 0.8), rgba(78, 190, 154, 0.6), transparent);
    border-radius: 2px;
    z-index: 3;
    opacity: 0.6;
    animation: none;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(78, 190, 154, 0.4);
}

/* The main image - gentle float + rotate */
.hero-network-img {
    width: 85%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    animation: none;
    filter: drop-shadow(0 4px 8px rgba(8, 184, 171, 0.15));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-graphic-container:hover .hero-network-img {
    animation-play-state: paused;
    transform: scale(1.08) translateY(-6px);
    filter: drop-shadow(0 6px 12px rgba(8, 184, 171, 0.2));
}

.hero-graphic-container:hover .hero-graphic-glow {
    animation: glowPulseHover 2s ease-in-out infinite;
}

.hero-graphic-container:hover .hero-orbit {
    animation-duration: 6s;
}

.hero-graphic-container:hover .hero-orbit--reverse {
    animation-duration: 9s;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: -10%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-mint);
    opacity: 0;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 8%;
    animation: none;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    top: 25%;
    right: 10%;
    animation: none;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    bottom: 22%;
    left: 15%;
    animation: none;
}

.particle:nth-child(4) {
    width: 3px;
    height: 3px;
    bottom: 35%;
    right: 12%;
    animation: none;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 50%;
    left: 3%;
    animation: none;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 10%;
    right: 25%;
    background: var(--primary-teal);
    animation: none;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    bottom: 10%;
    right: 30%;
    animation: none;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 65%;
    right: 5%;
    background: var(--primary-teal);
    animation: none;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes floatImage {

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

    50% {
        transform: translateY(-6px) scale(1.015);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.06) rotate(3deg);
    }
}

@keyframes glowPulseHover {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.5;
    }
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scanMove {

    0%,
    100% {
        top: 8%;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    50% {
        top: 88%;
        opacity: 0.4;
    }

    90% {
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.3);
    }

    15% {
        opacity: 0.8;
        transform: translateY(-8px) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-25px) scale(0.7);
    }

    85% {
        opacity: 0.3;
        transform: translateY(-40px) scale(0.4);
    }

    100% {
        opacity: 0;
        transform: translateY(-50px) scale(0.2);
    }
}

@keyframes particleDrift {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3);
    }

    20% {
        opacity: 0.7;
        transform: translate(8px, -12px) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-5px, -28px) scale(0.8);
    }

    80% {
        opacity: 0.2;
        transform: translate(10px, -40px) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translate(0, -50px) scale(0.2);
    }
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

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

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.375rem;
    transition: all var(--transition-base);
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

#who-we-are {
    padding-bottom: var(--spacing-lg);
}

/* ============================================
   SERVICE PILLARS — Vertical Tabs Layout
   ============================================ */
#service-pillars {
    padding-bottom: var(--spacing-lg);
}

/* Scroll-triggered entrance animations */
.pillars-reveal {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pillars-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pillars-reveal-left .pillars-tab {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pillars-reveal-left .pillars-tab.tab-revealed {
    opacity: 1;
    transform: translateX(0);
}

.pillars-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.pillars-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.pillars-layout {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Left sidebar tabs */
.pillars-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 0 0 280px;
}

.pillars-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #F5FAFA;
    border: 1px solid var(--border-light);
    border-left: 3px solid transparent;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.tab-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(78, 190, 154, 0.08);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.tab-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
    transition: transform 0.35s ease;
}

.tab-text {
    display: flex;
    flex-direction: column;
}

.tab-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
}

.tab-subtitle {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 3px;
    transition: color 0.3s;
}

.pillars-tab:hover {
    background: rgba(78, 190, 154, 0.05);
    border-left-color: rgba(78, 190, 154, 0.3);
}

.pillars-tab:hover .tab-icon {
    transform: scale(1.05);
    border-color: rgba(78, 190, 154, 0.25);
}

.pillars-tab:hover .tab-icon svg {
    transform: scale(1.1);
}

.pillars-tab:hover .tab-title {
    color: var(--text-primary);
}

/* Progress bar on active tab */
.pillars-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #4EBE9A, #08B8AB);
    border-radius: 0 2px 2px 0;
    transition: none;
}

.pillars-tab.active.auto-cycling::after {
    width: 100%;
    transition: width 8s linear;
}

/* Hint label above tabs */

/* Initial pulse on inactive tabs */
.pillars-tab.intro-pulse {
    animation: tabPulse 1.5s ease-out;
}

@keyframes tabPulse {
    0% { box-shadow: 0 0 0 0 rgba(78, 190, 154, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(78, 190, 154, 0); }
    100% { box-shadow: none; }
}

.pillars-tab.active {
    background: var(--bg-card);
    border-color: var(--border-light);
    border-left: 3px solid #08B8AB;
    box-shadow: 0 4px 16px rgba(78, 190, 154, 0.12);
}

.pillars-tab.active .tab-icon {
    background: linear-gradient(135deg, rgba(78, 190, 154, 0.2), rgba(8, 184, 171, 0.15));
    border-color: rgba(78, 190, 154, 0.35);
    box-shadow: 0 0 12px rgba(78, 190, 154, 0.15);
}

.pillars-tab.active .tab-icon svg {
    color: #08B8AB;
}

.pillars-tab.active .tab-title {
    color: var(--text-primary);
}

.pillars-tab.active .tab-subtitle {
    color: var(--primary-teal);
}

/* Right detail panel */
.pillars-detail {
    flex: 1;
    background: #F5FAFA;
    border: 1px solid rgba(8, 184, 171, 0.3);
    border-radius: 16px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(26, 41, 100, 0.06);
}

/* Subtle top gradient accent */
.pillars-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4EBE9A, #08B8AB);
    opacity: 0.6;
}

.pillars-panel {
    display: none;
    padding: 40px 44px;
    animation: panelFadeIn 0.4s ease;
}

.pillars-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(78, 190, 154, 0.15), rgba(8, 184, 171, 0.1));
    color: var(--primary-teal);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(78, 190, 154, 0.2);
}

.panel-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 16px;
    background: linear-gradient(135deg, var(--text-primary) 60%, #08B8AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.panel-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-pill {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-teal);
    background: rgba(78, 190, 154, 0.08);
    border: 1px solid rgba(78, 190, 154, 0.2);
    border-radius: 20px;
    transition: all 0.25s ease;
}

.tech-pill:hover {
    background: rgba(78, 190, 154, 0.15);
    border-color: rgba(8, 184, 171, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(78, 190, 154, 0.15);
}


#why-us {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

#cta {
    padding-top: var(--spacing-lg);
}

/* CTA BANNER styles moved to common.css */

@keyframes ctaFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

/* ============================================
   RESPONSIVE DESIGN (index-specific)
   PC & Tablet look identical.
   Layout changes only below 768px (mobile).
   ============================================ */

/* Override common.css 1024px rules — keep desktop layout on tablets */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
        gap: calc(var(--spacing-3xl) + 2rem);
    }

    .hero-text {
        max-width: 580px;
    }

    .hero-cta {
        justify-content: flex-start;
    }
}

/* ---- Why Us: 2 cards per slide below 910px ---- */
@media (max-width: 910px) {
    .why-us-page,
    .why-us-page--centered {
        display: contents;
    }

    .why-us-track {
        gap: 0;
    }

    .why-us-card {
        flex: 0 0 calc(50% - 12px);
        margin: 0 6px;
    }

    .why-us-card.solo-center {
        margin-left: calc(25% + 6px);
    }
}

/* ---- Mobile: below 768px ---- */
@media (max-width: 768px) {

    /* Hero */
    .hero-header {
        padding: calc(var(--header-height) + var(--spacing-lg)) 0 var(--spacing-xl);
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        order: -1;
    }

    .hero-graphic-container {
        max-width: 220px;
    }

    .hero-network-img {
        width: 90%;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-questions {
        align-items: center;
    }

    .hero-question {
        font-size: 0.95rem;
    }

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

    .hero-bullets {
        text-align: left;
    }

    .hero-stats {
        justify-content: center;
        flex-direction: column;
        gap: var(--spacing-md);
    }

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

    /* Service Pillars */
    .pillars-layout {
        flex-direction: column;
    }

    .pillars-sidebar {
        flex: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .pillars-tab {
        min-width: 0;
        border-radius: 12px;
        border-left: 1px solid var(--border-light);
        border-bottom: 3px solid transparent;
    }

    .pillars-tab.active {
        border-left: 1px solid var(--border-light);
        border-bottom: 3px solid #08B8AB;
        border-radius: 12px;
    }

    .pillars-tab.active::after {
        display: none;
    }

    .pillars-detail {
        min-height: 220px;
    }

    .pillars-panel {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .panel-title {
        font-size: 1.4rem;
    }

    .panel-desc {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .panel-tech-stack {
        gap: 6px;
    }

    .tech-pill {
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    /* Why Us Carousel */
    .why-us-page {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .why-us-page--centered {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0;
    }

    .why-us-card {
        padding: var(--spacing-lg);
    }

    .why-us-icon {
        width: 56px;
        height: 56px;
    }

    .why-us-icon svg {
        width: 26px;
        height: 26px;
    }

    /* CTA */
    .cta-banner {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
}

/* ---- Small phones: below 480px ---- */
@media (max-width: 480px) {

    .hero-graphic-container {
        max-width: 180px;
    }

    .hero-question {
        font-size: 0.88rem;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-description--closing {
        margin-bottom: var(--spacing-lg);
    }

    /* Why Us */
    .why-us-card {
        padding: var(--spacing-md);
    }

    .why-us-title {
        font-size: 1rem;
    }

    .why-us-list {
        font-size: 0.82rem;
    }
}

/* ---- Below 440px: Pillars as stacked cards, no tabs ---- */
@media (max-width: 440px) {

    .pillars-sidebar {
        display: none;
    }

    .pillars-detail {
        background: transparent;
        border: none;
        box-shadow: none;
        min-height: 0;
        overflow: visible;
    }

    .pillars-detail::before {
        display: none;
    }

    .pillars-panel {
        display: block;
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-md);
        background: #F5FAFA;
        border: 1px solid rgba(8, 184, 171, 0.3);
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(26, 41, 100, 0.06);
        animation: none;
    }

    .panel-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 14px;
    }

    .panel-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .panel-desc {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .tech-pill {
        padding: 3px 9px;
        font-size: 0.7rem;
    }

    /* Why Us: 1 card per slide */
    .why-us-card {
        flex: 0 0 100%;
        margin: 0;
    }

    .why-us-card.solo-center {
        margin-left: 0;
    }
}